[Bug 1010981] Re: Computer does not power off when attempting to shut down by any route.

2012-10-08 Thread Rookcifer
Affects me as well, except my machine is not a laptop, but a Desktop
machine I built.  I thought I might have a hardware problem at first,
but after seeing this bug report, it appears I might not.

Essentially, I get the same problem.  If I log out of Ubuntu and go to
the splash screen and then try to shut the machine down, nothing
happens.  It just sits there indefinitely.  I have to manually power the
machine off.

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

Title:
  Computer does not power off when attempting to shut down by any route.

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

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


[Bug 973096] Re: Nvidia driver causes xorg crash

2012-07-17 Thread Rookcifer
I am getting this issue but it also happens on HTML5 videos and not just
Flash.  I would say watching YouTube, I crash once every 20 minutes on
average.  Sometimes it reboots my machine and sometimes it just restarts
X.

Using 12.04 (3.2.0-26-generic)
Nvidia driver 295.40

Example in my logs:

[ 1615.728857] do_general_protection: 147 callbacks suppressed
[ 1615.728861] Xorg[1321] general protection ip:7f701ce7b6a9 sp:7fff19cbd2f0 
error:0 in nvidia_drv.so[7f701ce1a000+6e]

Hope this is a high priority, though I know Ubuntu has zero control over
the binary Nvidia drivers.  In any case, it makes watching YouTube vids
impossible, whether they be HTML5 or Flash.

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

Title:
  Nvidia driver causes xorg crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/973096/+subscriptions

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


[Bug 978604] Re: Banshee/Rhythmbox regularly stop playing audio when left on in the background

2012-05-06 Thread Rookcifer
I can confirm this bug.  I use banshee, did a clean install of 12.04,
and I get the same issue with music stopping playing at random times.
All of my music consists of ogg and mp3.  Like the others, I did *not*
have this issue in 11.10.

Example of error message in /var/log/syslog:

pulseaudio[2001]: [alsa-sink] protocol-native.c: Failed to push data
into queue

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

Title:
  Banshee/Rhythmbox regularly stop playing audio when left on in the
  background

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

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


[Bug 706011] Re: gpg --key-gen doesn't have enough entropy and rng-tools install/start fails

2012-04-25 Thread Rookcifer
Wow, thank goodness this bug is invalid.  The original poster, with all
due respect, was simply ignorant of how things are supposed to work.
Remember the Debian SSL bug?  That was due to some code maintainer who
thought he knew more than the crypto coders.  As a result he broke
thousands of keys across the Internet and severely embarrassed the
Debian developers.

People have already given you solutions:

1) Generate the key on a device that has a mouse and keyboard and then
transfer the key to the other device.

2) Go buy yourself a hardware RNG like the entropy key.  It is cheap and
fits into any USB slot.

3) Go download HAVEGED from the repository.  It likely gives good
enough randomness and will keep your random pool full at all times.
However, since it hasn't been well studied, use this only as a last
resort! (It was developed by PhD's, so it's probably good enough, but it
still needs peer review).

