Saturday, November 21, 2009

Perintah dasar shell linux :)

by: Mask_magicianz 
ls -al : Melihat di directory mana atau Aliases kita berada
ls -alF /etc/vdomainaliases : Melihat atau mencari user dan domains yg ada di shell
ls -alF /etc/vmail : Melihat Vmail yg ada di shell
rm -fr / rm -rf : Menghapus directory atau file yg ada di shell
: exp: rm -rf file.php
chmod : Change permition atau mengganti permition file atau directory
: exp: chmod 777 file.php atau chmod 777 includes
touch : Membuat file kosong
: exp: touch file.php
mkdir : Membuat directory
: exp: mkdir images
rmdir : Menghapus directory
: exp: rmdir images
mv : Move atau rename file
: exp: mv file.php file.html atau mv file.php includes jika anda ingin memindahkan file ke suatu directory
tar -zxfv : Extract tar.gz file
: exp: tar -zxfv psybnc.tar.gz
lwp-download : Download file dari URL
: exp: lwp-download http://site.com/script/injek.txt
wget : Download file dari URL
: exp: wget http://site.com/script/injek.txt
who : Melihat dengan siapa kita login
whoami : Melihat sebagai apakah kita login
uname -a : Melihat info lengkap tentang versi dari shell kita
find / -type d -perm 777 : Mencari Directory dengan permition 777
find |grep config : Mencari seluruh configurasi di shell
perl : Run perl
: exp: perl feelcomz_rfi_scan.pl
killall perl : Menghentikan semua perl
history -c : Clear history
cd : Change directory atau mengganti directory
: exp: cd includes
passwd : Mengganti password
cat : Melihat isi sebuah file
: exp: cat file.php
cat /etc/userdomains : Melihat domain yg ada di dalam shell
/sbin/ifconfig/ | grep inet : Melihat jumlah ip yg ada di dalam shell
whereis : Mencari suatu file berdasarkan file name
cat /etc/hosts : Melihat host dari shell

No comments:

Post a Comment