zoukankan      html  css  js  c++  java
  • Ubuntu14.04建立WiFi热点

    整理自Ubuntu 下建立WiFi热点的方法

    Ubuntu14.04 Deepin2014分享WiFi 亲测成功

    方法一:network manager

    用Ubuntu自带的network manager就可以设置了

    第一步:

    打开系统的网络设置,打开 网络连接。点击最下面的编辑链接,然后点击右边的添加,添加一个无线网络;

    Ubuntu 下建立WiFi热点的方法

    第二步:

    在 Wi-Fi 随意填写 链接名称。

    填写一个 SSID,这个是待会电脑发出来的无线标识名。

    在 模式 栏选择 Ad-hoc;

    Ubuntu 下建立WiFi热点的方法

    第三步:

    切换到 wifi 安全性 选项卡。在 安全 中选择  WPA及WPA2个人。在 密码 中填写密码。

    Ubuntu 下建立WiFi热点的方法

    切换到 IPv4 设置,并在 方法 中选择 与其他计算机共享

    Ubuntu 下建立WiFi热点的方法

    切换到 IPv6 设置,并在 方法 中选择 I忽略。

    Ubuntu 下建立WiFi热点的方法

    第四步:

    最后,点击 保存 保存这个网络吧。连接刚才建立的网络,打开 连接到隐藏的网络。选择之前建立的网络,连接即可。注意这个无线是把现在电脑上的网络共享出去,所以在此之前请连接好你的宽带什么的。

    ok,这个时候其他的笔记本电脑或者windows平板可以发现此无线网络。但是,Android mobile phone可能永远发现不了,貌似Android系统不支持Ad hoc。

    so,我们来第二种方法

    方法二:ap-hotspot

    具体方法如下:使用ap-hotspot来创建WIFI热点,而不要用Ad hoc。终端里输入:

    $ sudo add-apt-repository ppa:nilarimogard/webupd8

    $ sudo apt-get update

    $ sudo apt-get install ap-hotspot

    $ sudo ap-hotspot configure  //这一步会检查ubuntu的网络和WIFI接口,确定后会提示你配置热点,输入ssid和密码之类的就行了

    $ sudo ap-hotspot start

    好了,Android手机顺利识别并连接上了。


    参数使用说明:
    tehero@tehero-pc:/tmp$ sudo ap-hotspot config
    Usage: ap-hotspot [argument]

    start          start wireless hotspot//开始使用
    stop           stop wireless hotspot//停止使用
    restart        restart wireless hotspot//重启
    configure      configure hotspot//配置使用

    安装成功后配置过程如下:
    tehero@tehero-pc:/tmp$ sudo ap-hotspot configure
    Detecting configuration...
    Detected eth0 as the network interface connected to the Internet. Press ENTER if this is correct or enter the desired interface below (e.g.- eth0, ppp0 etc.)://默认按Enter即可

    Detected wlan0 as your WiFi interface. Press ENTER if this is correct or enter the desired interface (e.g.- wlan1)://默认按Enter即可

    Enter the desired Access Point name or press ENTER to use the default one (myhotspot):
    //Wifi名字
    Enter the desired WPA Passphrase below or press ENTER to use the default one (qwerty0987):
    //wifi 密码

    使用篇:
    tehero@tehero-pc:/tmp$ sudo ap-hotspot start
    Starting Wireless Hotspot...
    Wireless Hotspot active
    出现如上字样即可

    问题集锦篇:
    1、无法出现Wireless Hotspot active,并一直保持Starting Wireless Hotspot...
    hostapd默认版本有bug
    解决方法:
    移除hostapd
    sudo apt-get remove hostapd
    然后:
    64 bit
    cd /tmp
    wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_amd64.deb
    sudo dpkg -i hostapd*.deb
    sudo apt-mark hold hostapd
    32bit:
    cd /tmp
    wget http://archive.ubuntu.com/ubuntu/pool/universe/w/wpa/hostapd_1.0-3ubuntu2.1_i386.deb
    sudo dpkg -i hostapd*.deb
    sudo apt-mark hold hostapd
    "sudo apt-mark hold hostapd" 将防止版本升级到有问题的版本。
    之后需要重新安装ap-hotspot.
    2、出现:
    Wireless Hotspot active
    bash: notify-send: 未找到命令
    解决方法:
    tehero@tehero-pc:/tmp$ notify-send
    程序“notify-send”尚未安装。 您可以使用以下命令安装:
    sudo apt-get install libnotify-bin
    tehero@tehero-pc:/tmp$ sudo apt-get install libnotify-bin

  • 相关阅读:
    linux网卡eth1如何修改为eth0
    rpm方式安装MySQL5.1.73
    quartz demo01
    chrome 搜索 jsonView
    判断是否十六进制格式字符串
    ip and port check 正则
    hadoop 遇到java.net.ConnectException: to 0.0.0.0:10020 failed on connection
    hadoop2.4.1 伪分布
    R 包
    使用pt-heartbeat检测主从复制延迟
  • 原文地址:https://www.cnblogs.com/noble/p/4144083.html
Copyright © 2011-2022 走看看