1. linux mint13無線可以用,但插上網線還是無線狀態,能搜到wifi,無線關了的話上不了網,如何進行有線設置
你的有線是用路由器還是貓,用路由器的話要在路由器里要開啟DHCP,用貓的話要設置寬頻帳號然後撥號上網
2. Linux mint 系統下怎麼上無線網
先點右鍵,找到"editconnections「,然後配置網路鏈接參數,啊,關於你的網路信息太少了,還不能太明確地說明,包涵一下!:)
3. mint Linux可以連接不需要輸入密碼的無線網,但是連不上需要輸密碼的無線,求幫忙解決
以下是個人的見解:
既然是linux的話,就請調出終端,用命令行方式進行調用;(以下均在終端下運行)
輸入:ifconfig -a;看是否有wlan0口;如果沒有請用ifconfig wlan0 up,如果連這一步都失敗的話,請去重新弄系統,你應該沒有載入驅動模塊;但是由於你無密碼通了,這些應該都不需要做就能看到wlan0
輸入:iwlist wlan0 scan找到你的路由器的名字;
將你的路由器設置到wep加密方式;終端輸入:iwconfig wlan0 essid 「路由器名字」 key 「密碼」如果以上失敗,先忽視掉;
在你的系統是否有wpa_supplicant(輸入:sudo find / -name wpa_supplicant,然後提示輸入密碼),如果沒有,請安裝wpa_supplicant;然後寫一個文件/home/你的用戶名/wpa.conf,內容如下:
ctrl_interface=/var/run/wpa_supplicant
network={
ssid=」路由器名字」
psk=」密碼」
}
在終端輸入:wpa_supplicant -Dnl80211,wext -i wlan0 –c /home/你的用戶名/your_wpa_supplicant.conf
iwconfig wlan0 channel auto
ifconfig wlan0 IP netmask NET_MASK up(路由器必須要有DHCP功能)
此時可以代開瀏覽器試一下,此情況最好拔掉有線,防止上網成功,不知道是誰起作用;
由於你的系統的情況和你本人技術的情況,我都不是很清楚,所以只能是說到這里了;
希望能夠幫助到你
4. linux mint 開了wifi ,手機搜不到
電腦開的wifi有兩種類型的,一種是那種點對點的,這種手機是連不了的(除Iphone),電腦可以連,還有一種是熱點,這種手機是可以連的。可能你設置的是點對點的wifi。
5. linux系統分享出來的wi-fi無網路
一、移植wireless_tools
1. 下載並編譯wireless_tools
tar zxf wireless_tools.29.tar.gz(網上下載)
cd wireless_tools.29
make
成功後會在當前目錄生成iwspy,iwpriv,iwlist以及iwconfig等文件。
2. 拷貝文件
我們只需將這四個文件拷備到文件系統的sbin目錄,然後將當前目錄的libiw.so.29庫文件拷到文件系統的lib目錄,無線網路工具即安裝完成。
二、載入無線網卡驅動模塊
網上有很多無線驅動模塊,可移植性很好。呵呵,我的是利用XX無線網卡公司提供的網卡驅動源碼,修改下Makefile(1.網卡選擇 2.平台 3.內核路徑和工具鏈)以及os/linux下的config.mk(一般不需要修改),make得到的。
insmod rtutil5572sta.ko。
insmod rt5572sta.ko
insmod rtnet5572sta.ko
6. linux mint17怎麼開熱點
第一步:安裝應用;
apt-get install hostapd dnsmasq
第二步:配置文件;
修改/etc/hostapd/hostapd.conf
1
2
3
4
5
6
7
8
9
10
interface=wlan0
driver=nl80211
ssid=hotspot # Your WAP name, change it to something more unique
hw_mode=g
channel=6 # You may want to change this if the channel is too crowded
wpa=1
wpa_passphrase=hotspot_password # Password for clients
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
wpa_ptk_rekey=600
修改/etc/dnsmasq.conf
1
2
3
4
5
6
7
8
9
# disables dnsmasq reading any other files like /etc/resolv.conf for nameservers
no-resolv
# Interface to bind to
interface=wlan0
# Specify starting_range,end_range,lease_time
dhcp-range=10.0.0.3,10.0.0.20,12h
# dns addresses to send to the clients
server=8.8.8.8
server=8.8.4.4
第三步:添加腳步;
將以下腳本添加到/etc/network/if-up.d/wapstart:
#!/bin/sh
WIRE=eth0
WIFI=wlan0
# Only run script for wired interface
if [ ! "$IFACE" = "$WIRE" ]
then
exit 0
fi
# Setup wireless interface
ifconfig $WIFI up 10.0.0.1 netmask 255.255.255.0
# Start dnsmasq
/etc/init.d/dnsmasq start
#Enable NAT
iptables --flush
iptables --table nat --flush
iptables --delete-chain
iptables --table nat --delete-chain
iptables --table nat --append POSTROUTING --out-interface $WIRE -j MASQUERADE
iptables --append FORWARD --in-interface $WIFI -j ACCEPT
# Start the Wireless Access Point service
/etc/init.d/hostapd start
exit 0
將以下腳本添加到/etc/network/if-post-down.d/wapstop:
#!/bin/bash
WIRE=eth0
WIFI=wlan0
# Only run script for wired interface
if [ ! "$IFACE" = "$WIRE" ]
then
exit 0
fi
# Stops Wireless Access Point services
/etc/init.d/hostapd stop
/etc/init.d/dnsmasq stop
# Asked nice the first time...
killall dnsmasq
killall hostapd
ifconfig $WIFI down
為這兩個腳本加上可執行許可權:
chmod +x /etc/network/if-up.d/wapstart
chmod +x /etc/network/if-post-down.d/wapstop
最後一步:使用咯;
ifconfig eth0 down
ifconfig eth0 up