红联Linux门户
Linux帮助

Deepin开启ap-hotspot wifi热点供其他计算机和android手机上网

发布时间:2017-04-07 09:29:44来源:linux网站作者:zhanghuoding
已经用了很长时间的Deepin Linux系统了,现在深深感觉到Deepin linux系统很适合中国人,但是在使用的过程中,因为它毕竟是linux系统,所以还有许多不完善的地方,比如说,我在使用的过程中,一直不会用我的计算机建立wifi热点以供别人的计算机或者我自己的Android手机共享热点。
经过我在网上找了好久,最终于找到一个办法,就是开启ap-hotspot wifi热点,不说十分好用,但是也不难用,不像在windows系统下一样可以用界面进行管理,也不能限制连入此热点的用户的网速。但是还是可以使用的,而且网速也很正常。下面,我就分享一下我设置热点的经验吧。
 
一、安装配置ap-hotspot
1.安装ap-hotspot
在终端中逐条输入如下命令:
$ sudo add-apt-repository ppa:nilarimogard/webupd8
$ sudo apt-get update
$ sudo apt-get install ap-hotspot
到这里,我们就已经安装好了ap-hotspot了,那么接下来就需要我们去进行设置了。
2.配置ap-hotspot
这一步需要我们对我们刚才安装的ap-hotspot进行配置。
首先,我们需要在终端中输入如下命令:
$ sudo ap-hotspot configure
这时,系统检查网络和WIFI接口,然后提示我们配置热点,我们只需要按照要求进行配置就行了。
首先是:
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键就可以了。
接下来的一条是提示我们设置我们的wifi名称的,如下:
Enter the desired Access Point name or press ENTER to use the default one(myhotspot):
我们输入我们要用的wifi名称,并按Enter键进入下一步设置(也可以直接按Enter键,此时我们wifi热点名称是默认的名称myhotspot)。
接下来就是提示我们设置热点的密码:
Enter the desired WPA Passphrase below or press ENTER to use the default one
(qwerty0987):
这里,我们输入要设置成的密码,注意,在这个输入密码的过程中密码会回显出来,并不像我们以前在命令行输入密码的时候,密码都是不会回显的。输入密码之后按Enter键(在这里,我们可以像上一步一样,不输入密码,直接按Enter键。这时我们的热点的密码就是默认密码qwerty0987)。
到了这里,我们的WIFI热点就已经配置成功了!
3.使用ap-hotspot
在这里,我们就只需要开启我们的热点就可以用了。
开启热点的命令为:
$ sudo ap-hotspot start
然后若输出如下,则开启热点成功,就可以用其他计算机或者android手机使用该热点了。
Starting Wireless Hotspot...
Wireless Hotspot active
执行命令$ sudo ap-hotspot config可以查看参数帮助,显示如下:
$ sudo ap-hotspot config
Usage:  ap-hotspot [argument]
start         start wireless Hotspot  //启动
stop          stop wireless hotspot  //关闭
restart       restart wireless hotspot  //重启
configure     configure hotspot  //配置
debug         tart with detailed messages  //调试
当然,linu系统中使用软件的时候,各种问题都会出现,这时世人皆知的了。如果在上面的启动过程中有问题出现,请继续向后文看。提供解决办法在后文。
 
二、错误解决
1.没有出现“ Wireless Hotspot active ”,并一直保持“ Starting Wireless Hotspot… ”
原因:hostapd默认版本有bug
解决办法:移除hostapd
命令:
$ sudo apt-get remove hostapd
然后再根据提示,选择y,回车。即允许卸载。
然后,对于64位机运行如下命令:
$ 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
对于32位机运行如下命令:
$ 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
在命令行输入:
$ sudo apt-get install ap-hotspot
进行重新安装。待安装完成后,转上面的配置部分,再次进行配置。
2.显示:“ Wireless Hotspot active bash: notify-send: 未找到命令 ”
解决方法:
在命令行输入:
$ notify-send
终端显示如果显示找不到这个命令,则说明没有安装该命令。执行如下命令进行安装:
$ sudo apt-get install libnotify-bin
然后就可以用命令启动热点了。启动前,需要先停用热点,因为上一步在开启的过程中,虽然开启失败了,但进程还在运行。因此,先运行如下命令关闭:
$ sudo ap-hotspot stop
然后再重新用命令:
$ sudo ap-hotspot start
开启热点。
###3.启动时显示“ Another process is already running ”
解决方法:
在命令行输入:
$ sudo ap-hotspot stop
然后就可以继续进行其他的操作了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29797.html