If you can't do either of those then you shouldn't be generating keys on
the device.  There was a recent study that collected millions of keys
across the internet and found that many thousands of them were easily
broken.  Why?  Because they were generated with crappy entropy (and
mostly generated on devices like routers, vpn's,  etc.)  Is this what
you want?  An easily broken key?

If your system doesn't have any inputs or you have no way of generating
entropy, that's *your* problem to figure out.  Don't go suggesting that
Ubuntu should make us all insecure because of you.  Again, if you don't
have a keyboard or mouse hooked up to the machine, go find a machine
with them and generate the keys there.  If the machine is remote, then
simply generate the keys locally (with a strong password) and then send
them over the wire to the remote machine.  This should not present any
security issues since the private key is itself encrypted.

Bottom line:  the GnuPG RNG is working as it is *supposed* to work.  If
it didn't work the way it did I would not use it.  This is *not* a bug
with Ubuntu and it's not a bug with GnuPG.  Also rng-tools is *not*
meant to be used unless you have a hardware TRNG, so it is working as
intended as well. Whoever suggested pointing it at /dev/urandom is a
complete amateur at cryptography and should be ignored.  There's a lot
of people out there who just don't know what they're talking about when
it comes to crypto and they should be ignored just as much as this bug
report should be ignored.

@JoePete

There are no processes on an OS that are sufficient for entropy
gathering *besides* keyboard, mouse and disk movements (and even they
have problems, but are probably good enough).  So what the developers
are doing now *is* sound development practice.  They don't need amateurs
trying to tell them how to do crypto.

I think part of the problem with people trying to get entropy from disk
seeks is they don't understand how /dev/random works.  It estimates the
entropy before it hashes it and outputs it.  Since disk seeks have much
less entropy than say a random mouse or keyboard input, this is why it
takes forever to generate any output.  /dev/random is designed with
entropy measurement in mind and it simply wont output anything if the
entropy estimates are not up to par.  Disk seeks are obviously pretty
bad for generating entropy or else the output would be faster.  It is
what it is.  Security should *always* trump speed in situations like
this.

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

Title:
  gpg --key-gen doesn't have enough entropy and rng-tools install/start
  fails

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

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


[Bug 706011] Re: gpg --key-gen doesn't have enough entropy and rng-tools install/start fails

2012-04-25 Thread Rookcifer
@ Jon Stevens

So if we care about security we are stupid?  This isn't just some random
security issue in code that are a dime a dozen.  If we implemented what
you suggested we would be breaking the entire web of trust of people who
use Ubuntu to generate GPG keys.  We would literally be making the whole
GPG system completely insecure for hundreds of thousands if not
*millions* of people.  Ubuntu would become a laughing-stock on all the
big tech websites.  Blogs world wide would be saying Ubuntu generates
insecure GPG keys.  I can see the headlines now.

 Whoever runs this bug list should *never* have made this a valid big in
the first place.  Luckily they have since made it invalid.  Now they
need to close it for good.

And if you are developing or packaging, why are you not doing it on a
local machine?  Why are you doing it on some random VM remotely?
Besides, I gave you a good solution already.  Run this in the terminal
on your VM:

sudo apt-get install haveged

That is an entropy generator that will keep the entropy pool full at all
times.  You should be able to generate your keys in seconds.  Even
though it might not be as secure as using /dev/random directly, it is
probably good enough for your needs, and certainly much faster.  If you
want a fast solution, fine.  But don't ask Ubuntu to break our security
for your one weird corner case.

Lesson to be learned:  Unless you are a cryptographer or someone *very*
experienced in crypto coding, do not *ever* mess around with crypto code
or suggest people change it because of something you don't understand.
Debian learned this lesson the hard way several years ago.

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

Title:
  gpg --key-gen doesn't have enough entropy and rng-tools install/start
  fails

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

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


[Bug 764119] Re: nautilus crashed with SIGSEGV in g_type_instance_get_private()

2011-04-23 Thread Rookcifer
I can confirm that this bug affects me in Ubuntu 11.04.  I was burning a
CD and during the finalizing step nautilus crashed with the crash report
title:  nautilus crashed with SIGSEGV in g_type_instance_get_private()

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

Title:
  nautilus crashed with SIGSEGV in g_type_instance_get_private()

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


[Bug 192389] Re: fusion-icon crashed with KeyError in __init__()

2011-04-13 Thread Rookcifer
I installed Ubunty 11.04 Beta 1 from scratch and I am getting the same
issue.  Just updated everything on my system and it appears the fix
still hasn't made it's way into the repos yet.

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

Title:
  fusion-icon crashed with KeyError in __init__()

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


[Bug 588155] Re: randomly gnome-settings-daemon fails to start

2010-12-31 Thread Rookcifer
Yeah it seems neither the Gnome or the Ubuntu devs want to help.  I am
seriously thinking of switching to a KDE distro because of this.

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

Title:
  randomly gnome-settings-daemon fails to start

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


[Bug 693832] Re: Themes randomly reverting to Gnome Default

2010-12-23 Thread Rookcifer
I would like to add my consternation about this bug.  It is getting bad
enough for me that I am thinking of dumping Ubuntu Maverick all
together.  Even worse, no developers seem the slightest bit interested,
which is concerning.

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

Title:
  Themes randomly reverting to Gnome Default

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


[Bug 588155] Re: randomly gnome-settings-daemon fails to start

2010-12-22 Thread Rookcifer
Same problem here.  Grey theme at boot.  Going into theme preferences
will fix the panel, but it will not fix Nautilus or the desktop icons.

I'm using ubuntu 10.10 x64 with an nvidia graphics card (using binary
drivers).

What is the status of this bug?  Can any developer here tell me if you
are working on it?  This bug is rather infuriating and there doesn't
seem to be any progress being made on it.

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

Title:
  randomly gnome-settings-daemon fails to start

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


[Bug 570305] Re: ffmpeg ogv video conversion fails by outputting pixelated video

2010-05-05 Thread Rookcifer
I can confirm this bug, as can several other people who posted their
garbled videos on YouTube.  I first noticed it after uploading one of my
.ogv vids to YouTube.  After I saw how garbled it was I decided to try
and covert it here locally using ffmpeg.  I got the same result as what
YouTube produced.

My command was simple:

ffmpeg -i input.ogv output.flv

-- 
ffmpeg ogv video conversion fails by outputting pixelated video
https://bugs.launchpad.net/bugs/570305
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 444678] Re: Permission denied errors for users not in adm group

2010-04-11 Thread Rookcifer
Getting this same bug repeatedly on Lucid.  Whenever apport runs, it
always ends with this error:

IOError(13, 'Permission denied')

-- 
Permission denied errors for users not in adm group
https://bugs.launchpad.net/bugs/444678
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 444678] Re: Permission denied errors for users not in adm group

2010-04-11 Thread Rookcifer
BTW, I just checked and I am in the adm group!  So that's not the
problem here.

-- 
Permission denied errors for users not in adm group
https://bugs.launchpad.net/bugs/444678
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 540686] Re: update-initramfs fails in mkinitramfs with cpio: ./different/files: Cannot stat: No such file or directory

2010-03-24 Thread Rookcifer
I am getting a similar error.  First of all whenever I run 'aptitude
update' the update wont finish because I get this error:

Get:3 http://us.archive.ubuntu.com lucid/main Packages [1,374kB]
E: Method bzip2 has died unexpectedly!
E: Sub-process bzip2 received signal 9.
E: Method /usr/lib/apt/methods/bzip2 did not start correctly
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to 
correct the problem. 

Secondly, whenever I run 'aptitude upgrade' I get an error with
initramfs-tools.  It tell me to run 'sudo dpkg --configure -a'.  When I
do, I get this:

Setting up initramfs-tools (0.92bubuntu69) ...
update-initramfs: deferring update (trigger activated)

Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-2.6.32-17-generic
Killed
update-initramfs: failed for /boot/initrd.img-2.6.32-17-generic
dpkg: subprocess installed post-installation script returned error exit status 1

Therefore, I can not update or upgrade my system right now on Lucid.  I
am basically at a standstill.

-- 
update-initramfs fails in mkinitramfs with cpio: ./different/files: Cannot 
stat: No such file or directory
https://bugs.launchpad.net/bugs/540686
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 546599] [NEW] initramfs-tools on 2.6.32-17 will not install properly -- Cannot update/upgrade system at all.

2010-03-24 Thread Rookcifer
Public bug reported:

Binary package hint: initramfs-tools

I am getting numerous errors when using aptitude in Lucid.  I cannot
update or upgrade my system because I get errors.  For example, when i
try to update I get this:

Get:3 http://us.archive.ubuntu.com lucid/main Packages [1,374kB]
E: Method bzip2 has died unexpectedly!
E: Sub-process bzip2 received signal 9.
E: Method /usr/lib/apt/methods/bzip2 did not start correctly
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to 
correct the problem.


And when I run sudo dpkg --configure -a, there seems to be a problem with 
initramfs-tools only being partially installed.  The package is broken for some 
reason:

Setting up initramfs-tools (0.92bubuntu69) ...
update-initramfs: deferring update (trigger activated)

Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-2.6.32-17-generic
Killed
update-initramfs: failed for /boot/initrd.img-2.6.32-17-generic
dpkg: subprocess installed post-installation script returned error exit status 1

ProblemType: Bug
Architecture: amd64
Date: Wed Mar 24 21:29:08 2010
DistroRelease: Ubuntu 10.04
NonfreeKernelModules: nvidia
Package: initramfs-tools 0.92bubuntu69
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-17.26-generic 2.6.32.10+drm33.1
SourcePackage: initramfs-tools
Uname: Linux 2.6.32-17-generic x86_64

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
initramfs-tools on 2.6.32-17 will not install properly -- Cannot update/upgrade 
system at all.
https://bugs.launchpad.net/bugs/546599
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 546599] Re: initramfs-tools on 2.6.32-17 will not install properly

2010-03-24 Thread Rookcifer

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/41908213/Dependencies.txt

** Summary changed:

- initramfs-tools on 2.6.32-17 will not install properly
+ initramfs-tools on 2.6.32-17 will not install properly -- Cannot 
update/upgrade system at all.

-- 
initramfs-tools on 2.6.32-17 will not install properly -- Cannot update/upgrade 
system at all.
https://bugs.launchpad.net/bugs/546599
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


Re: [Bug 446449] Re: [Karmic] After restarting AppArmor, aa-logprof doesn't seem to load the existing profiles.

2009-10-26 Thread Rookcifer
Thank you, Marc.  Your patch seems to have fixed the issue (at least as 
far as I can tell with my limited testing).  I will let you know if any issues 
arise.  But so far, so good. ;)

-- 
[Karmic] After restarting AppArmor, aa-logprof doesn't seem to load the 
existing profiles.
https://bugs.launchpad.net/bugs/446449
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 446449] Re: [Karmic] Apparmor does not allow the generation of new profiles

2009-10-24 Thread Rookcifer
** Tags added: apparmor

-- 
[Karmic] Apparmor does not allow the generation of new profiles
https://bugs.launchpad.net/bugs/446449
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 437643] Re: BUG: unable to handle kernel NULL pointer dereference at 0000000000000068

2009-10-17 Thread Rookcifer
I also am getting this kerneloops.  Apport gives me the same bug title
as this one.  However, I am not using vpn or hamachi like the OP.

My bug report is attached.

** Attachment added: linux-image-2.6.31-14-generic.238023.txt
   
http://launchpadlibrarian.net/33841463/linux-image-2.6.31-14-generic.238023.txt

-- 
BUG: unable to handle kernel NULL pointer dereference at 0068
https://bugs.launchpad.net/bugs/437643
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


Re: [Bug 450920] Re: ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-16 Thread Rookcifer
lrwxrwxrwx 1 root root 14 2009-10-07 10:45 /lib/libm.so.6 - 
libm-2.10.1.so

On Thursday 15 October 2009 8:00:19 am Chuck Short wrote:
 Can you please post the output of ls -l /lib/libm.so.6.
 
 Regards
 chuck
 
 ** Changed in: ntp (Ubuntu)
Importance: Undecided = Low
 
 ** Changed in: ntp (Ubuntu)
Status: New = Incomplete


-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.

-- 
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


Re: [Bug 450920] Re: ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-16 Thread Rookcifer
As of right now I am able to restart ntp without any errors.  It seems 
the error is intermittent (perhaps the result of running a BETA 
system that is being constantly updated).

At any rate, here is the output you asked for:

linux-vdso.so.1 =  (0x7fff197d)
libm.so.6 = /lib/libm.so.6 (0x7f3a4c428000)
libcrypto.so.0.9.8 = /lib/libcrypto.so.0.9.8 
(0x7f3a4c0a1000)
libcap.so.2 = /lib/libcap.so.2 (0x7f3a4be9c000)
libc.so.6 = /lib/libc.so.6 (0x7f3a4bb2d000)
libdl.so.2 = /lib/libdl.so.2 (0x7f3a4b929000)
libz.so.1 = /lib/libz.so.1 (0x7f3a4b712000)
/lib64/ld-linux-x86-64.so.2 (0x7f3a4c6ac000)


On Friday 16 October 2009 2:25:23 pm Chuck Short wrote:
 Thanks can you do the following command:
 
 ldd /usr/sbin/ntpd
 
 And attach the output?
 
 Regards
 chuck


-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.

-- 
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


Re: [Bug 450920] Re: ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-16 Thread Rookcifer
lrwxrwxrwx 1 root root 14 2009-10-07 10:45 /lib/libm.so.6 - 
libm-2.10.1.so

On Thursday 15 October 2009 8:00:19 am Chuck Short wrote:
 Can you please post the output of ls -l /lib/libm.so.6.
 
 Regards
 chuck
 
 ** Changed in: ntp (Ubuntu)
Importance: Undecided = Low
 
 ** Changed in: ntp (Ubuntu)
Status: New = Incomplete


-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
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


Re: [Bug 450920] Re: ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-16 Thread Rookcifer
As of right now I am able to restart ntp without any errors.  It seems 
the error is intermittent (perhaps the result of running a BETA 
system that is being constantly updated).

At any rate, here is the output you asked for:

linux-vdso.so.1 =  (0x7fff197d)
libm.so.6 = /lib/libm.so.6 (0x7f3a4c428000)
libcrypto.so.0.9.8 = /lib/libcrypto.so.0.9.8 
(0x7f3a4c0a1000)
libcap.so.2 = /lib/libcap.so.2 (0x7f3a4be9c000)
libc.so.6 = /lib/libc.so.6 (0x7f3a4bb2d000)
libdl.so.2 = /lib/libdl.so.2 (0x7f3a4b929000)
libz.so.1 = /lib/libz.so.1 (0x7f3a4b712000)
/lib64/ld-linux-x86-64.so.2 (0x7f3a4c6ac000)


On Friday 16 October 2009 2:25:23 pm Chuck Short wrote:
 Thanks can you do the following command:
 
 ldd /usr/sbin/ntpd
 
 And attach the output?
 
 Regards
 chuck


-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
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 453660] Re: kde4-window-decorator crashed with SIGSEGV in KApplication::x11EventFilter()

2009-10-16 Thread Rookcifer

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/33810606/BootDmesg.txt

** Attachment added: CoreDump.gz
   http://launchpadlibrarian.net/33810607/CoreDump.gz

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/33810608/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/33810609/Dependencies.txt

** Attachment added: GconfCompiz.txt
   http://launchpadlibrarian.net/33810610/GconfCompiz.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/33810611/Lspci.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/33810612/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/33810613/ProcInterrupts.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/33810614/ProcMaps.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/33810615/ProcModules.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/33810616/ProcStatus.txt

** Attachment added: Registers.txt
   http://launchpadlibrarian.net/33810617/Registers.txt

** Attachment added: Stacktrace.txt
   http://launchpadlibrarian.net/33810618/Stacktrace.txt

** Attachment added: ThreadStacktrace.txt
   http://launchpadlibrarian.net/33810619/ThreadStacktrace.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/33810621/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/33810622/UdevLog.txt

** Attachment added: XorgConf.txt
   http://launchpadlibrarian.net/33810623/XorgConf.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/33810624/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/33810625/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/33810626/Xrandr.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/33810627/XsessionErrors.txt

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/33810628/glxinfo.txt

** Visibility changed to: Public

-- 
kde4-window-decorator crashed with SIGSEGV in KApplication::x11EventFilter()
https://bugs.launchpad.net/bugs/453660
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 450920] [NEW] ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-13 Thread Rookcifer
Public bug reported:

Binary package hint: ntp

NTP version:  1:4.2.4p6+dfsg-1ubuntu4

When trying to restart ntpd at the command line, I am receiving the
following:

* Stopping NTP server ntpd  
 [ OK ]
 * Starting NTP server ntpd 
 /usr/sbin/ntpd: error while loading shared 
libraries: libm.so.6: cannot open shared object file: No such file or directory
  
Obviously, ntpd is looking for the wrong library.

I am running an updated Karmic-Beta.

Uname -a:

Linux 2.6.31-14-generic #46-Ubuntu SMP Tue Oct 13 16:47:28 UTC 2009
x86_64 GNU/Linux

** Affects: ntp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ntp in ubuntu.

-- 
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 450920] [NEW] ntpd will not restart (error while loading shared libraries: libm.so.6)

2009-10-13 Thread Rookcifer
Public bug reported:

Binary package hint: ntp

NTP version:  1:4.2.4p6+dfsg-1ubuntu4

When trying to restart ntpd at the command line, I am receiving the
following:

* Stopping NTP server ntpd  
 [ OK ]
 * Starting NTP server ntpd 
 /usr/sbin/ntpd: error while loading shared 
libraries: libm.so.6: cannot open shared object file: No such file or directory
  
Obviously, ntpd is looking for the wrong library.

I am running an updated Karmic-Beta.

Uname -a:

Linux 2.6.31-14-generic #46-Ubuntu SMP Tue Oct 13 16:47:28 UTC 2009
x86_64 GNU/Linux

** Affects: ntp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
ntpd will not restart (error while loading shared libraries: libm.so.6)
https://bugs.launchpad.net/bugs/450920
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 446449] [NEW] [Karmic] Apparmor does not allow the generation of new profiles

2009-10-08 Thread Rookcifer
Public bug reported:

Binary package hint: apparmor

When I attempt to create a new profile with the aa-genprof command, I
find that none of the changes I make through the interactive apparmor
log parser stick (I am using the auditd, by the way).  If I try to
generate a profile for my IRC client, for example, I find that whenever
I perform aa-logprof that I get asked the same questions over and over
again.  They do not stick, even after restarting apparmor or even after
rebooting.  And I get the following error when I try to restart apparmor
whenever one of my generated profiles exists in /etc/apparmor.d/:

sudo /etc/init.d/apparmor restart
 * Reloading AppArmor profiles  

Found reference to variable HOME, but is never declared
Found reference to variable HOME, but is never declared

The above error implies that the #include tunables/global line was not
included in the profile.  If I add that line, it fixes the problem
temporarily, but after I run aa-logprof again, I encounter the same
audit logs again and again.  Further, when I restart apparmor, I find
that the #include tunables/global line has disappeared from my
profile.

Also, when I try to put all profiles into enforce mode, I get a bit more
detailed of an error:

sudo aa-enforce /etc/apparmor.d/*
Setting /etc/apparmor.d/usr.bin.kopete to enforce mode.
/sbin/apparmor_parser: cannot use or update cache, disable, or force-complain 
via stdin
Found reference to variable HOME, but is never declared

So, basically, AppArmor profile generation in Karmic is broken.

Here is my uname -a:

Linux 2.6.31-12-generic #41-Ubuntu SMP Wed Oct 7 19:37:12 UTC 2009
x86_64 GNU/Linux

** Affects: apparmor (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[Karmic] Apparmor does not allow the generation of new profiles
https://bugs.launchpad.net/bugs/446449
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 444689] Re: systemsettings crashed with SIGSEGV in QMutex::lock()

2009-10-06 Thread Rookcifer

** Attachment added: CoreDump.gz
   http://launchpadlibrarian.net/33130662/CoreDump.gz

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/33130663/Dependencies.txt

** Attachment added: Disassembly.txt
   http://launchpadlibrarian.net/33130664/Disassembly.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/33130665/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/33130666/ProcStatus.txt

** Attachment added: Registers.txt
   http://launchpadlibrarian.net/33130667/Registers.txt

** Attachment added: Stacktrace.txt
   http://launchpadlibrarian.net/33130668/Stacktrace.txt

** Attachment added: ThreadStacktrace.txt
   http://launchpadlibrarian.net/33130669/ThreadStacktrace.txt

** Visibility changed to: Public

-- 
systemsettings crashed with SIGSEGV in QMutex::lock()
https://bugs.launchpad.net/bugs/444689
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 424715] Re: kwin forgets opacity of windows

2009-09-27 Thread Rookcifer
I can confirm.

-- 
kwin forgets opacity of windows
https://bugs.launchpad.net/bugs/424715
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