Cara Menghapus Seluruh File Dalam Folder di Ubuntu

Dalam Kasus ingin membersihkan file sampah di tmp,log dll perlu sekali perintah dibawah ini agar tidak hapus satu persatu   rm -rf /namafolder/*Jika Perintah diatas gagal karena filenya terlalu banyak dengan error seperti dibawah ini-bash: /bin/rm: Argument list too longMaka solusinya adalah gunakan perintah dibawah inisudo find . -name 'nama_file*'| xargs rm ...

View More
  Dibaca 3733 kali

Ubuntu Cannot Ping Domain

Create a file called /etc/resolv.conf write fill in the contents: nameserver For example if your want to use googles dns-service: nameserver 8.8.8.8 nameserver 8.8.4.4 This is likely caused by DHCP configuration when you first installed Ubuntu. Try this 3-step process to handle this auto configuration issue. First Edit your interface configuration, which is located in: /etc/network/interfaces Add this line below iface lo inet loopback: dns-nameservers yourdns youraltdns As ...

View More
  Dibaca 1330 kali