Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20

Thread: Wireless DSL on ubuntu

  1. #11
    Join Date
    May 2012
    Beans
    98

    Re: Wireless DSL on ubuntu

    64 bit

  2. #12
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,963
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Wireless DSL on ubuntu

    Here it is:

    http://de.archive.ubuntu.com/ubuntu/...buntu2_all.deb

    Also save it to Downloads and then the first line again.

  3. #13
    Join Date
    May 2012
    Beans
    98

    Re: Wireless DSL on ubuntu

    It is done, here is the output:
    Code:
    Selecting previously unselected package dkms.
    (Reading database ... 162097 files and directories currently installed.)
    Unpacking dkms (from .../dkms_2.2.0.3-1.1ubuntu2_all.deb) ...
    Preparing to replace rtl8192cu-tjp-dkms 1.6 (using .../rtl8192cu-tjp-dkms_1.6_all.deb) ...
    Unpacking replacement rtl8192cu-tjp-dkms ...
    Setting up dkms (2.2.0.3-1.1ubuntu2) ...
    Processing triggers for man-db ...
    Setting up rtl8192cu-tjp-dkms (1.6) ...
    Loading new rtl8192cu-tjp-1.6 DKMS files...
    First Installation: checking all kernels...
    Building only for 3.8.0-19-generic
    Building for architecture x86_64
    Building initial module for 3.8.0-19-generic
    Done.
    
    8192cu:
    Running module version sanity check.
     - Original module
       - No original module exists within this kernel
     - Installation
       - Installing to /lib/modules/3.8.0-19-generic/updates/dkms/
    
    depmod......
    
    Backing up initrd.img-3.8.0-19-generic to /boot/initrd.img-3.8.0-19-generic.old-dkms
    Making new initrd.img-3.8.0-19-generic
    (If next boot fails, revert to initrd.img-3.8.0-19-generic.old-dkms image)
    update-initramfs....
    
    DKMS: install completed.
    Processing triggers for initramfs-tools ...
    update-initramfs: Generating /boot/initrd.img-3.8.0-19-generic
    what now?

  4. #14
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,963
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Wireless DSL on ubuntu

    Reboot and check:
    Code:
    dmesg | grep 8192
    iwconfig
    route -n
    cat /etc/network/interfaces
    cat /etc/resolv.conf
    sudo iwlist scan
    ifconfig -a

  5. #15
    Join Date
    May 2012
    Beans
    98

    Re: Wireless DSL on ubuntu

    it says:
    Code:
    [    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88007fc00000 s85056 r8192 d21440 u524288
    [    0.000000] pcpu-alloc: s85056 r8192 d21440 u524288 alloc=1*2097152
    [    7.437862] CHIP TYPE: RTL8188C_8192C
    [    7.438404] ====> ReadAdapterInfo8192C
    [    7.630065] readAdapterInfo_8192CU(): REPLACEMENT = 1
    [    7.630069] <==== ReadAdapterInfo8192C in 192 ms
    [    7.630890] usbcore: registered new interface driver rtl8192cu
    ivan@Bubreg:~$ iwconfig
    ppp0      no wireless extensions.
    
    eth0      no wireless extensions.
    
    lo        no wireless extensions.
    
    wlan0     unassociated  Nickname:"<WIFI@REALTEK>"
              Mode:Auto  Frequency=2.412 GHz  Access Point: Not-Associated   
              Sensitivity:0/0  
              Retry:off   RTS thr:off   Fragment thr:off
              Power Management:off
              Link Quality=0/100  Signal level=0 dBm  Noise level=0 dBm
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:0   Missed beacon:0
    
    ivan@Bubreg:~$ route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         193.198.190.248 0.0.0.0         UG    0      0        0 ppp0
    169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 ppp0
    193.198.190.248 0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
    ivan@Bubreg:~$ cat /etc/network/interfaces
    auto lo
    iface lo inet loopback
    
    
    iface dsl-provider inet ppp
    pre-up /sbin/ifconfig wlan0 up # line maintained by pppoeconf
    provider dsl-provider
    
    auto wlan0
    iface wlan0 inet manual
    ivan@Bubreg:~$ cat /etc/resolv.conf
    # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
    #     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
    nameserver 127.0.1.1
    ivan@Bubreg:~$ sudo iwlist scan
    [sudo] password for ivan: 
    Sorry, try again.
    [sudo] password for ivan: 
    ppp0      Interface doesn't support scanning.
    
    eth0      Interface doesn't support scanning.
    
    lo        Interface doesn't support scanning.
    
    wlan0     No scan results

  6. #16
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,963
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Wireless DSL on ubuntu

    Change the following file

    Code:
    gksu gedit /etc/network/interfaces
    to
    Code:
    auto lo
    iface lo inet loopback
    
    
    iface dsl-provider inet ppp
    pre-up /sbin/ifconfig wlan0 up # line maintained by pppoeconf
    provider dsl-provider
    
    auto wlan0
    iface wlan0 inet dhcp
         wpa-driver wext
         wpa-ssid YourESSID
         wpa-ap-scan 1
         wpa-proto RSN
         wpa-pairwise CCMP
         wpa-group CCMP
         wpa-key-mgmt WPA-PSK
         wpa-psk "YourPassword"
    Restart the network:
    Code:
    sudo /etc/init.d/networking restart
    Then show the outputs again (all!)

  7. #17
    Join Date
    May 2012
    Beans
    98

    Re: Wireless DSL on ubuntu

    yeah, I messed it up.
    I did change the file but I forgot to change the ssid, saved it, tryed reseting the network, it crashed, I restarted the pc, got a bit stuck on "starting network configuration" or something like this, finally ubuntu skipped it, and I am not at square one, I am behind square one, and btw how to reset that file?
    nice wheather

  8. #18
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,963
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Wireless DSL on ubuntu

    The same as above
    Code:
    gksu gedit /etc/network/interfaces

  9. #19
    Join Date
    May 2012
    Beans
    98

    Re: Wireless DSL on ubuntu

    The reason why I cant show you the output of network restarting is that unity chrashes all the time I try that

  10. #20
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,963
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Wireless DSL on ubuntu

    Obviously a VGA problem. Please check
    Code:
    uname -a
    lspci -nnk | grep -iA2 VGA

Page 2 of 2 FirstFirst 12

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
  •