- Login
root@bt:~# passwd
kemudian masukkan password baru
- Memperbaiki tampilan splash:
- Memulai (Desktop GUI)
- networking
lalu klik :
menu > internet > wicd netwok manager
setting ip dynamic,
root@bt:~# dhclient <interface network ente>
-- interface disini bisa saja eth0 atau eth1
Setting IP static
misalnya :
interface - eth0
IP Address - 172.164.1.9/24
Default Gateway - 172.164.1.1
DNS server - 172.164.1.1
maka perintah yang digunakan adalah :
root@bt:~# ifconfig eth0 171.164.1.9/24
root@bt:~# route add default gw 192.164.1.1
root@bt:~# echo nameserver 172.164.1.1 > /etc/resolv.conf
settingan ini akan kembali default bila di reboot, untuk menjadikan permanen maka kita perlu meng-edit file /etc/network/interfaces,
root@bt:~# nano /etc/network/interfaces
auto eth0
iface eth0 inet static
address 172.164.1.9
netmask 255.255.255.0
network 172.164.1.0
broadcast 172.164.1.255
gateway 172.164.1.1
kemudian save dengan menggunakan perintah CTRL+X kemudian jawab y kemudian enter
root@bt:~# update-rc.d networking defaults
root@bt:~# /etc/init.d/networking restart
- Memulai service di BT :
root@bt:~# sshd-generate
root@bt:~# /etc/init.d/ssh start
Starting OpenBSD Secure Shell server: sshd.
untuk menghentikan service :
root@bt:~# /etc/init.d/ssh stop
Stopping OpenBSD Secure Shell server: sshd.
apache webserver
root@bt:~# /etc/init.d/apache2 start
atau bisa jg dengan perintah
root@bt:~# service apache2 start
* Starting web server apache2
atau :
root@bt:~# apache2ctl start
untuk menghentikan service :
root@bt:~# /etc/init.d/apache2 stop
atau :
root@bt:~# service apache2 stop
atau :
root@bt:~# apache2ctl stop
MySQL
untuk memulai bisa menggunakan perintah :
root@bt:~# /etc/init.d/mysql start
atau:
root@bt:~# start mysql
untuk menghentikan :
root@bt:~# /etc/init.d/mysql stop
atau :
root@bt:~# stop mysql
Tidak ada komentar:
Posting Komentar