Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

----------Compress Directory--------

tar -cvf mybackup.tar /home

tar -cf mybackup2.tar /home ---> dok letok verbously dokkan kluor prompt lepas tu

ls

ls -lh ---> boleh tahu saiz yer brape, human readable

tar -cvf mybackup2.tar /home ---> compression lagi jimat saiz

ls -lh

tar -cvf myproj.tar.gz mybackup.tar mybackup2.tar

ls

ls -lh

----------Extract / Decompress Package----------

mkdir pakej

cd pakej

ls

mv ../myproj.tar.gz . ---> (.) move file daripada takdi ke folder ni, (..) gi ke
home directory

ls

tar -xvf myproj.tar.gz ---> extract file

ls

tar -xf mybackup.tar ---> extract file

ls

----------Command Kill Process ID Calculator----------

show

ps aux | less ---> cek process ID, ade nombor process

top ---> hokni same gok nge ps, boleh tengok process running

htop ---> kalu nok search tekan F3, kalu nok kill process gune F9, 9 untuk signal
kill

ps aux

kill -9 7193 ---> buang process id untuk calculator

nice and renice ---> boleh tukor priority yer

You might also like