Linux commands

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

Chcete-li přidat komentář, musíte se přihlásit.