Linux commands

 0    26 cartonașe    starakoza
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
man
începe să înveți
command for help
> man grep
ls
începe să înveți
List directory contents
-l long listing (ls -l),-al (ls -al) Listing With Hidden Files
grep
începe să înveți
Find text in a file
grep PATTERN [FILE], grep failed auth. log
cd
începe să înveți
Change current directory
Forward slashes instead of backward, cd /var/log
shutdown
sudo shutdown -r 2
începe să înveți
Safely turn off the computer in software
sudo shutdown 2 (turn off in 2min), -r restart, -c cancel or ctrl+c
pwd
începe să înveți
Displays the current working directory path
Useful when changing directories often
passwd
începe să înveți
Change a user account password
sudo passwd [username]
mv
mv SOURCE DEST
începe să înveți
Move a file
mv first. txt second. txt
cp
cp first. txt second. txt
începe să înveți
Copy a file
cp SOURCE DEST
rm
începe să înveți
Remove files or directories
Does not remove directories by default, -r (removes directory)
mkdir
mkdir DIRECTORY
începe să înveți
Make a directory
mkdir notes
chmod
r=read, w=write, x=execute
începe să înveți
Change mode of a file system object
chmod mode FILE, chmod 744 script. sh
chown
începe să înveți
Change file owner and group
sudo chown [OWNER: GROUP] file, sudo chown professor script. sh
iwconfig
începe să înveți
View or change wireless network configuration
ifconfig
începe să înveți
View or configure a network interface and IP
Slowly being replaced by ip (ip address)
ps
începe să înveți
View the current processes
ps -e | more (View all processes)
su / sudo
începe să înveți
Some command require elevated rights
There are some things normal users can’t do
su
începe să înveți
Become super user
You continue to be that user until you exit
sudo
începe să înveți
Execute a command as the super user
Only that command executes as the super user
apt-get
începe să înveți
Advanced Packaging Tool (Install, update, remove)
sudo apt-get install wireshark
vi
începe să înveți
Visual mode editor
Full screen editing with copy, paste, and more
dd
începe să înveți
Backup and restore an entire partition
dd if=<source file name> of=<target file name> [Options]
Creating a disk image
începe să înveți
dd if=/dev/sda of=/tmp/sda-image. img
Restoring from an image
începe să înveți
dd if=/tmp/sda-image. img of=/dev/sda
killall / kill <pid>
începe să înveți
Closing programs
sudo killall firefox
xkill
începe să înveți
Graphical kill
kill an app with one click

Trebuie să te autentifici pentru a posta un comentariu.