服務啟動/關閉指令
service apache2 start|stop|status
主要設定檔
vi /etc/hostname
; 系統用帳號群組 addgroup --system mygroup adduser --system --ingroup mygroup --home /this/is/user/home --no-create-home myuser delgroup mygroup
dpkg-reconfigure tzdata
或
tzselect
依照輸出內容修改 .profile。
新增服務
update-rc.d <service name> defaults update-rc.d <service name> defaulte 80 20 (80 啟動;20 停止)
移除服務
update-rc.d -f <service name> remove
也可以安裝這套件 sysv-rc-conf
apt-get install sysv-rc-conf
連結:http://www.cyberciti.biz/tips/linux-...eat-sheet.html
// dpkg 指令
列出已安裝的套件 dpkg -l 列出指定套件的檔案列表 dpkg -L <package name> 查詢系統內某個指令檔的套件名稱 dpkg -S <path to command>
// apt-get 指令
更新套件庫資訊 apt-get update 安裝套件 apt-get instrall <package-name> 移除套件 apt-get purge <package-name>
// apt-cache 指令
apt-cache search <package-name> apt-cache show <package-name> apt-cache showpkg <package-name>
// 設定 proxy 方式連接
export http_proxy=http://username:password@proxy.server.net:port/ ; 若是 Windows AD 帳號, 加上反斜線兩次 export http_proxy=http://addomain\\username:password@proxy.server.net:port/
// 新增台灣鏡像主機
http://www.debian.org/mirror/mirrors_full#TW
deb http://ftp.isu.edu.tw/pub/Linux/Debian/debian/ lenny main contrib non-free deb-src http://ftp.isu.edu.tw/pub/Linux/Debian/debian/ lenny main contrib non-free
注意:如果 Repository 主機已經移除該版本,可以指向到這位址:old-releases.ubuntu.com
deb http://old-releases.ubuntu.com/ubuntu/ karmic main restricted
狀況說明:安裝 Ubuntu 10.x 後,整個系統的網路連線有特別緩慢現象,原因是在預設的安裝會開啟 ipv6 的網路功能,將其關閉即可。
for Ubuntu 10/9)
// 如何檢查 ipv6 已開啟
# ip a | grep inet6 inet6 ::1/128 scope host <== inet6 fe80::20c:29ff:fe10:f035/64 scope link <==
// 關閉 ipv6 功能
增加這幾行在 /etc/sysctl.conf
#disable ipv6 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1
機器重開機。
for Ubuntu 8)
編輯 /etc/modprobe.d/blacklist
# disable ipv6 blacklist ipv6
機器重新開機。
for OpenSUSE)
請參閱
參考連結
https://help.ubuntu.com/community/SerialConsoleHowto
步驟開始 (適用 8.x Lenny)
1. 編輯 /etc/inittab
# 將註解拿掉,並修改成這樣 T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100
2. 編輯 /boot/grub/menu.lst
default 0 # 在 default 下方新增這幾行 # Enable console output via the serial port serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1 terminal --timeout=15 serial console
# title Debian GNU/Linux, kernel 2.6.26-2-686 root (hd0,0) kernel /boot/vmlinuz-2.6.26-2-686 root=/dev/hda1 ro quiet console=tty0 console=ttyS0,115200n8 initrd /boot/initrd.img-2.6.26-2-686
適用 9.x Karmic
參考連結:https://help.ubuntu.com/community/SerialConsoleHowto
1. 設定 upstart
編輯 /etc/init/ttyS0.conf
# ttyS0 - getty # # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc or RUNLEVEL=[2345] stop on runlevel [!2345] respawn exec /sbin/getty -L 115200 ttyS0 vt102
2. 設定 GRUB
編輯 /etc/default/grub
# Uncomment to disable graphical terminal (grub-pc only) GRUB_TERMINAL=serial GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"
$sudo apt-get install network-manager-pptp pptp-linux
新增 VPN 連結:
在右上角網路圖示按滑鼠右鍵,選 VPN 連線 -> VPN設置
通訊閘:<VPN 主機位址>
使用者名稱:連線帳號
進階 -> 使用點對點加密(勾選)
$>lsb_release -a
$>cat /etc/lsb-release
$>cat /etc/debian_version
$>cat /proc/version
$>uname -a
//設定 IP address
$>sudo vi /etc/network/interfaces
auto eth0 iface eth0 inet static address 10.1.1.201 netmask 255.255.255.0 network 10.1.1.0 broadcast 10.1.1.255 gateway 10.1.1.254
$>sudo /etc/init.d/networking restart
//設定 Hostname
;重開機後會失效
$>sudo /bin/hostname <newhost>
;永久變更
$>sudo vi /etc/hostname
;用 sysctl 的方法
$>sudo sysctl kernel.hostname
$>sudo sysctl kernel.hostname=<newhost>
//設定DNS server 位址
$>sudo vi /etc/resolv.conf
#domain my.domain #search my.domain nameserver 192.168.51.8 nameserver 192.168.51.13