Linux commands

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

Yorum yapmak için giriş yapmalısınız.