Page 3 of 12 FirstFirst 12345 ... LastLast
Results 21 to 30 of 119

Thread: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

  1. #21
    Join Date
    May 2012
    Beans
    12

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by divamvak View Post
    basic display modes:
    -mm produce machine-readable output (single -m for an obsolete format)
    -t show bus tree

    display options:
    -v be verbose (-vv for very verbose)
    -k show kernel drivers handling each device
    -x show hex-dump of the standard part of the config space
    -xxx show hex-dump of the whole config space (dangerous; root only)
    -xxxx show hex-dump of the 4096-byte extended config space (root only)
    -b bus-centric view (addresses and irq's as seen by the bus)
    -d always show domain numbers

    resolving of device id's to names:
    -n show numeric id's
    -nn show both textual and numeric id's (names & numbers)
    -q query the pci id database for unknown id's via dns
    -qq as above, but re-query locally cached entries
    -q query the pci id database for all id's via dns

    selection of devices:
    -s [[[[<domain>]:]<bus>]:][<slot>][.[<func>]] show only devices in selected slots
    -d [<vendor>]:[<device>] show only devices with specified id's

    other options:
    -i <file> use specified id database instead of /usr/share/misc/pci.ids.gz
    -p <file> look up kernel modules in a given file instead of default modules.pcimap
    -m enable `bus mapping' mode (dangerous; root only)

    pci access options:
    -a <method> use the specified pci access method (see `-a help' for a list)
    -o <par>=<val> set pci access parameter (see `-o help' for a list)
    -g enable pci access debugging
    -h <mode> use direct hardware access (<mode> = 1 or 2)
    -f <file> read pci configuration dump from a given file
    i also understood that i have this probem only in wep wifi
    Last edited by divamvak; June 6th, 2012 at 05:46 PM.

  2. #22
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    You've made a typing error. Please try again:
    Code:
    lspci -nn | grep 0280
    That's lower-case for LSPCI and then a space -NN then the pipe symbol | which is on the right side of my US keyboard on the same key with \; followed by 0280. It should give a description of your exact wireless device, like this:
    Code:
    chili@LAPTOP60:~$ lspci -nn | grep 0280
    03:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6200 [8086:4239] (rev 35)
    Of course, your device is probably different.

    Please try again.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  3. #23
    Join Date
    May 2012
    Beans
    12

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by chili555 View Post
    You've made a typing error. Please try again:
    Code:
    lspci -nn | grep 0280
    That's lower-case for LSPCI and then a space -NN then the pipe symbol | which is on the right side of my US keyboard on the same key with \; followed by 0280. It should give a description of your exact wireless device, like this:
    Code:
    chili@LAPTOP60:~$ lspci -nn | grep 0280
    03:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6200 [8086:4239] (rev 35)
    Of course, your device is probably different.

    Please try again.
    sorry i thought that | was /.
    03:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 1000 [8086:0084]

  4. #24
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Please try this:
    Code:
    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi 11n_disable=1
    Is it a bit faster now? If so, we'll write one quick file and make it permanent.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  5. #25
    Join Date
    May 2007
    Beans
    13

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by chili555 View Post
    Please try this:
    Code:
    sudo modprobe -r acer-wmi
    sudo rfkill unblock all
    rfkill list all
    Any improvement? If so,we'll tweak one file to make it permanent.
    after those commands phy0 is still hard blocked:

    Code:
    0: ideapad_wlan: Wireless LAN
    	Soft blocked: no
    	Hard blocked: no
    1: ideapad_bluetooth: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    2: hci0: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    3: phy0: Wireless LAN
    	Soft blocked: no
    	Hard blocked: yes
    the switch on the front side of the laptop is on. after i pressed Fn+F5, only wlan and phy0 is soft blocked.

    Code:
    0: ideapad_wlan: Wireless LAN
    	Soft blocked: yes
    	Hard blocked: no
    1: ideapad_bluetooth: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    2: hci0: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    3: phy0: Wireless LAN
    	Soft blocked: yes
    	Hard blocked: yes
    then i pressed it once more and only phy0 hard blocked stays

    Code:
    0: ideapad_wlan: Wireless LAN
    	Soft blocked: no
    	Hard blocked: no
    1: ideapad_bluetooth: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    2: hci0: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    3: phy0: Wireless LAN
    	Soft blocked: no
    	Hard blocked: yes
    my card is:
    03:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 1000 [8086:0084]
    Last edited by hrvooje; June 8th, 2012 at 07:08 AM.

  6. #26
    Join Date
    May 2012
    Beans
    12

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by chili555 View Post
    Please try this:
    Code:
    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi 11n_disable=1
    Is it a bit faster now? If so, we'll write one quick file and make it permanent.
    yes it seems to be a bit faster

  7. #27
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by divamvak View Post
    yes it seems to be a bit faster
    Let's make it permanent. Please open a terminal and do:
    Code:
    sudo gedit /etc/modprobe.d/iwlwifi.conf
    A new empty file will open. Add just one line:
    Code:
    options iwlwifi 11n_disable=1
    Proofread, save and close gedit. Now unload and reload the driver:
    Code:
    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi
    Is the wireless now working as expected?
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

  8. #28
    Join Date
    May 2012
    Beans
    12

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by chili555 View Post
    Let's make it permanent. Please open a terminal and do:
    Code:
    sudo gedit /etc/modprobe.d/iwlwifi.conf
    A new empty file will open. Add just one line:
    Code:
    options iwlwifi 11n_disable=1
    Proofread, save and close gedit. Now unload and reload the driver:
    Code:
    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi
    Is the wireless now working as expected?
    i turned the wifi from wep to wpa and now everything works fine.thanx a lot

  9. #29
    Join Date
    Aug 2008
    Beans
    14

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    I have problems in connecting wireless using Ubuntu 12.04 on my Lenovo Laptop.

    Read this thread and here are my outputs:

    dmesg | grep wlan
    Code:
    [   34.756425] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    iwconfig
    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    route -n
    Code:
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
    169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 eth0
    192.168.1.0     0.0.0.0         255.255.255.0   U     1      0        0 eth0
    ifconfig
    Code:
    eth0      Link encap:Ethernet  HWaddr 00:1b:38:9c:2e:1d  
              inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::21b:38ff:fe9c:2e1d/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:6383 errors:0 dropped:0 overruns:0 frame:0
              TX packets:6079 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:6483567 (6.4 MB)  TX bytes:830440 (830.4 KB)
              Interrupt:18 
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1216 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1216 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:137555 (137.5 KB)  TX bytes:137555 (137.5 KB)
    rfkill list all
    Code:
    0: hci0: Bluetooth
    	Soft blocked: yes
    	Hard blocked: no
    1: ideapad_wlan: Wireless LAN
    	Soft blocked: no
    	Hard blocked: no
    2: ideapad_bluetooth: Bluetooth
    	Soft blocked: no
    	Hard blocked: no
    Please help me.

  10. #30
    Join Date
    Aug 2005
    Location
    South Carolina, USA
    Beans
    26,047
    Distro
    Ubuntu Development Release

    Re: Lenovo IdeaPad Z570-1024D9U - Laptop (Wireless Help)

    Quote Originally Posted by pacchiee View Post
    I have problems in connecting wireless using Ubuntu 12.04 on my Lenovo Laptop.

    Read this thread and here are my outputs:

    Please help me.
    Please post:
    Code:
    lspci -nn | grep 0280
    Thanks.
    "Oh, Ubuntu, you are my favorite Linux-based operating system" --Dr. Sheldon Cooper, B.Sc., M.Sc., M.A., Ph.D., Sc.D.

Page 3 of 12 FirstFirst 12345 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •