Ubuntu/Debian 筆記

    版本為 00:16, 21 Nov 2024

    到這個版本。

    返回到 版本存檔.

    查閱目前版本

    關閉 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)

    請參閱此篇
    http://forums.opensuse.org/english/g...6-default.html

    使用 serial console 介面開機

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

    在 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 /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