Berikut beberapa catatan saya mengenai ubuntu server
Cara mensetting Ubuntu Server 16.04 agar dapat menggunakan proxy server
masukkan syntax ini ke dalam SSH andasudo vi /etc/apt/apt.conf
lalu isi file apt.conf dengan text berikut
acquire::http::Proxy "http://ip address proxy anda:nomor port";
contoh:
acquire::http::Proxy "http://192.168.2.1:8080";
Cara mengkases USB flash disk di ubuntu server
1. Find what the drive is called
You'll need to know what the drive is called to mount it. To do that fire off:sudo fdisk -l
You're looking for a partition that should look something like: /dev/sdb1
. Remember what it's called.2. Create a mount point
Create a new directory in/media
so you can mount the drive onto the filesystem:sudo mkdir /media/usb
3. Mount!
sudo mount /dev/sdb1 /media/usb
When you're done, just fire off:sudo umount /media/usb
--------
cara setting ip address di ubuntu server 16.04
--------edit file interfaces dengan mengetikkan syntax berikut:
vi /etc/network/interfaces
isi seperti contoh dibawah:
auto enp0s3
iface enp0s3 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
restart networking service dengan cara:
sudo ip addr flush enp0s3 && sudo systemctl restart networking.service
-------------
http://www.techradar.com/how-to/computing/how-to-control-a-raspberry-pi-using-whatsapp-1315610/2
-------------
http://www.techradar.com/how-to/computing/how-to-control-a-raspberry-pi-using-whatsapp-1315610/2
ABOUT THE AUTHOR
Hello, this blog was originated for sharing and keeping all my finding about IT, Cities I traveled, and other, in line with my life motto "Make yourself usefull". BTW, Sorry for my English :)
0 komentar:
Posting Komentar