­
Linux

Catatan Netcat

3:51 PM
Apa itu netcat?? : Netcat is a computer networking service for reading from and writing network connections using TCP or UDP. Netcat is designed to be a dependable "back-end" device that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and investigation tool, since it can produce almost any kind of correlation you would...

Read More...

Grub

Fix GRUB error in Ubuntu

1:40 PM
Terkadang secara tidak sengaja GRUB pada ubuntu kita terhapus, entah tertimpa windows, terdelete partisinya, dsb. . untuk memperbaikinya maka dapat dengan cara berikut: -masuk melalui live CD -Connect ke internet -Pada terminal masukkan command berikut sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update sudo apt-get install -y boot-repair && boot-repair -untuk masuk ketikkan boot-repair, setelah itu akan muncul menu GUI, pilih menu yang sesuai,...

Read More...

Command Line

My Note About Ubuntu CLI (2)

11:40 PM
Ubuntu Command Line  Grep : buat mencari teks tertentu dalam suatu file. .misal : grep "root" /etc/passwdgrep "wget" ./history.txt echo : mencetak teks ke layar. .echo "Aku ganteng"echo $PATH (mengetahui File environment) > memasukkan teks overwriteecho "Aku ganteng" > test.txt (menghapus semua isi test.txt, diganti dg Aku ganteng)>> memasukkan teks appendecho "Aku ganteng" >>test.txt (menambahkan text aku ganteng pada akhir baris test.txt) &...

Read More...