1. janot's Avatar
    After upgrading when trying to open share I get following error:

    Why can't I access Playbook from Ubuntu via USB after upgrading from 14.10 to 15.04?-screenshot-2015-03-24-19-15-09.png
    Code:
    ~$ smbclient -L 169.254.0.1 -N
        Connection to 169.254.0.1 failed (Error NT_STATUS_IO_TIMEOUT)
    
    ~$ ping -c 1 169.254.0.1
        PING 169.254.0.1 (169.254.0.1) 56(84) bytes of data.
        --- 169.254.0.1 ping statistics ---
        1 packets transmitted, 0 received, 100% packet loss, time 0ms
    I've tried to reinstall samba completely - no effect

    Any ideas? Thanks
    05-23-15 04:50 PM
  2. 69goat's Avatar
    I had trouble getting Sachesi to connect to my Z30 after updating to 15.04. I had to edit /etc/network/interfaces and add this to it.

    auto usb0
    iface usb0 inet dhcp

    Then save it and run sudo /etc/init.d/networking restart.

    Maybe it will work for you also.
    05-23-15 06:11 PM
  3. janot's Avatar
    I had trouble getting Sachesi to connect to my Z30 after updating to 15.04. I had to edit /etc/network/interfaces and add this to it.

    auto usb0
    iface usb0 inet dhcp

    Then save it and run sudo /etc/init.d/networking restart.

    Maybe it will work for you also.
    Thanks
    Still same error
    05-23-15 06:37 PM
  4. DrBoomBotz's Avatar
    what does "ifconfig" tell you?
    05-23-15 07:35 PM
  5. janot's Avatar
    what does "ifconfig" tell you?
    Code:
    usb0      Link encap:Ethernet  HWaddr 72:d4:f2:02:42:38  
              inet addr:169.254.0.2  Bcast:169.254.0.3  Mask:255.255.255.252
              inet6 addr: fe80::70d4:f2ff:fe02:4238/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:26 errors:0 dropped:0 overruns:0 frame:0
              TX packets:69 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:2942 (2.9 KB)  TX bytes:15024 (15.0 KB)
    05-24-15 03:17 AM
  6. 69goat's Avatar
    In Network Connections do you have an Auto Ethernet connected?
    Your usb0 HWaddr from ifconfig should be listed in the device MAC address.
    If you click on edit, my IPv4 settings are "Automatic (DHCP)", IPv6 settings are "Automatic" with privacy extensions disabled.
    05-24-15 08:22 AM
  7. janot's Avatar
    In Network Connections do you have an Auto Ethernet connected?
    Your usb0 HWaddr from ifconfig should be listed in the device MAC address.
    If you click on edit, my IPv4 settings are "Automatic (DHCP)", IPv6 settings are "Automatic" with privacy extensions disabled.
    It's named "Wired connection 1" instead of "Auto Ethernet" and is connected (Auto Ethernet is disconnected)
    Yes, HWaddr matches
    Yes, these settings
    05-24-15 08:30 AM
  8. 69goat's Avatar
    What does systemctl status [email protected]e -l show? Connected it should show active.
    Code:
    $ systemctl status [email protected] -l
    ● [email protected] - ifup for usb0
       Loaded: loaded (/lib/systemd/system/[email protected]; static; vendor preset: enabled)
       Active: active (exited) since Sun 2015-05-24 10:14:02 EDT; 5s ago
      Process: 3060 ExecStart=/bin/sh -ec ifup --allow=hotplug %I; ifup --allow=auto %I;      if ifquery %I >/dev/null; then ifquery --state %I >/dev/null; fi (code=exited, status=0/SUCCESS)
     Main PID: 3060 (code=exited, status=0/SUCCESS)
       CGroup: /system.slice/system-ifup.slice/[email protected]
               ├─3109 dhclient -1 -v -pf /run/dhclient.usb0.pid -lf /var/lib/dhcp/dhclient.usb0.leases usb0
               ├─3140 /bin/sh /etc/network/if-up.d/ntpdate
               ├─3143 lockfile-touch /var/lock/ntpdate-ifup
               └─3182 /usr/sbin/ntpdate -s 0.ubuntu.pool.ntp.org 1.ubuntu.pool.ntp.org 2.ubuntu.pool.ntp.org 3.ubuntu.pool.ntp.org ntp.ubuntu.com
    05-24-15 09:24 AM
  9. janot's Avatar
    Had to attach screenshot, forum thinks I am posting links and doesn't allow me to ><
    Why can't I access Playbook from Ubuntu via USB after upgrading from 14.10 to 15.04?-screenshot-2015-05-24-17-30-39.png
    05-24-15 09:35 AM
  10. 69goat's Avatar
    Two quick things that mat or may not help.
    Add "allow-hotplug usb0" to the same file as before, /etc/network/interfaces.

    Try run
    Code:
    $ systemctl start [email protected]
    05-24-15 09:58 AM
  11. janot's Avatar
    Still not connecting
    with "allow-hotplug usb0" also appeared additional line in output of "systemctl status ifup usb0.service -l"

    Code:
    May 24 18:10:37 ACER sh[21619]: Ignoring unknown interface usb0=usb0.
    05-24-15 10:14 AM
  12. 69goat's Avatar
    What is the output of #ifup usb0?

    Edit: should be sudo ifup usb0. Should show if it configured or not.
    Posted via CB10
    Last edited by 69goat; 05-25-15 at 11:38 AM.
    05-24-15 09:36 PM
  13. janot's Avatar
    What is the output of #ifup usb0?

    Edit: should be sudo ifup usb0. Should show if it configured or not.
    Posted via CB10
    Code:
    $ sudo ifup usb0
    Ignoring unknown interface usb0=usb0.
    05-25-15 12:31 PM
  14. 69goat's Avatar
    Code:
    $ sudo ifup usb0
    Ignoring unknown interface usb0=usb0.
    Can you post /etc/network/interfaces and I will compare it to mine. Seems like something wrong with the configuration.

    Posted via CB10
    05-25-15 02:37 PM
  15. janot's Avatar
    Can you post /etc/network/interfaces and I will compare it to mine. Seems like something wrong with the configuration.

    Posted via CB10
    Code:
    # interfaces(5) file used by ifup(8) and ifdown(8)
    auto lo
    iface lo inet loopback
    05-25-15 02:40 PM
  16. 69goat's Avatar
    Code:
    # interfaces(5) file used by ifup(8) and ifdown(8)
    auto lo
    iface lo inet loopback
    That is all there is?

    How about
    Code:
    sudo nano /etc/network/interfaces
    .
    05-25-15 03:12 PM
  17. 69goat's Avatar
    This is what I have.
    Code:
    # This file describes the network interfaces available on your system
    # and how to activate them. For more information, see interfaces(5).
    
    source /etc/network/interfaces.d/*
    
    # The loopback network interface
    auto lo
    iface lo inet loopback
    
    # This is a list of hotpluggable network interfaces.
    # They will be activated automatically by the hotplug subsystem.
    # auto eth1
    # iface eth1 inet dhcp
    auto usb0
    iface usb0 inet dhcp
    Did you edit this before as root before? Cause the code in bold should be what was added.
    05-25-15 03:15 PM
  18. janot's Avatar
    That is all there is?

    How about
    Code:
    sudo nano /etc/network/interfaces
    .
    Yes, there is nothing more. Same with nano.

    I've edited it before as you said, just reverted changes after it didn't help
    05-25-15 03:30 PM
  19. 69goat's Avatar
    Yes, there is nothing more. Same with nano.

    I've edited it before as you said, just reverted changes after it didn't help
    Strange. Can you save a copy of that file somewhere, then edit your file in nano with my info and then save it?
    05-25-15 03:45 PM
  20. 69goat's Avatar
    What does
    Code:
    sudo nano /etc/NetworkManager/NetworkManager.conf
    show?

    Code:
    [main]
    plugins=ifupdown,keyfile,ofono
    dns=dnsmasq
    
    [ifupdown]
    managed=false
    05-25-15 03:47 PM
  21. janot's Avatar
    Strange. Can you save a copy of that file somewhere, then edit your file in nano with my info and then save it?
    Sure

    NetworkManager.conf:
    Code:
    [main]
    plugins=ifupdown,keyfile,ofono
    dns=dnsmasq
    
    no-auto-default=E8:9A:8F:45:C3:69,
    
    [ifupdown]
    managed=false
    05-25-15 03:53 PM

Similar Threads

  1. YouTube no longer works on my Playbook
    By GEO1ER in forum BlackBerry PlayBook OS
    Replies: 17
    Last Post: 11-05-15, 04:24 PM
  2. Angry Birds Transformers no longer available from Amazon for the Passport.
    By JG_Agustin in forum More for your BlackBerry 10 Phone!
    Replies: 6
    Last Post: 05-25-15, 09:52 PM
  3. How to cancel Kindle Unlimited
    By mistercanadaman in forum BlackBerry 10 Apps
    Replies: 2
    Last Post: 05-25-15, 12:00 AM
  4. How to make the ping make a sound?
    By CrackBerry Question in forum General BlackBerry News, Discussion & Rumors
    Replies: 2
    Last Post: 05-23-15, 08:07 PM
  5. Replies: 7
    Last Post: 05-23-15, 04:40 PM
LINK TO POST COPIED TO CLIPBOARD