[Bug 1022433] Re: nautilus file copy progress bar is completely out of reality

2013-06-30 Thread jeremy brown
also effected on all three ubuntu systems I have installed as host OS's

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

Title:
  nautilus file copy progress bar is completely out of reality

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

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


[Bug 836378] Re: Oneiric upgrade, boot hangs at error: symbol not found: grub_divmod64_full

2012-12-04 Thread Jeremy Brown
I encountered this problem in Ubuntu 11.10 when applying the latest
Software Update.  The updater reported "Grub Upgrade failed" and offered
only a reboot now button.  When the laptop rebooted, there was the grub-
rescue prompt.

This is a single-drive machine with only Ubuntu installed.  I hadn't
made any changes to the drive configuration or to Grub.

>From a user's point of view, this is devastating.  Luckily I have
another machine so I was able to find the boot repair tool via a google
search, but considering that Ubuntu is being marketed as an OS for
unsophisticated users, it is just wrong to brick the PC during a routine
software update.

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

Title:
  Oneiric upgrade, boot hangs at error: symbol not found:
  grub_divmod64_full

To manage notifications about this bug go to:
https://bugs.launchpad.net/update-manager/+bug/836378/+subscriptions

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


[Bug 587856] Re: GNOME Drag & Drop broken for remote X sessions

2011-10-21 Thread Jeremy Brown
There's a candidate patch in the upstream bug, and the GNOME/GTK+
developers seem slow to review and apply it.

Any chance this can be patched in Ubuntu specifically?  This is highly
visible and renders Ubuntu an unusable OS if you rely on remote
administering GTK+ apps that require drag-and-drop.

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

Title:
  GNOME Drag & Drop broken for remote X sessions

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

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


[Bug 306755] Re: Gateway T-6836: Headphone Jack Not Working

2009-04-04 Thread jeremy brown
Same issue on t-1625 with STAC9205. I'm wondering how many kernels/alsa
versions it takes to get this right, I'd really like to install 9.04.

-- 
Gateway T-6836: Headphone Jack Not Working
https://bugs.launchpad.net/bugs/306755
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 197558] Re: ssb module breaks BCM4328 with ndiswrapper (regression from 2.6.24-10)

2009-02-24 Thread Jeremy Brown
I was just pasting and editing from levmatta's earlier post, but I made
one mistake this is how /etc/init.d/ndiswrapper &
/etc/rc1.d/S01ndiswrapper actually look:

#! /bin/sh
### BEGIN INIT INFO
# Provides: ndiswrapper
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: enable to load ndiswrapper
# Description: enable to load ndiswrapper
### END INIT INFO

rmmod ohci_hcd
rmmod ssb
rmmod wl
rmmod ndiswrapper
modprobe ndiswrapper
modprobe ssb
modprobe ohci_hcd
depmod -a

# end file #

I hope this helps someone who can't use their bcm4328 wireless card with
intrepid ibex.

Also, if anyone has any tips about WPA supplicant and why it doesn't
work with WPA encryption, but will work with WEP, please post a response
here, because I haven't found anything related to incompatibility with
ndiswrapper. I have tried using the ndiswrapper WPA driver in Wicd, but
that doesn't connect at all, producing wpa_cli returns results none. It
happens for both my locally compiled version and the intrepid
wpasupplicant deb package produced binaries.

-- 
ssb module breaks BCM4328 with ndiswrapper (regression from 2.6.24-10)
https://bugs.launchpad.net/bugs/197558
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 197558] Re: ssb module breaks BCM4328 with ndiswrapper (regression from 2.6.24-10)

2009-02-23 Thread Jeremy Brown
I too have a BCM4328 card (Dell Wireless 1505 Draft-N). I finally got it
to work after reading this post, although I had to modify Levmatta's
original procedure. The WL and SSB modules worked for the wireless card,
but the speed was god awfully  slow (max 10K/sec as slow as 50
bytes/sec) and I could not use any sort of encryption (yes, I had
wpasupplicant installed, I even built it from source to make sure it was
a driver problem). I created the ndiswrapper init.d script symbolic link
at /etc/rc1.d/S01ndiswrapper, basically before the bcm43xx-firmware
loads at /etc/rc1.d/S05 and continually loads for some odd reason
through rc5.d. I did not have to re-probe the ssb module after removing
it to get my all of my USB devices to work. Here is my script that works
in Intrepid Ibex Kubuntu 8.10 for anyone suffering problems related to
the bcm4328 wireless card:

cat /etc/init.d/ndiswrapper

#! /bin/sh
### BEGIN INIT INFO
# Provides: ndiswrapper
# Required-Start:
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: enable to load ndiswrapper
# Description: enable to load ndiswrapper
### END INIT INFO

rmmod ohci_hcd
rmmod ssb
rmmod wl
rmmod ndiswrapper
depmod -a
modprobe ndiswrapper
modprobe ssb
modprobe ohci_hcd

# end file #
/ end file

I didn't need to put rmmod b43, b44, b43legacy, bcm43xx, etc because the
bcm43xx module has not loaded yet at S01 in rc1.d.

cat /etc/modprobe.d/ndiswrapper

install pci:v14E4d4328sv*sd*bc*sc*i* /sbin/modprobe ndiswrapper

/ end file

I tried using the alias pci in the modprobe.d script and the ndiswrapper
driver never loaded, a lspci -k revealed that ssb and wl were in use by
the kernel with no mention of ndiswrapper. So I tried ndiswrapper -mi
and cut out all the extras from the modprobe.d file and voila, it
finally worked after a month of fiddling with it. The wifi card
persistently works after reboot, so I am very happy.

I still haven't figured out how to use WPA encryption with the card, but
WEP 128-bit open system works just fine, so it will have to do for now.
I live in a remote area with massive signal interference so I'm not
worried about people hacking my network because I get weak reception on
my porch and the router is less than 100 feet away (-50 dBm). Someone
would have to park in my driveway to borrow my network connection, and I
have four wireless security cameras recording the surroundings of my
house.

-- 
ssb module breaks BCM4328 with ndiswrapper (regression from 2.6.24-10)
https://bugs.launchpad.net/bugs/197558
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