Restore GRUB
Now we need to tell grub where are the grub files:
If you know where they are, type something like:
root (hd0,1)
else if you have no idea, type:
find /boot/grub/stage1
and then the root command with the correct parameters:
setup (hd0)
to install it on hd0, that is MBR of the first HD.
type quit and reboot.
The menu will appear again.
If you [...]
FTP Server Ubuntu
Langkah-langkah nya :
1. install ftp di ubuntu dengan perintah
sudo apt-get install vsftpd
2. konfigurasi ftp nya :
sudo nano /etc/vsftpd.conf
cari tulisan berikut:
# anonymous_enable=YES
# write_enable=YES
# chroot_local_user=YES
Hilangkan tanda pagarnya menjadi:
anonymous_enable=YES
write_enable=YES
chroot_local_user=YES
simpan dengan menekan ctrl+x tekan y kemudian enter
3. restart ftp
sudo /etc/init.d/vsftpd restart
4. folder ftp berada di /home/ftp . Pada folder ftp bisa meletakkan program, lagu atau file apa aja.
Saatnya pengujian [...]