[Bug 1385846] Re: NFS shares in FSTAB no longer mount at boot

2014-10-26 Thread Troy Dack
Looks like
https://bugs.launchpad.net/ubuntu/+source/mountall/+bug/1384502 might be
relevant to this bug as well.

FWIW this has bitten me too.

Looking at dmesg idmapd is called for each mount point in /etc/fstab and
then killed (TERM), this all appears to happen _before_ the network
interfaces are brought up.

[   15.427560] FS-Cache: Loaded
[   15.537262] RPC: Registered named UNIX socket transport module.
[   15.537270] RPC: Registered udp transport module.
[   15.537273] RPC: Registered tcp transport module.
[   15.537276] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.701313] FS-Cache: Netfs 'nfs' registered for caching
[   15.994166] Installing knfsd (copyright (C) 1996 o...@monad.swb.de).
[   16.654672] init: idmapd-mounting (/storage/videos) main process (358) 
killed by TERM signal
[   16.656498] init: idmapd-mounting (/storage/music) main process (360) killed 
by TERM signal
[   16.659974] init: idmapd-mounting (/storage/downloads) main process (362) 
killed by TERM signal
[   16.661613] init: idmapd-mounting (/storage/pictures) main process (364) 
killed by TERM signal
[   16.663178] init: idmapd-mounting (/storage/ebooks) main process (366) 
killed by TERM signal
[   16.665076] init: idmapd-mounting (/storage/www) main process (368) killed 
by TERM signal
[   16.666773] init: idmapd-mounting (/storage/school) main process (370) 
killed by TERM signal
[   18.185315] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   18.196591] r8169 :02:09.0 eth1: link down
[   18.196618] r8169 :02:09.0 eth1: link down
[   18.196692] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   19.784427] r8169 :02:09.0 eth1: link up
[   19.78] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   21.167763] tg3 :01:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   21.167779] tg3 :01:00.0 eth0: Flow control is on for TX and on for RX
[   21.167809] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

For now I've added  /bin/mount -a -t nfs  to /etc/rc.local

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1385846

Title:
  NFS shares in FSTAB no longer mount at boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1385846/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1194310] Re: cachemgr.cgi crashes after login

2013-09-08 Thread Troy Dack
This appears to have been fixed in Debian nearly six months ago ...
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701123

The fix is at: http://www.squid-
cache.org/Versions/v3/3.1/changesets/squid-3.1-10486.patch

Here's the patch, applies cleanly against squid3-3.1.20-1ubuntu3

--- a/tools/cachemgr.cc
+++ b/tools/cachemgr.cc
@@ -1162,7 +1162,6 @@
 {
 static char buf[1024];
 size_t stringLength = 0;
-const char *str64;
 
 if (!req-passwd)
 return ;
@@ -1171,15 +1170,12 @@
  req-user_name ? req-user_name : ,
  req-passwd);
 
-str64 = base64_encode(buf);
-
-stringLength += snprintf(buf, sizeof(buf), Authorization: Basic %s\r\n, 
str64);
+stringLength += snprintf(buf, sizeof(buf), Authorization: Basic %s\r\n, 
base64_encode(buf));
 
 assert(stringLength  sizeof(buf));
 
-snprintf(buf[stringLength], sizeof(buf) - stringLength, 
Proxy-Authorization: Basic %s\r\n, str64);
+snprintf(buf[stringLength], sizeof(buf) - stringLength, 
Proxy-Authorization: Basic %s\r\n, base64_encode(buf));
 
-xxfree(str64);
 return buf;
 }


** Bug watch added: Debian Bug tracker #701123
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701123

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid3 in Ubuntu.
https://bugs.launchpad.net/bugs/1194310

Title:
  cachemgr.cgi crashes after login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1194310/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1194310] Re: cachemgr.cgi crashes after login

2013-09-08 Thread Troy Dack
This appears to have been fixed in Debian nearly six months ago ...
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701123

The fix is at: http://www.squid-
cache.org/Versions/v3/3.1/changesets/squid-3.1-10486.patch

Here's the patch, applies cleanly against squid3-3.1.20-1ubuntu3

--- a/tools/cachemgr.cc
+++ b/tools/cachemgr.cc
@@ -1162,7 +1162,6 @@
 {
 static char buf[1024];
 size_t stringLength = 0;
-const char *str64;
 
 if (!req-passwd)
 return ;
@@ -1171,15 +1170,12 @@
  req-user_name ? req-user_name : ,
  req-passwd);
 
