Ubuntu/Debian 筆記

    版本為 00:16, 21 Nov 2024

    到這個版本。

    返回到 版本存檔.

    查閱目前版本

    Service 啟動管理

    新增服務

    update-rc.d <service name> defaults
    update-rc.d <service name> defaulte 80 20 (80 啟動;20 停止) 
    

    移除服務

    update-rc.d -f <service name> remove
    
    apt-get 套件管理

    連結:
    http://www.cyberciti.biz/tips/linux-...eat-sheet.html

    // 更新套件庫列表資訊

    apt-get update

    // 搜尋套件

    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
    
    關閉 ipv6 網路協定

    狀況說明:安裝 Ubuntu 10.x 後,整個系統的網路連線有特別緩慢現象,原因是在預設的安裝會開啟 ipv6 的網路功能,將其關閉即可。

    // 如何檢查 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 OpenSUSE)
    請參閱

    使用 serial console 介面開機

    參考連結
    https://help.ubuntu.com/community/SerialConsoleHowto

    步驟開始 (適用 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
    
    在 8.10 安裝 PPTP VPN Client

    $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
    

     

     

    Powered by MindTouch Core