[solved] netctl (/usr/lib/network/network) fails at boot, sometimes

Hi,
Since I reinstalled a new HD in my old laptop (8 years old) I have a problem with my netctl-profile: in about 1 in 4 boots the wireless does not connect. I appreciate it if someone could take a look at what happens, because I cannot seem to find the cause because the logs and errors do not give much information.
Some general info:
1) Wireless interface is wlan0; I turned off dynamic naming of systemd/udev. Network driver is RT2500pci.
2) I use an old kernel version, 3.3.8, because any newer version effectively hard blocks the radio signal without any possibility to change this (rfkill etc).
3) The power saving option of the network interface must be off. An udev rule does this effectively.
4) The ip link of the wireless interface must be off before netctl can start the network profile.
5) When the connection fails, I enter "ip link set wlan0 down" and then start the network profile by entering "netctl start Sorryvoordehobo". This *always* works.
The following logs and outputs perhaps give information about the issue. Particularly the last might be helpful, because it shows that some authentication indeed takes place, but there is no network.
netctl profile:
Description='Sorryvoordehobo'
Interface=wlan0
Connection=wireless
Security=wpa-configsection
IP=dhcp
TimeoutCarrier=60
TimeoutDHCP=90
WPAConfigSection=(
'ssid="sorry voor de hobo"'
'key_mgmt=WPA-PSK'
'proto=WPA'
'pairwise=CCMP'
'group=CCMP'
'psk=1234-etc'
ExecUpPost='/usr/bin/ntpd -q || true'
systemctl --failed:
UNIT LOAD ACTIVE SUB DESCRIPTION
[email protected] loaded failed failed Sorryvoordehobo
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
1 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
systemctl status -l [email protected]:
[email protected] - Sorryvoordehobo
Loaded: loaded (/etc/systemd/system/[email protected]; enabled)
Active: failed (Result: exit-code) since Tue 2013-12-17 21:19:04 CET; 3min 26
s ago
Docs: man:netctl.profile(5)
Process: 176 ExecStart=/usr/lib/network/network start %I (code=exited, status=
1/FAILURE)
Main PID: 176 (code=exited, status=1/FAILURE)
dmesg:
[ 2.879915] Adding 255996k swap on /dev/sda2. Priority:-1 extents:1 across:255996k SS
[ 3.001917] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
[ 3.037816] systemd-journald[90]: Received request to flush runtime journal from PID 1
[ 3.210237] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x290-0x297 0x370-0x377
[ 3.212449] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3e0-0x3e7 0x3f0-0x3f7 0x400-0x40f 0x4d0-0x4d7
[ 3.213304] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: excluding 0x820-0x87f
[ 3.213995] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
[ 3.215231] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xc7fff 0xcc000-0xd3fff 0xe0000-0xfffff
[ 3.215280] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
[ 3.215324] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
[ 3.215367] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
[ 3.400147] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 3.401565] Registered led device: rt2500pci-phy0::radio
[ 3.401645] Registered led device: rt2500pci-phy0::quality
[ 3.401959] snd_via82xx 0000:00:11.5: setting latency timer to 64
[ 3.586063] psmouse serio4: synaptics: Touchpad model: 1, fw: 5.1, id: 0x8f40
b1, caps: 0x80471b/0x0/0x0
[ 3.625577] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/seri
o4/input/input6
[ 9.541467] Installing knfsd (copyright (C) 1996 [email protected]).
[ 9.690039] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery d
irectory
[ 9.690680] NFSD: starting 90-second grace period
[ 10.513803] wlan0: authenticate with 00:1a:70:9e:3a:70 (try 1)
[ 10.515334] wlan0: authenticated
[ 10.527175] wlan0: associate with 00:1a:70:9e:3a:70 (try 1)
[ 10.529457] wlan0: RX AssocResp from 00:1a:70:9e:3a:70 (capab=0x411 status=0
aid=4)
[ 10.529464] wlan0: associated
[ 10.529472] wlan0: moving STA 00:1a:70:9e:3a:70 to state 1
[ 10.529476] wlan0: moving STA 00:1a:70:9e:3a:70 to state 2
[ 10.577870] Intel AES-NI instructions are not detected.
[ 11.367009] wlan0: moving STA 00:1a:70:9e:3a:70 to state 3
Any ideas as to what exactly fails here? Thanks!
Last edited by anadyr (2013-12-21 21:32:44)

I don't think there is anything wrong with the kernel. Note that with the previous HD everything started perfectly, with the same kernel version. The new HD is a lot faster as it is an SSD; maybe this has anything to do with the issue?
To continue: the connection always works when I manually enter "ip link set wlan0 down" and then start netctl. I figured that I should execute this command before netctl starts, but I cannot seem to get this to work. What I tried is to edit /etc/systemd/system/netctl.service, by entering this command with the options ExecStartPre and ExecStartPost (see the two commented lines):
[Unit]
Description=(Re)store the netctl profile state
Before=network.target
[Service]
Type=oneshot
RemainAfterExit=yes
#ExecStartPre=-/usr/bin/ip link set wlan0 down
ExecStart=-/usr/bin/netctl restore
#ExecStartPost=-/usr/bin/ip link set wlan0 down
ExecStop=/usr/bin/netctl store
KillMode=none
[Install]
WantedBy=multi-user.target
Nevertheless, with either of these lines uncommented I get boots without the netctl-profile starting.
In the original post I did not give the output of ip link. So here it is:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN mode DEFAULT
group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group
default qlen 1000
link/ether 00:40:45:25:dc:4b brd ff:ff:ff:ff:ff:ff
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORM
ANT group default qlen 1000
link/ether 00:13:d3:6c:f3:78 brd ff:ff:ff:ff:ff:ff
To conclude: authentication succeeds (see the output of dmesg), but I do not seem to get an IP-address (see above). But I have no idea why, and the error messages are not very clear.
I am still figuring out what happens here, but maybe somebody knows what goes wrong here? Thanks!

Similar Messages

  • [SOLVED]Missing /usr/lib/libgssapi.so when using conserver client

    With newly MIT krb5 in [Core] repo, everything I using console ( the client of conserver: http://aur.archlinux.org/packages.php?ID=27856), I got a compain about missing /usr/lib/libgssapi.so error.
    I recompiled it, but not work.
    Manaully create a link from /usr/lib/libgssapi_krb5.so will solve this problem.
    But still confusing about why recompile the software don't goes to correct lib file.
    Anyone can give me a clue?
    Last edited by cathay4t (2011-05-12 11:23:49)

    Where did you get that 0.1-4?
    I get this error when starting cups
    # /etc/rc.d/cups start
    :: Starting CUPS Daemon [BUSY]
    /usr/sbin/cupsd: error while loading shared libraries: libgssapi.so.2: cannot open shared object file: No such file or directory
    [FAIL]
    Last edited by markuman (2011-05-12 16:41:17)

  • [SOLVED] ldconfig: /usr/lib/libOpenCL.so.1 is not a symbolic link

    Hi. I use 64 bits arch with gnome and the ATI driver 13.6 beta installed from the AMD binary and I usually execute steam. Everything seem fine, but recently I receive a message when I update any package with pacman
    ldconfig: /usr/lib/libOpenCL.so.1 is not a symbolic link
    However the update seems correct, only that warning message. I've checked the propietary of the file
    pacman -Qo /usr/lib/libOpenCL.so.1
    /usr/lib/libOpenCL.so.1 is owned by libcl 1.1-3
    The last update without the ldconfig message was
    [2013-07-22 21:27] [PACMAN] Running 'pacman -Syu'
    [2013-07-22 21:27] [PACMAN] synchronizing package lists
    [2013-07-22 21:27] [PACMAN] starting full system upgrade
    [2013-07-22 21:29] [PACMAN] upgraded apache (2.2.24-3 -> 2.2.25-1)
    [2013-07-22 21:29] [PACMAN] upgraded apr (1.4.6-1 -> 1.4.8-1)
    [2013-07-22 21:29] [PACMAN] upgraded boost-libs (1.53.0-2 -> 1.54.0-2)
    [2013-07-22 21:30] [PACMAN] upgraded python2-psutil (1.0.0-1 -> 1.0.1-1)
    [2013-07-22 21:30] [PACMAN] upgraded calibre (0.9.38-1 -> 0.9.40-1)
    [2013-07-22 21:30] [PACMAN] upgraded clucene (2.3.3.4-6 -> 2.3.3.4-7)
    [2013-07-22 21:30] [PACMAN] upgraded libpciaccess (0.13.1-1 -> 0.13.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded libdrm (2.4.46-1 -> 2.4.46-2)
    [2013-07-22 21:30] [PACMAN] upgraded cogl (1.14.0-3 -> 1.14.0-4)
    [2013-07-22 21:30] [PACMAN] upgraded wayland (1.1.0-1 -> 1.2.0-1)
    [2013-07-22 21:30] [PACMAN] upgraded mesa (9.1.4-3 -> 9.1.5-1)
    [2013-07-22 21:30] [PACMAN] upgraded clutter (1.14.4-2 -> 1.14.4-3)
    [2013-07-22 21:30] [PACMAN] upgraded dconf (0.16.0-1 -> 0.16.1-1)
    [2013-07-22 21:30] [PACMAN] upgraded colord (1.0.1-1 -> 1.0.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded gnutls (3.2.1-1 -> 3.2.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded libcups (1.6.2-3 -> 1.6.3-1)
    [2013-07-22 21:30] [PACMAN] upgraded cups (1.6.2-3 -> 1.6.3-1)
    [2013-07-22 21:30] [PACMAN] upgraded libgdm (3.8.3-1 -> 3.8.3.1-1)
    [2013-07-22 21:30] [ALPM] warning: directory permissions differ on /var/log/gdm/
    filesystem: 711 package: 1770
    [2013-07-22 21:30] [PACMAN] upgraded gdm (3.8.3-1 -> 3.8.3.1-1)
    [2013-07-22 21:30] [PACMAN] upgraded gnome-contacts (3.8.2-1 -> 3.8.3-1)
    [2013-07-22 21:30] [PACMAN] upgraded gnome-settings-daemon (3.8.3-2 -> 3.8.4-1)
    [2013-07-22 21:30] [PACMAN] upgraded gnome-tweak-tool (3.8.0-1 -> 3.8.1-1)
    [2013-07-22 21:30] [PACMAN] upgraded gnome-user-share (3.8.0-1 -> 3.8.3-1)
    [2013-07-22 21:30] [PACMAN] upgraded idnkit (1.0-2 -> 1.0-3)
    [2013-07-22 21:30] [PACMAN] upgraded lib32-libpciaccess (0.13.1-1 -> 0.13.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded lib32-mesa (9.1.4-1 -> 9.1.5-1)
    [2013-07-22 21:30] [PACMAN] upgraded lib32-mesa-libgl (9.1.4-1 -> 9.1.5-1)
    [2013-07-22 21:30] [PACMAN] upgraded lib32-xz (5.0.4-1 -> 5.0.5-1)
    [2013-07-22 21:30] [PACMAN] upgraded libmbim (1.2.0-1 -> 1.4.0-1)
    [2013-07-22 21:30] [PACMAN] upgraded libqmi (1.4.0-1 -> 1.4.0-2)
    [2013-07-22 21:30] [PACMAN] upgraded libxfont (1.4.5-1 -> 1.4.6-1)
    [2013-07-22 21:30] [PACMAN] upgraded mesa-libgl (9.1.4-3 -> 9.1.5-1)
    [2013-07-22 21:30] [PACMAN] upgraded modemmanager (0.7.991-1 -> 1.0.0-1)
    [2013-07-22 21:30] [PACMAN] upgraded netctl (1.1-1 -> 1.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded opus (1.0.2-2 -> 1.0.3-1)
    [2013-07-22 21:30] [PACMAN] upgraded qtwebkit (2.3.1-2 -> 2.3.2-1)
    [2013-07-22 21:30] [PACMAN] upgraded rtmpdump (20121230-1 -> 20121230-2)
    [2013-07-22 21:30] [PACMAN] upgraded source-highlight (3.1.7-5 -> 3.1.7-6)
    [2013-07-22 21:30] [PACMAN] upgraded tzdata (2013c-1 -> 2013d-1)
    [2013-07-22 21:30] [PACMAN] upgraded xorg-mkfontscale (1.1.0-1 -> 1.1.1-1)
    but honestly I don't know if the message is relate with the gdm warning. The first updated package with the ldconfig message was
    [2013-07-23 12:12] [PACMAN] Running 'pacman -Syu'
    [2013-07-23 12:12] [PACMAN] synchronizing package lists
    [2013-07-23 12:13] [PACMAN] starting full system upgrade
    [2013-07-23 12:13] [PACMAN] upgraded libusbx (1.0.15-1 -> 1.0.16-1)
    [2013-07-23 12:13] [ALPM-SCRIPTLET] ldconfig: /usr/lib/libOpenCL.so.1 is not a symbolic link
    [2013-07-23 12:13] [ALPM-SCRIPTLET]
    I don't know how to remove the ldconfig message, I'm not sure if I can safely remove the libOpenCL.so.1
    Last edited by David López (2013-07-24 12:54:31)

    On my system, that file IS a symbolic link:
    lrwxrwxrwx 1 root root 23 Aws 14 2012 /usr/lib/libOpenCL.so -> /usr/lib/libOpenCL.so.1*
    lrwxrwxrwx 1 root root 27 Aws 14 2012 /usr/lib/libOpenCL.so.1 -> /usr/lib/libOpenCL.so.1.0.0*
    -rwxr-xr-x 1 root root 21K Aws 14 2012 /usr/lib/libOpenCL.so.1.0.0*
    [Aside: I know that the "Aws" isn't English but I hardly ever pass LC_ALL=C myself just because so little is translated into my interface language . Dates is almost it. ]
    I would try reinstalling libcl and take it from there.
    Last edited by cfr (2013-07-24 00:54:01)

  • [SOLVED] freeimage: /usr/lib/libfreeimage.so.3 exists in filesystem

    Issue:
    I can't upgrade.
    $ pacman -Syu
    error: failed to commit transaction (conflicting files)
    freeimage: /usr/lib/libfreeimage.so.3 exists in filesystem
    Errors occurred, no packages were upgraded
    I check whether a package, possibly from AUR, is responsible:
    # pacman -Qo
    error: No package owns /usr/lib/libfreeimage.so.3
    No.
    Apparently this happened to other users as well. I was recommended the following solution:
    $ pacman -Sf freeimage
    Thanks to jelly1, Hattara-pilvi and Tucos of #archlinux!
    Last edited by qubodup (2012-03-22 15:07:46)

    $ pacman -Ql libpng|grep /lib/
    libpng /usr/lib/
    libpng /usr/lib/libpng.a
    libpng /usr/lib/libpng.so
    libpng /usr/lib/libpng14.a
    libpng /usr/lib/libpng14.so
    libpng /usr/lib/libpng14.so.14
    libpng /usr/lib/libpng14.so.14.5.0
    libpng /usr/lib/pkgconfig/
    libpng /usr/lib/pkgconfig/libpng.pc
    libpng /usr/lib/pkgconfig/libpng14.pc
    A tip: run pacman -Qo on the file in question, either you put that symlink there yourself or strange things are happening on your system.

  • [Solved] error: /usr/lib/libgdk-3.so.0: undefined symbol: cairo_s

    Since updating gtk I'm getting a number of apps refusing to open, with the following error:
    symbol lookup error: /usr/lib/libgdk-3.so.0: undefined symbol: cairo_surface_set_device_scale
    Last edited by emacsomancer (2014-12-15 15:23:55)

    zobi8225 wrote:
    hi, sorry for the newbee question but i have the same probleme :
    ➜  ~  sudo pacman -Qs cairo
    local/cairo-infinality-ultimate 1.12.16-3 (infinality-bundle)
        Cairo vector graphics library with respect-fontconfig, expose and Ubuntu patches (infinality-bundle)
    local/cairomm 1.10.0-3
        C++ bindings to Cairo vector graphics library
    local/goocanvas1 1.0.0-3
        A cairo canvas widget for GTK+
    local/lib32-cairo-infinality-ultimate 1.12.16-3 (infinality-bundle-multilib)
        Cairo vector graphics library with respect-fontconfig, expose and Ubuntu patches (32-bit, infinality-bundle)
    ➜  ~  sudo pacman -R cairo-infinality-ultimate       
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: awesome: requires cairo
    :: cairomm: requires cairo
    :: gst-plugins-good: requires cairo
    :: gstreamer0.10-good-plugins: requires cairo
    :: gtk2: requires cairo
    :: gtk3: requires cairo
    :: lib32-cairo-infinality-ultimate: requires cairo-infinality-ultimate
    :: libgdiplus: requires cairo
    :: libgxps: requires cairo
    :: pango: requires cairo
    :: poppler: requires cairo
    :: python-cairo: requires cairo
    :: python-gobject: requires cairo
    :: python2-cairo: requires cairo
    :: python2-gobject: requires cairo
    :: scribus: requires cairo
    How can we replace cairo-infinality-ultimate with simple cairo ?
    simply install cairo:
    `pacman -S cairo`
    it will ask you that you sure to replace cairo-infinality-ultimate with cairo, and you answer yes. pacman will take care of those dependency stuff.

  • [Solved] avidemux2_qt4: /usr/lib/libstdc++.so.6: `GLIBCXX_3.4.15'

    I suddenly cannot run my avidemux2_qt4
    $ avidemux2_qt4
    avidemux2_qt4: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by avidemux2_qt4)
    $ pacman -Q avidemux-qt
    avidemux-qt 2.5.4-3
    $ pacman -Q gcc
    gcc 4.5.2-6
    $ pacman -Q glibc
    glibc 2.13-4
    $ sudo find / -name libstdc++.so.6
    /usr/lib32/libstdc++.so.6
    /usr/lib/libstdc++.so.6
    Last edited by Doctor Drive (2011-03-30 18:59:37)

    fixing...

  • Network Manager Fails on Boot

    I'm not too sure exactly what is going on. I am quite new to arch. When I boot, and start my WM (i3), I have to disable and then reenable Network manager before it will work. I use the nm-applet, and just right click "Disable Networking" and then enable it. I'm not at all sure where to start to figure it out. I have another laptop, exact same setup, exact same installation. And network Manager starts on boot no problem. Any help would be appreciated, thanks.

    What is in the journal and what does `systemctl status...` tell you?

  • [SOLVED] Luks with /arch/setup installation , fails at boot

    Hi all,
    So I tried to install arch on virtualbox with encrypted partitions (root /, /home/ and swap), but it fails at boot.
    /dev/sda1 is /boot
    /dev/sda2 is swap
    /dev/sda3 is /
    /dev/sda4 is /home
    The root partition seems to be loading fine because it asks for my password, then the boot sequence goes on, until the /home/ (apparently) :
    :: Bringing up loopback interface
    :: Unlocking encrypted volumes: chome..Usage: cryptsetup [-?vyrq] (...all the options...can't copy paste with virtualbox)
    /sbin/cryptsetup: Unknown action
    failed [FAIL]
    /dev/mapper/croot: clean, 27576/457856 files, 166316/1830898 blocks
    fsck.ext4: No such file or directory while trying to open /dev/mapper/chome
    Possibly non-existent device?
    /dev/sda1: clean,29/24096 files, 20790/96356 blocks
    [FAIL]
    It seems that it tries to open /dev/mapper/chome but it's not mounted yet
    In my /etc/crypttab, I added the lines :
    chome /dev/sda4 none luks
    cswap /dev/sda2 none luks
    /etc/fstab (I didn't change anything, /arch/setup configured it that way) :
    /dev/mapper/chome /home ext4 defaults 0 1
    /dev/mapper/croot / ext4 defaults 0 1
    /dev/mapper/cswap swap swap defaults 0 0
    /dev/sda1 /boot ext2 defaults 0 1
    And grub :
    title Arch Linux
    root (hd0,0)
    kernel /vmlinuz-linux root=/dev/mapper/croot cryptdevice=/dev/sda3:croot ro
    initrd /initramfs-linux.img
    What I wanted to do was to have swap,root and home encrypted partitions mounted at boot, but maybe it is not possible?
    I tried a lot of configurations for /etc/fstab and /etc/crypttab according to what I could find on the net but nothing worked. I read the whole tutorial https://wiki.archlinux.org/index.php/Sy … _with_LUKS but there is no config for fstab or crypttab or grub when installing with /arch/setup
    Thanks for any help !
    Last edited by John0000 (2012-04-12 12:50:18)

    Indeed you have a point, putting password in plaintext isn't very safe.
    There is a good alternative though: https://wiki.archlinux.org/index.php/Sy … _a_Keyfile
    the reason why you don't have a passphrase for root in a file somewhere is that you provide this passphrase during boot-time.
    Somewhere during boot you get the option to unlock you root device by typing in a passphrase... right?
    ro means that the volume is mounted read only http://linux.die.net/man/8/mount

  • [SOLVED] netctl not bringing up my network at boot

    I recently converted from netcfg to netctl and but my network is not coming up ever at boot time. Once the machine is booted I can bring it up manually using
    netcfg start ethernet-static
    It is obviously an static IP address and I copied the netctl sample script and then modified it. Here is my ethernet-static profile.
    Description='A basic static ethernet connection'
    Interface=enp2s0
    Connection=ethernet
    IP=static
    Address=('192.168.0.5/24')
    #Routes=('192.168.0.0/24 via 192.168.1.2')
    Gateway='192.168.0.1'
    DNS=('192.168.0.1')
    ## For IPv6 autoconfiguration
    #IP6=stateless
    ## For IPv6 static address configuration
    #IP6=static
    #Address6=('1234:5678:9abc:def::1/64' '1234:3456::123/96')
    #Routes6=('abcd::1234')
    #Gateway6='1234:0:123::abcd'
    The output of journalctl -d | grep net is the following
    un 14 08:40:03 kfrance-home kernel: Initializing cgroup subsys net_cls
    Jun 14 08:40:03 kfrance-home kernel: audit: initializing netlink socket (disabled)
    Jun 14 08:40:03 kfrance-home kernel: drop_monitor: Initializing network drop monitor service
    Jun 14 08:40:03 kfrance-home systemd[1]: Expecting device sys-subsystem-net-devices-enp2s0.device...
    Jun 14 08:40:03 kfrance-home kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Jun 14 08:40:03 kfrance-home kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jun 14 08:40:03 kfrance-home systemd-udevd[171]: renamed network interface eth0 to enp3s0
    Jun 14 08:40:03 kfrance-home systemd-udevd[168]: renamed network interface eth0 to enp2s0
    Jun 14 08:40:07 kfrance-home network[253]: Starting network profile 'ethernet-static'...
    Jun 14 08:40:12 kfrance-home network[253]: No connection on interface 'enp2s0'
    Jun 14 08:40:12 kfrance-home network[253]: Failed to bring the network up for profile 'ethernet-static'
    Jun 14 08:40:12 kfrance-home systemd[1]: netctl@ethernet\x2dstatic.service: main process exited, code=exited, status=1/FAILURE
    Jun 14 08:40:12 kfrance-home systemd[1]: Failed to start A basic static ethernet connection.
    Jun 14 08:40:12 kfrance-home systemd[1]: Unit netctl@ethernet\x2dstatic.service entered failed state.
    Jun 14 08:47:53 kfrance-home sudo[1300]: kfrance : TTY=pts/1 ; PWD=/home/emily ; USER=root ; COMMAND=/usr/bin/netctl start ethernet-static
    Jun 14 08:47:53 kfrance-home systemd[1]: Starting A basic static ethernet connection...
    Jun 14 08:47:53 kfrance-home network[1307]: Starting network profile 'ethernet-static'...
    Jun 14 08:47:57 kfrance-home network[1307]: Started network profile 'ethernet-static'
    Jun 14 08:47:57 kfrance-home systemd[1]: Started A basic static ethernet connection.
    Nothing from netcfg, or any other network service, is leading to a conflict for configuring the network.
    systemctl list-units | grep net
    [email protected] loaded active exited A basic static ethernet connection
    network.target loaded active active Network
    I do have two ethernet ports but from what I can tell the naming of the two ports is consistent.
    netctl status shows that my ethernet-static profile is the only profile and is active.
    I know I could connect without using netctl but want to get this working. Any ideas?
    Last edited by kfrance (2013-06-15 04:12:06)

    I fixed the problem. I changed the device name of the ethernet device I wanted to use using an udev-rule, according to the notes on the Network Configuration wiki page, to make sure that it wasn't a naming conflict and that solved it.

  • [SOLVED] Network bridge fails to start after systemd update

    Hello,
    After rebooting with the upgraded systemd (208-11 -> 210-2) by bridge could not start.
    journal
    Mar 06 00:08:45 myhost systemd[1]: Job sys-subsystem-net-devices-enp2s0.device/start timed out.
    Mar 06 00:08:45 myhost systemd[1]: Timed out waiting for device sys-subsystem-net-devices-enp2s0.device.
    Mar 06 00:08:45 myhost systemd[1]: Dependency failed for My network bridge with DHCP.
    Mar 06 00:08:45 myhost systemd[1]: Starting Network.
    Mar 06 00:08:45 myhost systemd[1]: Reached target Network.
    # cat /etc/systemd/system/[email protected]
    .include /usr/lib/systemd/system/[email protected]
    [Unit]
    Description=My network bridge with DHCP
    BindsTo=sys-subsystem-net-devices-enp2s0.device
    After=sys-subsystem-net-devices-enp2s0.device
    # cat /etc/netctl/br0
    Description="My network bridge with DHCP"
    Interface=br0
    Connection=bridge
    BindsToInterfaces=(enp2s0)
    IP=dhcp
    Commenting out BindsTo and After in the unit file allows to start the service, but it would still throw an error
    Mar 06 00:14:05 myhost systemd[1]: Starting My network bridge with DHCP...
    Mar 06 00:14:05 myhost network[732]: Starting network profile 'br0'...
    Mar 06 00:14:05 myhost kernel: Bridge firewalling registered
    Mar 06 00:14:05 myhost systemd-udevd[739]: Could not apply link config to br0
    I never renamed interfaces, it was always the system-assigned enp2s0.
    What could have become wrong?
    Last edited by aya (2014-03-11 14:31:31)

    aya wrote:I do use a custom kernel and I did not have CONFIG_FHANDLE enabled. I wish it was posted as an announcement or something.
    From the 210 release announcement:
    systemd 210 announcement wrote:
    Heya,
    And here's the next release 210:
    http://www.freedesktop.org/software/sys … 210.tar.xz
    <snip>
    Oh, and one reminder that kinda got lost when we announced 209: you have
    to enable CONFIG_FHANDLE in your kernel to use systemd >= 209
    successfully, otherwise udev won't find any devices.
    <snip>

  • [Solved] Netctl - Cannot connect to wireless network

    Hi,
    since I replaced netcfg with netctl a week ago, it worked just fine. Today, however, i wanted to connect to a different wireless network and i couldn't make it work.
    Here's some information about how i connected to my home network (which worked fine):
    I changed the netcfg config files to match netctl syntax (as described in the wiki)
    I activated netctl-auto@wlan0
    The connection to the network was established almost immediately after (re)boot or resume after suspend
    First off: I double-checked the config file for the second network. Both syntax and SSID/passphrase are correct. Also, I don't have special characters in my network/profile names, the names in brackets are placeholders.
    Here's what happens after a fresh reboot (only the second network is in range of my pc, so it doesn't connect to my first - working - network):
    Netctl-auto is active and running, but seems to repeatedly lose connection to the second network:
    # systemctl status netctl-auto@wlan0
    [email protected] - Automatic wireless network connection using netctl profiles
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; enabled)
    Active: active (running) since Fri 2013-05-17 00:28:03 CEST; 13min ago
    Docs: man:netctl.special(7)
    Process: 453 ExecStart=/usr/bin/netctl-auto start %I (code=exited, status=0/SUCCESS)
    CGroup: name=systemd:/system/[email protected]/[email protected]
    ├─480 wpa_supplicant -B -P /run/wpa_supplicant_wlan0.pid -i wlan0 -D nl80211,wext -c/run/network/wpa_supplicant_wlan0.conf -W
    └─483 wpa_actiond -p /run/wpa_supplicant -i wlan0 -P /run/network/wpa_actiond_wlan0.pid -a /usr/lib/network/auto.action
    May 17 00:41:40 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    May 17 00:41:41 <hostname> wpa_actiond[483]: Interface 'wlan0' lost connection to network '<network_2>'
    May 17 00:41:48 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    May 17 00:41:48 <hostname> wpa_actiond[483]: Interface 'wlan0' lost connection to network '<network_2>'
    May 17 00:41:51 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    May 17 00:41:51 <hostname> wpa_actiond[483]: Interface 'wlan0' lost connection to network '<network_2>'
    May 17 00:41:54 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    May 17 00:41:54 <hostname> wpa_actiond[483]: Interface 'wlan0' lost connection to network '<network_2>'
    May 17 00:41:58 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    May 17 00:41:58 <hostname> wpa_actiond[483]: Interface 'wlan0' lost connection to network '<network_2>'
    # journalctl -xn
    -- Logs begin at Sat 2012-12-08 23:44:06 CET, end at Fri 2013-05-17 00:47:43 CEST. --
    May 17 00:47:33 <hostname> kernel: cfg80211: Calling CRDA to update world regulatory domain
    May 17 00:47:36 <hostname> kernel: wlan0: authenticate with <network_2 mac address>
    May 17 00:47:36 <hostname> kernel: wlan0: send auth to <network_2 mac address> (try 1/3)
    May 17 00:47:36 <hostname> kernel: wlan0: authenticated
    May 17 00:47:36 <hostname> kernel: wlan0: associate with <network_2 mac address> (try 1/3)
    May 17 00:47:36 <hostname> kernel: wlan0: RX AssocResp from <network_2 mac address> (capab=0x431 status=0 aid=3)
    May 17 00:47:36 <hostname> kernel: wlan0: associated
    May 17 00:47:36 <hostname> wpa_actiond[483]: Interface 'wlan0' reestablished connection to network '<network_2>'
    More interestingly, dmesg seems to provide a reason for this behaviour:
    # dmesg
    [ 1438.732242] wlan0: authenticate with <network_2 mac address>
    [ 1438.737594] wlan0: send auth to <network_2 mac address> (try 1/3)
    [ 1438.740384] wlan0: authenticated
    [ 1438.743113] wlan0: associate with <network_2 mac address> (try 1/3)
    [ 1438.747226] wlan0: RX AssocResp from <network_2 mac address> (capab=0x431 status=0 aid=3)
    [ 1438.767629] wlan0: associated
    [ 1438.837011] wlan0: AP <network_2 mac address> changed bandwidth, new config is 2412 MHz, width 1 (2412/0 MHz)
    [ 1438.837024] wlan0: AP <network_2 mac address> changed bandwidth in a way we can't support - disconnect
    [ 1438.896427] cfg80211: Calling CRDA to update world regulatory domain
    [ 1442.140427] wlan0: authenticate with <network_2 mac address>
    [ 1442.145282] wlan0: send auth to <network_2 mac address> (try 1/3)
    [ 1442.148090] wlan0: authenticated
    [ 1442.151674] wlan0: associate with <network_2 mac address> (try 1/3)
    [ 1442.155712] wlan0: RX AssocResp from <network_2 mac address> (capab=0x431 status=0 aid=3)
    [ 1442.175911] wlan0: associated
    [ 1442.214954] wlan0: AP <network_2 mac address> changed bandwidth, new config is 2412 MHz, width 1 (2412/0 MHz)
    [ 1442.214967] wlan0: AP <network_2 mac address> changed bandwidth in a way we can't support - disconnect
    [ 1442.258359] cfg80211: Calling CRDA to update world regulatory domain
    I'm pretty sure everything should theoretically work fine, because it worked before the netctl update. I was even connected to this network today until i had to reboot!
    Now here's what happens if I try to connect manually:
    # netctl start <network_2>
    Job for netctl@<network_2>.service failed. See 'systemctl status netctl@<network_2>.service' and 'journalctl -xn' for details.
    # systemctl status netctl@<network_2>.service
    netctl@<network_2>.service - Networking for netctl profile <network_2>
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; static)
    Active: failed (Result: exit-code) since Fri 2013-05-17 00:58:40 CEST; 2min 36s ago
    Docs: man:netctl.profile(5)
    Process: 7368 ExecStart=/usr/lib/network/network start %I (code=exited, status=1/FAILURE)
    May 17 00:58:40 <hostname> network[7368]: Starting network profile '<network_2>'...
    May 17 00:58:40 <hostname> network[7368]: The interface of network profile '<network_2>' is already up
    May 17 00:58:40 <hostname> systemd[1]: netctl@<network_2>.service: main process exited, code=exited, status=1/FAILURE
    May 17 00:58:40 <hostname> systemd[1]: Failed to start Networking for netctl profile <network_2>.
    May 17 00:58:40 <hostname> systemd[1]: Unit netctl@<network_2>.service entered failed state.
    After an # ip link set wlan0 down netctl still claims that its job failed:
    # netctl start <network_2>
    Job for netctl@<network_2>.service failed. See 'systemctl status netctl@<network_2>.service' and 'journalctl -xn' for details.
    This time, the DHCP lease attempt seems to be failing:
    # systemctl status netctl@<network_2>.service
    netctl@<network_2>.service - Networking for netctl profile <network_2>
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; static)
    Active: failed (Result: exit-code) since Fri 2013-05-17 01:04:42 CEST; 1min 33s ago
    Docs: man:netctl.profile(5)
    Process: 8423 ExecStart=/usr/lib/network/network start %I (code=exited, status=1/FAILURE)
    May 17 01:04:23 <hostname> systemd[1]: Starting Networking for netctl profile <network_2>...
    May 17 01:04:23 <hostname> network[8423]: Starting network profile '<network_2>'...
    May 17 01:04:31 <hostname> dhcpcd[8656]: version 5.6.8 starting
    May 17 01:04:31 <hostname> dhcpcd[8656]: wlan0: carrier lost
    May 17 01:04:31 <hostname> dhcpcd[8656]: wlan0: waiting for carrier
    May 17 01:04:41 <hostname> dhcpcd[8656]: timed out
    May 17 01:04:41 <hostname> network[8423]: DHCP IP lease attempt failed on interface 'wlan0'
    May 17 01:04:42 <hostname> systemd[1]: netctl@<network_2>.service: main process exited, code=exited, status=1/FAILURE
    May 17 01:04:42 <hostname> systemd[1]: Failed to start Networking for netctl profile <network_2>.
    May 17 01:04:42 <hostname> systemd[1]: Unit netctl@<network_2>.service entered failed state.
    I wasn't able to find out whether netctl needs a running dhcpcd or not, but after running a systemctl start dhcpcd.service, dmesg seems to give a little more information:
    # dmesg
    [ 2500.090650] wlan0: authenticate with <network_2 mac address>
    [ 2500.109377] wlan0: send auth to <network_2 mac address> (try 1/3)
    [ 2500.114053] wlan0: authenticated
    [ 2500.115817] wlan0: associate with <network_2 mac address> (try 1/3)
    [ 2500.121336] wlan0: RX AssocResp from <network_2 mac address> (capab=0x431 status=0 aid=3)
    [ 2500.147262] wlan0: associated
    [ 2500.303529] wlan0: AP <network_2 mac address> changed bandwidth, new config is 2412 MHz, width 1 (2412/0 MHz)
    [ 2500.303542] wlan0: AP <network_2 mac address> changed bandwidth in a way we can't support - disconnect
    [ 2500.327471] cfg80211: Calling CRDA to update world regulatory domain
    [ 2769.285673] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 2769.285908] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
    [ 2769.488380] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Any pointers and solutions are greatly appreciated.
    Thanks,
    diiis
    Last edited by diiis (2013-05-23 16:45:47)

    @silverzhao I use a manual dhcpcd/wpa_supplicant way of setting up my wlan0 using http://git.r-36.net/conn and I have the same problem.
    I have to kill my wireless and restart after seeing a message like:
    May 20 10:12:33 x220 kernel: wlan0: AP a4:b1:e9:55:25:2f changed bandwidth, new config is 2462 MHz, width 2 (2452/0 MHz)

  • [Solved] Netcfg 2.6.1 - suddenly fails to associate with WPA2 network

    Everything around here seems to be breaking these days... Anyways.
    I upgraded netcfg yesterday. Today I fire up my laptop, but no wireless. I run netcfg again, this is what wpa_supplicant spits out:
    # netcfg intel
    :: intel up [BUSY]
    Failed to connect to wpa_supplicant - wpa_ctrl_open: No such file or directory
    Failed to connect to wpa_supplicant - wpa_ctrl_open: No such file or directory
    ^C
    The funny thing is, nothing's changed in the netcfg config file, which looks like this:
    CONNECTION="wireless"
    INTERFACE="intel"
    HOSTNAME="hermes"
    # AP authentication
    SCAN="yes"
    SECURITY="wpa-config"
    WPA_CONF="/etc/wpa_supplicant.conf"
    WPA_OPTS="-Dwext -B"
    ESSID="Zeus 802.11n"
    # IP address
    IP="dhcp"
    DHCP_TIMEOUT=10
    I compared my config to the examples that come with netcfg - just to be sure nothing's changed that I wasn't aware of - but it looks pretty identical. Oddly enough, calling wpa_supplicant and then dhcpcd directly just connects me to my WLAN, like netcfg used to be able to do.
    For reference, netcfg seems to call wpa_supplicant like this, going by htop's output:
    wpa_supplicant -Dwext,nl80211 -c /etc/wpa_supplicant.conf -B -i intel -d
    When run separately, however, that works just fine, just like using -Dwext like I used to do before.
    Last edited by .:B:. (2011-06-21 22:29:55)

    My understanding is that the thing fails in start_wpa(). From /usr/lib/network/8021x:
    start_wpa()
    local INTERFACE="$1" WPA_CONF="$2" WPA_DRIVER="$3"
    shift 3
    local WPA_OPTS="$*"
    wpa_supplicant -B -P "/run/wpa_supplicant_${INTERFACE}.pid" -i "$INTERFACE"-D "$WPA_DRIVER" -c "$WPA_CONF" $WPA_OPTS
    sleep 1
    if [[ ! -f "/run/wpa_supplicant_${INTERFACE}.pid" ]]; then
    return 1
    fi
    So, you should have seen "-P' in htop, no? Have you tried w/o WPA_OPTS?
    EDIT: OK, I was wrong. The error seems to come from wpa_supplicant/wp_cli calls with the new /run standard:
    arch~> grep "/run/wpa_supplicant" ./usr/lib/network/8021x
    WPA_CLI="wpa_cli -p /run/wpa_supplicant"
    wpa_supplicant -B -P "/run/wpa_supplicant_${INTERFACE}.pid" -i "$INTERFACE" -D "$WPA_DRIVER" -c "$WPA_CONF" $WPA_OPTS
    if [[ ! -f "/run/wpa_supplicant_${INTERFACE}.pid" ]]; then
    if [[ -f "/run/wpa_supplicant_$1.pid" ]]; then
    kill "$(cat "/run/wpa_supplicant_$1.pid")" &>/dev/null &
    wpa_supplicant -B -i"$INTERFACE" -Dnl80211,wext -C/run/wpa_supplicant -P/run/wpa_supplicant.pid || return 1
    kill "$(cat /run/wpa_supplicant.pid)"
    echo "ctrl_interface=/run/wpa_supplicant" >> "$WPA_CONF/wpa.conf" # we know $WPA_CONF now has no spaces, but it may have other nasty chars, so still needs to be quoted
    Could you change the ctrl_interface to to /run/wpa_supplicant in /etc/wpa_supplicant.conf?
    Last edited by Leonid.I (2011-06-21 21:19:59)

  • [solved]Network fails to start sometimes

    Hello!
    I'm having a problem with my network. Sometimes it fails to start. Usually, a reboot solves this. Here is the error log:
    [root@claudia log]# cat errors.log
    Aug 6 03:16:28 claudia dhcpcd[3194]: dhcpStart: interface eth0 is not Ethernet or 802.2 Token Ring
    rc.conf:
    # NETWORKING
    HOSTNAME="claudia"
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
    lo="lo 127.0.0.1"
    eth0="dhcp"
    INTERFACES=(lo eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.1.1"
    ROUTES=(!gateway)
    hosts:
    [root@claudia log]# cat /etc/hosts
    # /etc/hosts: static lookup table for host names
    #<ip> <hostname> <hostname>
    127.0.0.1 localhost.localdomain localhost claudia
    # End of file
    What should I do to solve this?
    Thanks and regards,
    Gustavo

    I'd say it's because since the ethernet over firewire module is loaded too,   it's counted as a network device too - and which one gets to be eth0 depends if the NIC or ethernet over firewire module is loaded first. There are many solutions to this:
    1) If you don't need ethernet over firewire, keep it from being loaded by putting the module name (eth1394 I think) in MOD_BLACKLIST in /etc/rc.conf, like this:
    MOD_BLACKLIST=(eth1394)
    2) You can make both eth0 and eth1 (and perhaps other NICs too) start up together (I do this with my 2 NICs). To do that, make the rc.conf network section something like this:
    lo="lo 127.0.0.1"
    eth0="dhcp"
    eth1="dhcp"
    INTERFACES=(lo eth0 eth1)
    Then you should put a @ in front of "network" ( @network ) in the DAEMONS array unless you like waiting for a NIC that won't start

  • Printer Paused - "/usr/lib/cups/backend/hp failed" [SOLVED]

    Nothing that I try to print with CUPS goes to the printer, it just sits in the job list saying "Pending".
    CUPS says the status of my printer is:
    Paused - "/usr/lib/cups/backend/hp failed"
    Restarting CUPS or DBus does nothing.
    I didn't notice any updates relating to CUPS so am not sure what exactly happened. I sync and update many times a day, so at least I know a timeframe. The last time I printed something was at:
    Sat 21 Nov 2009 03:05:18 PM PST
    Now nothing works. I really need to get this working, so any help would be greatly appreciated.
    EDIT2:
    Near as I can tell it is not indeed a package update problem, sorry. I suppose this is in the wrong forum now.
    Here is my /var/log/cups/error-log
    E [22/Nov/2009:00:02:01 -0800] Unable to open listen socket for address ::1:631 - Address family not supported by protocol.
    E [23/Nov/2009:14:53:53 -0800] Unable to remove temporary file "/var/spool/cups/tmp/.fontconfig" - Is a directory
    E [23/Nov/2009:14:53:54 -0800] Unable to open listen socket for address ::1:631 - Address family not supported by protocol.
    E [23/Nov/2009:14:53:54 -0800] Unable to set ACLs on root certificate "/var/run/cups/certs/0" - Operation not supported
    D [23/Nov/2009:15:05:20 -0800] [Job 28] The following messages were recorded from 15:05:09 to 15:05:20
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Started filter pdftops (PID 3429)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Started filter pstops (PID 3430)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Page = 612x792; 18,14 to 594,778
    D [23/Nov/2009:15:05:20 -0800] [Job 28] slow_collate=0, slow_duplex=0, slow_order=0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Before copy_comments - %!PS-Adobe-3.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %!PS-Adobe-3.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%Creator: TeX
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%LanguageLevel: 3
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%DocumentSuppliedResources: (atend)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%DocumentMedia: plain 596 842 0 () ()
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%BoundingBox: 0 0 596 842
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%Pages: 2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] %%EndComments
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Before copy_prolog - %%BeginDefaults
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Before copy_setup - %%BeginSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Before page loop - %%Page: 1 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Copying page 1...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] pagew = 576.0, pagel = 763.2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] bboxx = 0, bboxy = 0, bboxw = 612, bboxl = 792
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageLeft = 18.0, PageRight = 594.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageTop = 777.6, PageBottom = 14.4
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageWidth = 612.0, PageLength = 792.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Copying page 2...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] pagew = 576.0, pagel = 763.2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] bboxx = 0, bboxy = 0, bboxw = 612, bboxl = 792
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageLeft = 18.0, PageRight = 594.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageTop = 777.6, PageBottom = 14.4
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PageWidth = 612.0, PageLength = 792.0
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Wrote 2 pages...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PID 3429 (pdftops) exited with no errors.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PID 3430 (pstops) exited with no errors.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] foomatic-rip version $Revision=3.0.2.131$ running...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Parsing PPD file ...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option ColorSpace
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option Resolution
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option PageSize
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option Model
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option PrintoutMode
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option InputSlot
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option Duplex
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option Quality
    D [23/Nov/2009:15:05:20 -0800] [Job 28] *cupsFilter: "application/vnd.cups-postscript 100 foomatic-rip-hplip"
    D [23/Nov/2009:15:05:20 -0800] [Job 28] *cupsFilter: "application/vnd.cups-pdf 0 foomatic-rip-hplip"
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option PageRegion
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option ImageableArea
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option PaperDimension
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Added option Font
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Parameter Summary
    D [23/Nov/2009:15:05:20 -0800] [Job 28] -----------------
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Spooler: cups
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Printer: Primary
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Shell: /bin/sh
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PPD file: /etc/cups/ppd/Primary.ppd
    D [23/Nov/2009:15:05:20 -0800] [Job 28] ATTR file:
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Printer model: HP LaserJet 1320 hpijs, 3.9.10.72
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Job title: soñar_en_cubano.pdf
    D [23/Nov/2009:15:05:20 -0800] [Job 28] File(s) to be printed:
    D [23/Nov/2009:15:05:20 -0800] [Job 28] <STDIN>
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] GhostScript extra search path ('GS_LIB'): /usr/share/cups/fonts
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'finishings=3'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Unknown option finishings=3.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'media=na_letter_8.5x11in'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Unknown "media" component: "na_letter_8.5x11in".
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'number-up=1'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Unknown option number-up=1.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'sides=two-sided-long-edge'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'job-uuid=urn:uuid:c6d32594-cd36-3c4e-65bf-a70c81a0e285'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Unknown option job-uuid=urn:uuid:c6d32594-cd36-3c4e-65bf-a70c81a0e285.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Pondering option 'job-originating-host-name=localhost'
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Unknown option job-originating-host-name=localhost.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] ================================================
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] File: <STDIN>
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] ================================================
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Reading PostScript input ...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> This document is DSC-conforming!
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %RBINumCopies: 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Job claims to be DSC-conforming, but "%%BeginProlog" was missing before first line with another "%%Begin..." comment (is this a TeX/LaTeX/dvips-generated PostScript file?). Assuming start of "Prolog" here.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] -----------
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginProlog
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%EndProlog
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] -----------
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginFeature: *PageSize Letter
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: PageSize=Letter --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %% FoomaticRIPOptionSetting: PageSize=Letter
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: PageSize=Letter --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginFeature: *PrintoutMode Normal
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: PrintoutMode=Normal --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %% FoomaticRIPOptionSetting: PrintoutMode=Normal
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: PrintoutMode=Normal --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginFeature: *InputSlot Default
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: InputSlot=Default --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %% FoomaticRIPOptionSetting: InputSlot=Default
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: InputSlot=Default --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginFeature: *Quality FromPrintoutMode
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: Quality=FromPrintoutMode --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %% FoomaticRIPOptionSetting: Quality=@PrintoutMode
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: Quality=FromPrintoutMode --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginFeature: *Duplex DuplexNoTumble
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: Duplex=DuplexNoTumble --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %% FoomaticRIPOptionSetting: Duplex=DuplexNoTumble
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Option: Duplex=DuplexNoTumble --> Setting option
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%EndSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Inserting PostScript code for CUPS' page accounting
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] -----------
    D [23/Nov/2009:15:05:20 -0800] [Job 28] New page: 1 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginPageSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Inserting option code into "PageSetup" section.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%EndPageSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] End of page header
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Stopping search for page header options
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: Q
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Output goes directly to the renderer now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Starting renderer
    D [23/Nov/2009:15:05:20 -0800] [Job 28] JCL: <job data>
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] renderer PID kid4=3435
    D [23/Nov/2009:15:05:20 -0800] [Job 28] renderer command: gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=612 -dDEVICEHEIGHTPOINTS=792 -sDeviceManufacturer="HEWLETT-PACKARD" -sDeviceModel="HP LaserJet" -dDuplex=true -dTumble=false -r300 -sIjsParams=Quality:Quality=0,Quality:ColorMode=0,Quality:MediaType=0,Quality:PenSet=0,PS:MediaPosition=7 -dIjsUseOutputFD -sOutputFile=- -
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%PageTrailer
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%Page: 2 2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] -----------
    D [23/Nov/2009:15:05:20 -0800] [Job 28] New page: 2 2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%Page: 2 2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Output goes to the FIFO buffer now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BeginPageSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Inserting option code into "PageSetup" section.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%EndPageSetup
    D [23/Nov/2009:15:05:20 -0800] [Job 28] End of page header
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Stopping search for page header options
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: (hair) 17.1865 Tj
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Output goes directly to the renderer now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Starting process 3436: "gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=6..."
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%PageTrailer
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%Trailer
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%DocumentSuppliedResources:
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%Pages: 2
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%BoundingBox: 0 0 596 842
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Found: %%EOF
    D [23/Nov/2009:15:05:20 -0800] [Job 28] --> Continue DSC parsing now.
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Closing renderer
    D [23/Nov/2009:15:05:20 -0800] [Job 28] PAGE: 1 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] STATE: +connecting-to-device
    D [23/Nov/2009:15:05:20 -0800] [Job 28] prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/hp_LaserJet_1320_series?serial=00CNDC51W23C
    D [23/Nov/2009:15:05:20 -0800] [Job 28] GPL Ghostscript 8.70: Unrecoverable error, exit code 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Process 3436 ending: "gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=6..."
    D [23/Nov/2009:15:05:20 -0800] [Job 28] renderer return value: 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] renderer received signal: 1
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Process dying with "Possible error on renderer command line or PostScript error. Check options.", exit stat: 3
    D [23/Nov/2009:15:05:20 -0800] [Job 28] error: No such file or directory (2)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Cleaning up ...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Killing process 3435 (KID4) with signal 15
    D [23/Nov/2009:15:05:20 -0800] [Job 28] KID3 exited with status 3
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Renderer exit stat: 3
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Killing process 3435 (KID4) with signal 9
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Closing foomatic-rip.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Renderer process finished
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Process dying with "Error closing renderer", exit stat: 3
    D [23/Nov/2009:15:05:20 -0800] [Job 28] error: Bad file descriptor (9)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Cleaning up ...
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Killing process 3434 (KID3) with signal 15
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Killing process 3434 (KID3) with signal 9
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Error closing renderer
    D [23/Nov/2009:15:05:20 -0800] [Job 28]
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Closing foomatic-rip.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Backend returned status 1 (failed)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] Printer stopped due to backend errors; please consult the error_log file for details.
    D [23/Nov/2009:15:05:20 -0800] [Job 28] End of messages
    D [23/Nov/2009:15:05:20 -0800] [Job 28] printer-state=5(stopped)
    D [23/Nov/2009:15:05:20 -0800] [Job 28] printer-state-message="/usr/lib/cups/backend/hp failed"
    D [23/Nov/2009:15:05:20 -0800] [Job 28] printer-state-reasons=paused
    E [23/Nov/2009:15:21:07 -0800] Unable to remove temporary file "/var/spool/cups/tmp/.fontconfig" - Is a directory
    E [23/Nov/2009:15:21:07 -0800] Unable to open listen socket for address ::1:631 - Address family not supported by protocol.
    E [23/Nov/2009:15:21:07 -0800] Unable to set ACLs on root certificate "/var/run/cups/certs/0" - Operation not supported
    E [23/Nov/2009:15:21:29 -0800] Returning IPP client-error-not-possible for Cancel-Job (ipp://localhost/jobs/30) from localhost
    EDIT2:
    Anyone else who gets this problem and freaks out: All you have to do is go to the CUPS printer administration page and click "Resume Printer".
    Last edited by egan (2009-11-23 23:56:37)

    I am having this same issue but simply resuming the printer won't change anything....
    I always see this message when I try printing ....
    "/usr/lib/cups/backend/hp failed"
    but if I just call it from the command line, it shows me my printer info...
    [somekool@rockinTV test]$ /usr/lib/cups/backend/hp
    direct hp:/usb/deskjet_5550?serial=MY27G1J3CK2L "HP deskjet 5550" "HP deskjet 5550 USB MY27G1J3CK2L HPLIP" "MFG:hp;MDL:deskjet 5550;CLS:PRINTER;DES:deskjet 5550;SN:MY27G1J3CK2L;"
    [somekool@rockinTV test]$
    by looking further... I found two more error message...
    "io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted"
    and
    prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    full log below
    please help !!!
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:02 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 401 128 Pause-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:02 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3765)
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:02 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 401 128 Pause-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:02 -0500] Printer "deskjet_5550" stopped by "root".
    ==> cups/access_log <==
    localhost - root [10/Jan/2010:11:04:02 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 200 128 Pause-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:04 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3766)
    I [10/Jan/2010:11:04:09 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3767)
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:09 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 401 128 Resume-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:09 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3768)
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:09 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 401 128 Resume-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:09 -0500] Printer "deskjet_5550" started by "root".
    ==> cups/access_log <==
    localhost - root [10/Jan/2010:11:04:09 -0500] "POST /printers/deskjet_5550 HTTP/1.1" 200 128 Resume-Printer successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:11 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3769)
    I [10/Jan/2010:11:04:15 -0500] Started "/usr/lib/cups/cgi-bin/jobs.cgi" (pid=3770)
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:15 -0500] "POST /jobs HTTP/1.1" 401 140 Release-Job successful-ok
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:15 -0500] Started "/usr/lib/cups/cgi-bin/jobs.cgi" (pid=3771)
    ==> cups/access_log <==
    localhost - - [10/Jan/2010:11:04:15 -0500] "POST /jobs HTTP/1.1" 200 139 Release-Job successful-ok
    Traceback (most recent call last):
    File "/usr/share/hplip/ui4/systemtray.py", line 664, in notifierActivated
    n.show()
    glib.GError: The name org.freedesktop.Notifications was not provided by any .service files
    ==> everything.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    ==> daemon.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    ==> errors.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    ==> everything.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 603: invalid product id string ret=-1
    ==> daemon.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 603: invalid product id string ret=-1
    ==> errors.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 603: invalid product id string ret=-1
    ==> everything.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> daemon.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> errors.log <==
    Jan 10 11:04:16 rockinTV hpijs[3782]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> cups/page_log <==
    deskjet_5550 21 somekool [10/Jan/2010:11:04:17 -0500] 1 1 - localhost tmpM1IFvl na_letter_8.5x11in one-sided
    ==> everything.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 603: invalid product id string ret=-1
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> daemon.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 603: invalid product id string ret=-1
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> errors.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 136: unable get_string_descriptor -1: Operation not permitted
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 603: invalid product id string ret=-1
    Jan 10 11:04:17 rockinTV hp[3774]: io/hpmud/musb.c 1108: unable to open hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> everything.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> daemon.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> errors.log <==
    Jan 10 11:04:17 rockinTV hp[3774]: prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    ==> cups/error_log <==
    I [10/Jan/2010:11:04:17 -0500] Hint: Try setting the LogLevel to "debug" to find out more.
    Traceback (most recent call last):
    File "/usr/share/hplip/ui4/systemtray.py", line 664, in notifierActivated
    n.show()
    glib.GError: The name org.freedesktop.Notifications was not provided by any .service files
    I [10/Jan/2010:11:04:18 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3783)
    I [10/Jan/2010:11:04:26 -0500] Hint: Try setting the LogLevel to "debug" to find out more.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] The following messages were recorded from 11:04:15 AM to 11:04:26 AM
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Job released by user.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Released by "root".
    D [10/Jan/2010:11:04:26 -0500] [Job 21] job-sheets=none,none
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[0]="deskjet_5550"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[1]="21"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[2]="somekool"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[3]="tmpM1IFvl"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[4]="1"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[5]="finishings=3 media=na_letter_8.5x11in number-up=1 sides=one-sided job-uuid=urn:uuid:87565748-3d01-3d21-6e06-062333533eed job-originating-host-name=localhost"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] argv[6]="/var/spool/cups/d00021-001"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[7]="CUPS_STATEDIR=/var/run/cups"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[8]="HOME=/var/spool/cups/tmp"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[10]="[email protected]"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[11]="SOFTWARE=CUPS/1.4.2"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[13]="USER=root"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[14]="CUPS_SERVER=localhost"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[15]="CUPS_ENCRYPTION=IfRequested"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[16]="IPP_PORT=631"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[17]="CHARSET=utf-8"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[18]="LANG=en_US.UTF-8"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[19]="PPD=/etc/cups/ppd/deskjet_5550.ppd"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[20]="RIP_MAX_CACHE=8m"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[21]="CONTENT_TYPE=application/postscript"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[22]="DEVICE_URI=hp:/usb/deskjet_5550?serial=MY27G1J3CK2L"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[23]="PRINTER_INFO=deskjet_5550"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[24]="PRINTER_LOCATION=Play room"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[25]="PRINTER=deskjet_5550"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[26]="CUPS_FILETYPE=document"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] envp[27]="FINAL_CONTENT_TYPE=printer/deskjet_5550"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Started filter /usr/lib/cups/filter/pstops (PID 3772)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Started filter /usr/lib/cups/filter/foomatic-rip-hplip (PID 3773)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Started backend /usr/lib/cups/backend/hp (PID 3774)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Page = 612x792; 18,36 to 594,783
    D [10/Jan/2010:11:04:26 -0500] [Job 21] slow_collate=0, slow_duplex=0, slow_order=0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Before copy_comments - %!PS-Adobe-3.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] %!PS-Adobe-3.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] %%BoundingBox: 0 0 612 792
    D [10/Jan/2010:11:04:26 -0500] [Job 21] %%Pages: 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Before copy_prolog - /hplipversion (3.9.12) def
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Before copy_setup - %%Page: 1 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Before page loop - %%Page: 1 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Copying page 1...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] pagew = 576.0, pagel = 747.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] bboxx = 0, bboxy = 0, bboxw = 612, bboxl = 792
    D [10/Jan/2010:11:04:26 -0500] [Job 21] PageLeft = 18.0, PageRight = 594.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] PageTop = 783.0, PageBottom = 36.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] PageWidth = 612.0, PageLength = 792.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] foomatic-rip version $Revision=3.0.2.131$ running...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Parsing PPD file ...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option ColorSpace
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option Model
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option PrintoutMode
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option InputSlot
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option PageSize
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option Duplex
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option DryTime
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option Quality
    D [10/Jan/2010:11:04:26 -0500] [Job 21] *cupsFilter: "application/vnd.cups-postscript 0 foomatic-rip-hplip"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option PageRegion
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option ImageableArea
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option PaperDimension
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Added option Font
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Parameter Summary
    D [10/Jan/2010:11:04:26 -0500] [Job 21] -----------------
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Spooler: cups
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Printer: deskjet_5550
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Shell: /bin/sh
    D [10/Jan/2010:11:04:26 -0500] [Job 21] PPD file: /etc/cups/ppd/deskjet_5550.ppd
    D [10/Jan/2010:11:04:26 -0500] [Job 21] ATTR file:
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Printer model: HP Deskjet 5550 Foomatic/hpijs, hpijs 2.8.9.0
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Job title: tmpM1IFvl
    D [10/Jan/2010:11:04:26 -0500] [Job 21] File(s) to be printed:
    D [10/Jan/2010:11:04:26 -0500] [Job 21] <STDIN>
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] GhostScript extra search path ('GS_LIB'): /usr/share/cups/fonts
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'finishings=3'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Unknown option finishings=3.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'media=na_letter_8.5x11in'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Unknown "media" component: "na_letter_8.5x11in".
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'number-up=1'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Unknown option number-up=1.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'sides=one-sided'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'job-uuid=urn:uuid:87565748-3d01-3d21-6e06-062333533eed'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Unknown option job-uuid=urn:uuid:87565748-3d01-3d21-6e06-062333533eed.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Pondering option 'job-originating-host-name=localhost'
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Unknown option job-originating-host-name=localhost.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] ================================================
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] File: <STDIN>
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] ================================================
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Reading PostScript input ...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> This document is DSC-conforming!
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %RBINumCopies: 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] -----------
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginProlog
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%EndProlog
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] -----------
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginSetup
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *PageSize Letter
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: PageSize=Letter --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: PageSize=Letter
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: PageSize=Letter --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *PrintoutMode Normal
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: PrintoutMode=Normal --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: PrintoutMode=Normal
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: PrintoutMode=Normal --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *InputSlot Default
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: InputSlot=Default --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: InputSlot=Default
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: InputSlot=Default --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *Quality FromPrintoutMode
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: Quality=FromPrintoutMode --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: Quality=@PrintoutMode
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: Quality=FromPrintoutMode --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *DryTime Zero
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: DryTime=Zero --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: DryTime=Zero
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: DryTime=Zero --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginFeature: *Duplex None
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: Duplex=None --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %% FoomaticRIPOptionSetting: Duplex=None
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Option: Duplex=None --> Setting option
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%EndSetup
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Inserting PostScript code for CUPS' page accounting
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] -----------
    D [10/Jan/2010:11:04:26 -0500] [Job 21] New page: 1 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BeginPageSetup
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Inserting option code into "PageSetup" section.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%EndPageSetup
    D [10/Jan/2010:11:04:26 -0500] [Job 21] End of page header
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Stopping search for page header options
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: lineto % Move there...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> Output goes directly to the renderer now.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Starting renderer
    D [10/Jan/2010:11:04:26 -0500] [Job 21] renderer PID kid4=3779
    D [10/Jan/2010:11:04:26 -0500] [Job 21] renderer command: gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=612 -dDEVICEHEIGHTPOINTS=792 -sDeviceManufacturer="HEWLETT-PACKARD" -sDeviceModel="deskjet 5550" -dDuplex=false -r300 -sIjsParams=Quality:Quality=0,Quality:ColorMode=2,Quality:MediaType=0,Quality:PenSet=2,PS:MediaPosition=7 -dIjsUseOutputFD -sOutputFile=- -
    D [10/Jan/2010:11:04:26 -0500] [Job 21] JCL: <job data>
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Starting process 3780: "gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=6..."
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Wrote 1 pages...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%Trailer
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> Continue DSC parsing now.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%Pages: 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> Continue DSC parsing now.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%BoundingBox: 0 0 612 792
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> Continue DSC parsing now.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Found: %%EOF
    D [10/Jan/2010:11:04:26 -0500] [Job 21] --> Continue DSC parsing now.
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Closing renderer
    D [10/Jan/2010:11:04:26 -0500] [Job 21] PAGE: 1 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] STATE: +connecting-to-device
    D [10/Jan/2010:11:04:26 -0500] [Job 21] prnt/backend/hp.c 745: ERROR: open device failed stat=12: hp:/usb/deskjet_5550?serial=MY27G1J3CK2L
    D [10/Jan/2010:11:04:26 -0500] [Job 21] GPL Ghostscript 8.70: Unrecoverable error, exit code 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Process 3780 ending: "gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs -dDEVICEWIDTHPOINTS=6..."
    D [10/Jan/2010:11:04:26 -0500] [Job 21] renderer return value: 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] renderer received signal: 1
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Process dying with "Possible error on renderer command line or PostScript error. Check options.", exit stat: 3
    D [10/Jan/2010:11:04:26 -0500] [Job 21] error: No such file or directory (2)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Cleaning up ...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Killing process 3779 (KID4) with signal 15
    D [10/Jan/2010:11:04:26 -0500] [Job 21] KID3 exited with status 3
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Renderer exit stat: 3
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Killing process 3779 (KID4) with signal 9
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Closing foomatic-rip.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Renderer process finished
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Process dying with "Error closing renderer", exit stat: 3
    D [10/Jan/2010:11:04:26 -0500] [Job 21] error: Bad file descriptor (9)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Cleaning up ...
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Killing process 3778 (KID3) with signal 15
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Killing process 3778 (KID3) with signal 9
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Error closing renderer
    D [10/Jan/2010:11:04:26 -0500] [Job 21]
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Closing foomatic-rip.
    D [10/Jan/2010:11:04:26 -0500] [Job 21] Backend returned status 1 (failed)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] End of messages
    D [10/Jan/2010:11:04:26 -0500] [Job 21] printer-state=3(idle)
    D [10/Jan/2010:11:04:26 -0500] [Job 21] printer-state-message="/usr/lib/cups/backend/hp failed"
    D [10/Jan/2010:11:04:26 -0500] [Job 21] printer-state-reasons=none
    I [10/Jan/2010:11:04:28 -0500] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=3784)
    I [10/Jan/2010:11:04:33 -0500] Saving printers.conf...
    I [10/Jan/2010:11:04:33 -0500] Saving job cache file "/var/cache/cups/job.cache"...
    Mod edit: Added code tags [ewaller]
    Last edited by ewaller (2011-06-26 23:53:15)

  • [SOLVED]Cannot Connect to Wireless Network during Installation

    (Sorry, yet another newbie unable to configure a network connection properly)
    I've been using Ubuntu for a little while now (since 11.10), and finally decided to give Arch a try (for a number of reasons). I thought I was comfortable enough with the CLI to be able to set this up, especially with the help of the Beginners' Guide (and the rest of the internet), but I still ran into issues with setting up my network connection (practically the first step, ugh).
    Following the instructions in the Beginners' Guide, I first brought the interface up with
    # ip link set wlp5s4 up
    and then used
    # wifi-menu wlp5s4
    to try and connect, but it gave me a connection failed error. 
    # systemctl status netctl@wlp5s4\x2dWIN_030.service
    gave me the following:
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; static)
    Active: inactive (dead)
    (I'll post the output of 'journalctl -xn' if someone can tell me an easy way to move it between computers, or I'll type it manually if there's no easier way)
    I then proceeded to attempt connect without using wifi-menu. I first did
    # wpa_supplicant -B -i wlp3s0 -c <(wpa_passphrase "ssid" "psk")
    (replacing ssid and psk with the right info, of course), and got the output
    Successfully initialized wpa_supplicant
    I then did
    # dhcpcd wlp5s4
    but this timed out.
    Following the instructions, I went to the fallback, starting with
    # echo 'ctrl_interface=DIR=/run/wpa_supplicant' > /etc/wpa_supplicant.conf
    # wpa_passphrase <ssid> <passphrase> >> /etc/wpa_supplicant.conf
    The second command resulted in
    zsh: parse error near `<'
    I'm not sure what I'm doing wrong, but that's what I've done so far. I apologize if this seems like information overload, but I felt more info is better than less.
    Anyone have any suggestions as to what my next moves should be? If you want me to post any logs, please let me know.
    Last edited by DaimyoKirby (2013-11-03 14:54:15)

    Here are the results.
    I went through the initial steps, and started the without wifi-menu steps. When I got to where I had a problem previously, this is what happened:
    # echo 'ctrl_interface=DIR=/run/wpa_supplicant' > /etc/wpa_supplicant.conf
    # wpa_passphrase <ssid> <passphrase> >> /etc/wpa_supplicant.conf
    # ip link set wlp5s4 up
    I replaced "<ssid>" and "<passphrase>" correctly this time, and all of these commands passed without any output.
    I ran into the next command, though, and wasn't exactly sure about it:
    # wpa_supplicant -B -D n180211 -c /foobar.conf -i wlp5s4
    I assumed I had to replace "/foobar.conf" with "/etc/wpa_supplicant.conf", and this gave me the following output:
    Successfully initialized wpa_supplicant
    wlp5s4: Unsupported driver 'n180211'
    The Beginners' Guide doesn't indicate what outputs you should get from these commands, so assuming that this was a good output, I ran
    dhcpcd wlp5s4
    but this just ended up timing out as well.

Maybe you are looking for

  • Logical System Name for Portal

    Hi all, I am busy documenting System Info for a newly installed Portal (EP6) including values such as SID, Sys No, etc. I would like to know if a Portal has a Logical System Name. As far as I know, it does not, but I would like to confirm. Regards Su

  • TS3694 I get an error 2001 when trying to restore my iphone 4 and it won't reset, what can I do?

    does anyone know how to restore an Iphone 4 to factory settings? I receive an error code 2001 and it won't restore ...now my I have a dead phone

  • Handling BOR events in our ABAP program

    Hi Experts, Can any share an idea/code on how to trap events of BOR object "KNA1" & 'KNB1'? In Tcode : XD01, These events are triggered when we click on SAVE action of new Customer Creation or changes to customer. Any help would be apprecited by awar

  • Error when building DLL using Keithley library

    I'm trying to build a Labview Shared DLL of my VI's, however I'm using Keithley's KPCI-PIO24 Labview driver. When I include any of their library calls into my DLL, I will get a "LABVIEW.LIB was not called from a Labview process". I have mass compiled

  • Change R/3 client after EP7 / NW2004s double stack installation (UME settin

    Hello everyone, we have install NW2004s with choosing usage type EP as double stack installation (means ABAP and Java) and using SAP R/3 as user persistence. At the install point, only the client 001 is known / can be used. After the installation (EP