-str64 = base64_encode(buf);
-
-stringLength += snprintf(buf, sizeof(buf), Authorization: Basic %s\r\n, 
str64);
+stringLength += snprintf(buf, sizeof(buf), Authorization: Basic %s\r\n, 
base64_encode(buf));
 
 assert(stringLength  sizeof(buf));
 
-snprintf(buf[stringLength], sizeof(buf) - stringLength, 
Proxy-Authorization: Basic %s\r\n, str64);
+snprintf(buf[stringLength], sizeof(buf) - stringLength, 
Proxy-Authorization: Basic %s\r\n, base64_encode(buf));
 
-xxfree(str64);
 return buf;
 }


** Bug watch added: Debian Bug tracker #701123
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701123

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1194310

Title:
  cachemgr.cgi crashes after login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1194310/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 546393] Re: MacBook Pro 5, 1 / 5, 2 / 5, 3 / 5, 5 fails to boot into 12.04 desktop

2012-07-02 Thread Troy Dack
I´ve just managed to get the 12.04 LiveCD to boot into a GUI on my
MacBook Pro 5,2

/sys/class/dmi/id/bios_vendor:Apple Inc.
/sys/class/dmi/id/bios_version:   MBP52.88Z.008E.B05.0905042202
/sys/class/dmi/id/bios_date:05/04/09
/sys/class/dmi/id/sys_vendor:Apple Inc.
/sys/class/dmi/id/product_name:MacBookPro5,2
/sys/class/dmi/id/product_version:1.0
/sys/class/dmi/id/board_vendor:Apple Inc.
/sys/class/dmi/id/board_name:Mac-F2268EC8
/sys/class/dmi/id/board_asset_tag:Base Board Asset Tag#
/sys/class/dmi/id/chassis_vendor:Apple Inc.
/sys/class/dmi/id/chassis_type:8
/sys/class/dmi/id/chassis_version:Mac-F2268EC8

I had to add the following to the grub menu entry prior to booting:

outb 0x728 1
outb 0x710 2
outb 0x740 2
outb 0x750 0
set gfxpayload=keep
linux /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed boot=casper 
quiet splash nouveau.noaccel=1 --

I also made sure that the Power Saving settings in OS X were set to
¨Performance¨.

The screen initially goes black before eventually flickering and then
showing the gui desktop.  Adding blacklist=vga16fb or nomodeset, either
together or individually on the kernel line resulted in X not starting
and being dropped to a console.

FWIW this is being posted from the LiveCD (USB) during installation
after installing the Broadcom restricted drivers and connecting to a
WiFi network (802.11n WPA2 encrypted).

I´ll let you know how things go after the reboot...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/546393

Title:
  MacBook Pro 5,1 / 5,2 / 5,3 / 5,5 fails to boot into 12.04 desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/546393/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 546393] Re: MacBook Pro 5, 1 / 5, 2 / 5, 3 / 5, 5 fails to boot into 12.04 desktop

2012-07-02 Thread Troy Dack
System rebooted OK, had to add same options to grub to get GUI to
display.  Once up and running installed the restricted NVidia drivers
and rebooted.

Booted to GUI with no additional options added to grub, NVidia splash
screen displayed briefly then default desktop.

Now to get rEFIt back as the boot loader so I can boot into OS X again
 :(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/546393

Title:
  MacBook Pro 5,1 / 5,2 / 5,3 / 5,5 fails to boot into 12.04 desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/nouveau/+bug/546393/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587349] Re: Missing shuttleVFD Driver

2011-11-04 Thread Troy Dack
Missing in 10.10, 11.04 and 11.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/587349

Title:
  Missing shuttleVFD Driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lcdproc/+bug/587349/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 587349] Re: Missing shuttleVFD Driver

2011-11-04 Thread Troy Dack
11.10 has shuttleVFD driver in   lcdproc-extra-drivers

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/587349

Title:
  Missing shuttleVFD Driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lcdproc/+bug/587349/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 567821] Re: data directory (distros.ini) is missing

2010-05-24 Thread Troy Dack
Copying the /usr/share/phpsysinfo/data directory from the source .tar.gz
(available from http://phpsysinfo.sourceforge.net/) to
/usr/share/phpsysinfo fixes the error

-- 
data directory (distros.ini) is missing
https://bugs.launchpad.net/bugs/567821
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 567821] Re: data directory (distros.ini) is missing

2010-05-24 Thread Troy Dack
Copying the /usr/share/phpsysinfo/data directory from the source .tar.gz
(available from http://phpsysinfo.sourceforge.net/) to
/usr/share/phpsysinfo fixes the error

-- 
data directory (distros.ini) is missing
https://bugs.launchpad.net/bugs/567821
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs