[Bug 1875114] Re: freeipa-server package missing on Ubuntu 20.04

2021-03-10 Thread Jesse Michael
I'm still unable to update production servers from 19.10 (eoan) because
of the lack of freeipa-server.  Now that 19.10 has been EOL for a while
now without resolving this I'll be giving up on Ubuntu and switching
these servers to Fedora.

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

Title:
  freeipa-server package missing on Ubuntu 20.04

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

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

[Bug 1892145] Re: smbclient cannot connect anonymously in Kerberos context (freeipa)

2021-01-07 Thread Jesse Michael
This bug is due to a double-free in source3/librpc/crypto/gse.c where
gse_ctx->k5ctx is freed twice if gse_context_init fails and the err_out
path is taken.

The beginning of gse_context_init calls talloc_set_destructor to call
gse_context_destructor:

talloc_set_destructor((TALLOC_CTX *)gse_ctx,
gse_context_destructor);

This gse_context_destructor callback function is triggered by calls to
TALLOC_FREE(gse_ctx) and frees pointers stored in the gse_ctx structure
including gse_ctx->k5ctx:

if (gse_ctx->k5ctx) {
if (gse_ctx->ccache) {
krb5_cc_close(gse_ctx->k5ctx, gse_ctx->ccache);
gse_ctx->ccache = NULL;
}
if (gse_ctx->keytab) {
krb5_kt_close(gse_ctx->k5ctx, gse_ctx->keytab);
gse_ctx->keytab = NULL;
}
krb5_free_context(gse_ctx->k5ctx);
gse_ctx->k5ctx = NULL;
}

However, if gse_context_init fails and takes the err_out path,
gse_ctx->k5ctx is freed without setting that pointer to NULL and then
immediately calls TALLOC_FREE(gse_ctx) which then attempts to free
gse_ctx->k5ctx a second time:

err_out:
if (gse_ctx->k5ctx) {
krb5_free_context(gse_ctx->k5ctx);
}

TALLOC_FREE(gse_ctx);

This results in the following double-free stack trace:

(gdb) bt
#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
#1  0x77443859 in __GI_abort () at abort.c:79
#2  0x774ae3ee in __libc_message (action=action@entry=do_abort, 
fmt=fmt@entry=0x775d8285 "%s\n") at ../sysdeps/posix/libc_fatal.c:155
#3  0x774b647c in malloc_printerr (str=str@entry=0x775da5d0 
"free(): double free detected in tcache 2") at malloc.c:5347
#4  0x774b80ed in _int_free (av=0x77609b80 , 
p=0x555ce2c0, have_lock=0) at malloc.c:4201
#5  0x76cc29f9 in krb5_free_context (context=0x555cdcd0) at 
../../source4/heimdal/lib/krb5/context.c:595
#6  0x773e75d1 in gse_context_destructor (ptr=ptr@entry=0x555cdc50) 
at ../../source3/librpc/crypto/gse.c:84
#7  0x7776553e in _tc_free_internal (tc=0x555cdbf0, 
location=0x773f2480 "../../source3/librpc/crypto/gse.c:241") at 
../../talloc.c:1157
#8  0x773e826c in gse_context_init 
(mem_ctx=mem_ctx@entry=0x555cdb60, do_sign=, 
do_seal=, add_gss_c_flags=, 
_gse_ctx=_gse_ctx@entry=0x7fffd500,
ccache_name=) at ../../source3/librpc/crypto/gse.c:241
#9  0x773e8433 in gse_init_client (ccache_name=0x0, realm=, username=, password=, _gse_ctx=, add_gss_c_flags=,
service=0x555ccdf0 "cifs", server=0x555ccfb0 "freenas", 
do_seal=, do_sign=, mem_ctx=0x555cdb60) at 
../../source3/librpc/crypto/gse.c:268
#10 gensec_gse_client_start (gensec_security=0x555cdb60) at 
../../source3/librpc/crypto/gse.c:786
#11 0x77390453 in gensec_start_mech (gensec_security=0x555cdb60) at 
../../auth/gensec/gensec_start.c:743
#12 gensec_start_mech (gensec_security=0x555cdb60) at 
../../auth/gensec/gensec_start.c:704
#13 0x77387822 in gensec_spnego_client_negTokenInit_step 
(gensec_security=0x555c9b70, spnego_state=0x555cc1b0, n=0x555cd4a0, 
spnego_in=, last_status=...,
in_mem_ctx=, in_next=0x555cd3f8) at 
../../auth/gensec/spnego.c:633
#14 0x77387e02 in gensec_spnego_client_negTokenInit_start 
(gensec_security=0x555c9b70, spnego_state=0x555cc1b0, n=0x555cd4a0, 
spnego_in=0x555cd368, in_mem_ctx=0x555cd340,
in_next=0x555cd3f8) at ../../auth/gensec/spnego.c:537
#15 0x77388b84 in gensec_spnego_update_pre (req=0x555cd190) at 
../../auth/gensec/spnego.c:1943
#16 gensec_spnego_update_send (mem_ctx=, ev=0x555aee90, 
gensec_security=, in=...) at ../../auth/gensec/spnego.c:1741
#17 0x7738f3b0 in gensec_update_send (mem_ctx=, 
ev=0x555aee90, gensec_security=0x555c9b70, in=...) at 
../../auth/gensec/gensec.c:449
#18 0x77f6dba6 in cli_session_setup_gensec_local_next 
(req=0x555c9d90) at ../../source3/libsmb/cliconnect.c:997
#19 0x77f6f520 in cli_session_setup_gensec_send 
(target_service=0x77fa478e "cifs", target_hostname=0x555ca480 
"freenas", creds=0x555adf90, cli=0x555adf90, ev=0x555aee90,
mem_ctx=) at ../../source3/libsmb/cliconnect.c:977
#20 cli_session_setup_spnego_send (creds=0x555adf90, cli=0x555adf90, 
ev=0x555aee90, mem_ctx=) at 
../../source3/libsmb/cliconnect.c:1346
#21 cli_session_setup_creds_send (mem_ctx=mem_ctx@entry=0x555aee90, 
ev=ev@entry=0x555aee90, cli=cli@entry=0x555adf90, 
creds=creds@entry=0x555b4380) at ../../source3/libsmb/cliconnect.c:1505
#22 0x77f6fcad in cli_session_setup_creds (cli=0x555adf90, 
creds=creds@entry=0x555b4380) at ../../source3/libsmb/cliconnect.c:1843
#23 0x77f8ca57 in do_connect (ctx=ctx@entry=0x555aae90, 
server=, 

[Bug 1775923] Re: gpg can't access secret keys when logged in via ssh instead of desktop

2018-06-08 Thread Jesse Michael
When attempting to decrypt a message, these messages show up in syslog:

Jun  8 15:55:29 wopr systemd[2245]: Started GnuPG cryptographic agent and 
passphrase cache.
Jun  8 15:55:29 wopr gpg-agent[25712]: gpg-agent (GnuPG) 2.2.4 starting in 
supervised mode.
Jun  8 15:55:29 wopr gpg-agent[25712]: using fd 3 for ssh socket 
(/run/user/3501/gnupg/S.gpg-agent.ssh)
Jun  8 15:55:29 wopr gpg-agent[25712]: using fd 4 for std socket 
(/run/user/3501/gnupg/S.gpg-agent)
Jun  8 15:55:29 wopr gpg-agent[25712]: using fd 5 for extra socket 
(/run/user/3501/gnupg/S.gpg-agent.extra)
Jun  8 15:55:29 wopr gpg-agent[25712]: using fd 6 for browser socket 
(/run/user/3501/gnupg/S.gpg-agent.browser)
Jun  8 15:55:29 wopr gpg-agent[25712]: listening on: std=4 extra=5 browser=6 
ssh=3
Jun  8 15:55:29 wopr gnome-shell[4354]: remove_mnemonics: assertion 'label != 
NULL' failed
Jun  8 15:55:29 wopr gnome-shell[4354]: remove_mnemonics: assertion 'label != 
NULL' failed
Jun  8 15:55:29 wopr gpg-agent[25712]: failed to unprotect the secret key: 
Operation cancelled
Jun  8 15:55:29 wopr gpg-agent[25712]: failed to read the secret key
Jun  8 15:55:29 wopr gpg-agent[25712]: command 'PKDECRYPT' failed: Operation 
cancelled 

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

Title:
  gpg can't access secret keys when logged in via ssh instead of desktop

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

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

[Bug 1775923] [NEW] gpg can't access secret keys when logged in via ssh instead of desktop

2018-06-08 Thread Jesse Michael
Public bug reported:

I recently performed a fresh install of 18.04 (Bionic) after preserving
my .gnupg directory from my previous 16.04 LTS (Xenial) installation,
but now, I can't perform gpg operations that require my secret key
unless I'm sitting at the desktop and not logged in via ssh.

If I'm sitting at the gnome desktop environment, I can run gpg commands
to decrypt encrypted messages and the popup appears to ask my
passphrase, but if I'm connected via ssh, I get errors from gpg-agent
and gpg fails to find my secret key without ever asking for my
passphrase:

$ ps auxww | grep gpg-agent
jesse16703  0.0  0.0  21536  1040 pts/4S+   12:19   0:00 grep gpg-agent

$ gpg --list-keys
gpg: checking the trustdb
gpg: marginals needed: 3  completes needed: 1  trust model: pgp
gpg: depth: 0  valid:   2  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 2u
gpg: next trustdb check due at 2019-02-22
/home/jesse/.gnupg/pubring.kbx
--
pub   rsa2048 2018-02-22 [SC] [expires: 2019-02-22]
  ...
uid   [ultimate] Jesse Michael <...@...>
uid   [ultimate] Jesse Michael <...@...>
sub   rsa2048 2018-02-22 [E] [expires: 2019-02-22]

pub   rsa2048 2018-02-22 [SC] [expires: 2019-02-22]
  ...
uid   [ultimate] Jesse Michael <...@...>
sub   rsa2048 2018-02-22 [E] [expires: 2019-02-22]

pub   rsa4096 2017-07-10 [SC] [expires: 2018-07-10]
  ...
uid   [ unknown] ... <...@...>
sub   rsa4096 2017-07-10 [E] [expires: 2018-07-10]

$ gpg --export-secret-keys
gpg: key ...: error receiving key from agent: Operation cancelled - skipped
gpg: key ...: error receiving key from agent: Operation cancelled - skipped
gpg: key ...: error receiving key from agent: Operation cancelled - skipped
gpg: key ...: error receiving key from agent: Operation cancelled - skipped
gpg: WARNING: nothing exported

$ gpg --decrypt somefilename.gpg
gpg: encrypted with 4096-bit RSA key, ID ..., created 2017-07-10
  "... <...@...>"
gpg: encrypted with 2048-bit RSA key, ID ..., created 2018-02-22
  "Jesse Michael <...@...>"
gpg: public key decryption failed: Operation cancelled
gpg: decryption failed: No secret key

$ ps auxww | grep gpg-agent
jesse16716  0.0  0.0 100420  3484 ?SLs  12:19   0:00 
/usr/bin/gpg-agent --supervised
jesse16763  0.0  0.0  21536  1092 pts/4S+   12:20   0:00 grep gpg-agent
 
$ lsb_release -rd
Description:Ubuntu 18.04 LTS
Release:18.04

$ apt-cache policy gpg gnupg2 gpg-agent
gpg:
  Installed: 2.2.4-1ubuntu1
  Candidate: 2.2.4-1ubuntu1
  Version table:
 *** 2.2.4-1ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status
gnupg2:
  Installed: 2.2.4-1ubuntu1
  Candidate: 2.2.4-1ubuntu1
  Version table:
 *** 2.2.4-1ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu bionic/universe i386 Packages
100 /var/lib/dpkg/status
gpg-agent:
  Installed: 2.2.4-1ubuntu1
  Candidate: 2.2.4-1ubuntu1
  Version table:
 *** 2.2.4-1ubuntu1 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status

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

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

Title:
  gpg can't access secret keys when logged in via ssh instead of desktop

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

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

[Bug 1530491] Re: package steam:i386 1:1.0.0.48-1ubuntu2.1 failed to install/upgrade: подпроцесс установлен сценарий post-removal возвратил код ошибки 10

2016-06-29 Thread Jesse Michael
To add a little more information, the steam installation fails with this
"Steam License Agreement was DECLINED." error message even if you select
"I AGREE" if you're installing steam at the same time as steamcmd or
have steamcmd already installed.  i.e. "apt install steam steamcmd".

If you purge both steam and steamcmd and then do an "apt install steam"
followed by an "apt install steamcmd", both commands will succeed
without errors.

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

Title:
  package steam:i386 1:1.0.0.48-1ubuntu2.1 failed to install/upgrade:
  подпроцесс установлен сценарий post-removal возвратил код ошибки 10

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

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

[Bug 1530491] Re: package steam:i386 1:1.0.0.48-1ubuntu2.1 failed to install/upgrade: подпроцесс установлен сценарий post-removal возвратил код ошибки 10

2016-06-29 Thread Jesse Michael
Marc, this bug still happens in Xenial.  The script fails claiming that
the license agreement was declined no matter what you do, not just when
you actually decline the license.

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

Title:
  package steam:i386 1:1.0.0.48-1ubuntu2.1 failed to install/upgrade:
  подпроцесс установлен сценарий post-removal возвратил код ошибки 10

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

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

[Bug 886888] Re: ushare crashes on start-up when USHARE_ENABLE_DNLA=yes

2015-02-19 Thread Jesse Michael
This crash is still happening on a fully-updated 14.10--

# lsb_release -rd
Description:Ubuntu 14.10
Release:14.10

# uname -a
Linux chernobyl 3.16.0-30-generic #40-Ubuntu SMP Mon Jan 12 22:06:37 UTC 2015 
x86_64 x86_64 x86_64 GNU/Linux

# dpkg-query -l ushare libdlna0
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---=
ii  libdlna0   0.2.4-0ubunt amd64DLNA codec library
ii  ushare 1.1a-0ubuntu amd64lightweight UPnP A/V Media Server

# ifconfig eth0
eth0  Link encap:Ethernet  HWaddr 00:22:4d:50:ca:23  
  inet addr:10.0.0.10  Bcast:10.0.0.255  Mask:255.255.255.0
  inet6 addr: fe80::222:4dff:fe50:ca23/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:955523 errors:0 dropped:0 overruns:0 frame:0
  TX packets:517910 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:773726534 (773.7 MB)  TX bytes:68450904 (68.4 MB)
  Interrupt:20 Memory:f640-f642 

With USHARE_ENABLE_DLNA set to no--

# ushare
Interface eth0 is down.
Recheck uShare's configuration and try again !
uShare (version 1.1a), a lightweight UPnP A/V and DLNA Media Server.
Benjamin Zores (C) 2005-2007, for GeeXboX Team.
See http://ushare.geexbox.org/ for updates.
Listening on telnet port 1337
Initializing UPnP subsystem ...
UPnP MediaServer listening on 10.0.0.10:49152
Sending UPnP advertisement for device ...
Listening for control point connections ...
Building Metadata List ...
Looking for files in content directory : /data/shared/clips
Found 18 files and subdirectories.

With USHARE_ENABLE_DLNA set to yes--

# ushare
Interface eth0 is down.
Recheck uShare's configuration and try again !
uShare (version 1.1a), a lightweight UPnP A/V and DLNA Media Server.
Benjamin Zores (C) 2005-2007, for GeeXboX Team.
See http://ushare.geexbox.org/ for updates.
Listening on telnet port 1337
Initializing UPnP subsystem ...
Starting in DLNA compliant profile ...
UPnP MediaServer listening on 10.0.0.10:49153
Sending UPnP advertisement for device ...
Listening for control point connections ...
Building Metadata List ...
Looking for files in content directory : /data/shared/clips
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '(null)':
  Metadata:
major_brand : mp42
minor_version   : 0
compatible_brands: isommp42
creation_time   : 2014-03-07 09:33:43
  Duration: 00:12:20.94, start: 0.00, bitrate: 1775 kb/s
Stream #0.0(und): Video: h264 (High), yuv420p, 1280x534 [PAR 801:800 DAR 
12:5], 1581 kb/s, 23.98 fps, 24k tbn, 47.95 tbc (default)
Stream #0.1(und): Audio: aac, 44100 Hz, stereo, fltp, 191 kb/s (default)
Metadata:
  creation_time   : 2014-03-07 09:33:55
Found container: mov,mp4,m4a,3gp,3g2,mj2
AAC Object Type: 2
Segmentation fault (core dumped)

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

Title:
  ushare crashes on start-up when USHARE_ENABLE_DNLA=yes

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

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


[Bug 446657] Re: Bluetooth's on/off status doesn't update from the SetProperty D-Bus method that bluetoothd sends

2014-07-18 Thread Jesse Michael
It's kind of depressing that this bug is still not fixed four and a half
years later in trusty.

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

Title:
  Bluetooth's on/off status doesn't update from the SetProperty D-Bus
  method that bluetoothd sends

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-bluetooth/+bug/446657/+subscriptions

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


[Bug 938415] Re: bluetooth-applet does not preserve enabled/disabled state across reboot

2012-02-21 Thread Jesse Michael
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/938415

Title:
  bluetooth-applet does not preserve enabled/disabled state across
  reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-bluetooth/+bug/938415/+subscriptions

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


[Bug 938415] [NEW] bluetooth-applet does not preserve enabled/disabled state across reboot

2012-02-21 Thread Jesse Michael
Public bug reported:

I have multiple computers that I very rarely want to use bluetooth with
and no matter how many times I select Disable Bluetooth from the
Bluetooth applet, it always re-enables it upon reboot.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gnome-bluetooth 3.2.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-16.28-generic 3.0.17
Uname: Linux 3.0.0-16-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
Date: Tue Feb 21 21:39:52 2012
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release Candidate amd64 
(20100928)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-bluetooth
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (129 days ago)

** Affects: gnome-bluetooth (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  bluetooth-applet does not preserve enabled/disabled state across
  reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-bluetooth/+bug/938415/+subscriptions

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


[Bug 901077] Re: Information leakage in Unity when switching between users

2011-12-13 Thread Jesse Michael
The information leakage may be very limited in scope, but it's certainly
a security vulnerability.

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

Title:
  Information leakage in Unity when switching between users

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

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


[Bug 892901] Re: Firefox freezes periodically for no apparent reason

2011-11-22 Thread Jesse Michael
I haven't run into this when suspending, but often when closing tabs,
firefox will go unresponsive and grey out for a while before eventually
coming back.

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

Title:
  Firefox freezes periodically for no apparent reason

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

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


[Bug 880245] [NEW] kernel NULL pointer dereference in shmem_writepage

2011-10-23 Thread Jesse Michael
Public bug reported:

I was minding my own business browsing the web using a fully up-to-date
install of Oneiric when I got an Oops reporting that kswapd0 had died in
shmem_writepage.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: linux-image-3.0.0-12-generic 3.0.0-12.20
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
ApportVersion: 1.23-0ubuntu3
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  jesse  1684 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf7db8000 irq 45'
   Mixer name   : 'Realtek ALC269'
   Components   : 'HDA:10ec0269,104383ce,0014'
   Controls  : 12
   Simple ctrls  : 7
Date: Sun Oct 23 01:59:23 2011
HibernationDevice: RESUME=UUID=8a1c2fc8-766b-4d73-8817-beff3f883cee
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Beta i386 (20110901)
MachineType: ASUSTeK Computer INC. 1005HA
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic 
root=/dev/mapper/vg-root ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.0.0-12-generic N/A
 linux-backports-modules-3.0.0-12-generic  N/A
 linux-firmware1.60
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
WifiSyslog:
 
dmi.bios.date: 04/18/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1601
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1005HA
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1601:bd04/18/2011:svnASUSTeKComputerINC.:pn1005HA:pvrx.x:rvnASUSTeKComputerINC.:rn1005HA:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
dmi.product.name: 1005HA
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-bug i386 oneiric

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

Title:
  kernel NULL pointer dereference in shmem_writepage

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

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


[Bug 880245] Re: kernel NULL pointer dereference in shmem_writepage

2011-10-23 Thread Jesse Michael
** Attachment added: relevant oops report from the system logs
   
https://bugs.launchpad.net/bugs/880245/+attachment/2567751/+files/shmem_writepage-oops.txt

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

Title:
  kernel NULL pointer dereference in shmem_writepage

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

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


[Bug 880245] Re: kernel NULL pointer dereference in shmem_writepage

2011-10-23 Thread Jesse Michael
** Attachment added: wtf-shmem_writepage.jpg
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/880245/+attachment/2567772/+files/wtf-shmem_writepage.jpg

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

Title:
  kernel NULL pointer dereference in shmem_writepage

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

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


[Bug 864369] [NEW] Hibernate option missing from gnome-shell session menu

2011-10-01 Thread Jesse Michael
Public bug reported:

I upgraded to Oneiric recently and installed gnome-shell because unity
still has some pretty serious functionality problems, but discovered
that the gnome-shell session menu doesn't have a Hibernate option, just
Suspend.

I never use suspend, but use hibernate at least twice a day, so this
regression in functionality is a pain.

The alternative-status-menu shell extension
(http://live.gnome.org/GnomeShell/Extensions) for gnome-shell adds the
Hibernate option back, but it apparently isn't packaged for Ubuntu yet.

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Hibernate option missing from gnome-shell session menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/864369/+subscriptions

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


[Bug 431117] Re: mypasswordsafe: crashes on save if data file is not writable

2011-08-10 Thread Jesse Michael
This just happened to me in Natty.

I opened a pwsafe.dat file I'd copied from a different system, changed
several passwords, and when I hit save, MyPasswordSafe immediately
crashed, losing the changes I'd made.

I had accidentally copied the files to my desktop as root instead of the
user I was running MyPasswordSafe as, so it was unable to write to the
file.

This is very easy to duplicate.

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

Title:
  mypasswordsafe: crashes on save if data file is not writable

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

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


[Bug 713954] Re: privoxy crashed with SIGSEGV in start_thread()

2011-03-08 Thread Jesse Michael
Just installed the version from the ppa.  I'll keep an eye on and it and
see if it dies again.

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

Title:
  privoxy crashed with SIGSEGV in start_thread()

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


[Bug 713954] Re: privoxy crashed with SIGSEGV in start_thread()

2011-03-06 Thread Jesse Michael
I haven't noticed a particular pattern.  All my browsing traffic goes through 
privoxy and every once in a while, I notice that
connections are being refused and that the privoxy daemon has crashed.

I haven't been able to narrow down what specific type of traffic is
causing the problem yet.

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

Title:
  privoxy crashed with SIGSEGV in start_thread()

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


[Bug 615987] Re: strings aborts on jpeg file

2011-03-03 Thread Jesse Michael
I'm running into this also on a Natty box.

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

Title:
  strings aborts on jpeg file

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


[Bug 717114] Re: [i945gm] Screen Corruption with new Xorg stack with terminal programs

2011-02-18 Thread Jesse Michael
I see this also sometimes with--

00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME
Express Integrated Graphics Controller (rev 03)

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

Title:
  [i945gm] Screen Corruption with new Xorg stack with terminal programs

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


[Bug 710796] [NEW] hibernate no longer works on natty

2011-01-31 Thread Jesse Michael
Public bug reported:

Binary package hint: pm-utils

Recently, my EeePc 1005HA running the latest version of Natty lost the
ability to hibernate.  The hibernate option was removed from the
shutdown menu and pm-hibernate and pm-suspend-hybrid don't do anything
now.  pm-suspend still suspends the laptop, but there are a number of
problems with the suspend approach that make it unusable for me.

I regularly hibernate my laptop with very little battery life left and
then toss it in my bag for several hours.  Depending on what I'm doing,
it's common for me to leave one of my laptops hibernated without power
for days at a time.  When suspended, both my Sony and Lenovo laptops
still generate a small amount of heat.  It's not much, but it still
makes me uncomfortable with leaving them in the laptop sleeve in my bag
for hours at a time.  Hibernate has also saved me in the past when I've
forgotten my power cord somewhere.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: pm-utils 1.4.1-4
ProcVersionSignature: Ubuntu 2.6.38-1.28-generic 2.6.38-rc2
Uname: Linux 2.6.38-1-generic i686
Architecture: i386
Date: Mon Jan 31 09:24:07 2011
InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 LC_MESSAGES=en_US.utf8
 SHELL=/bin/bash
SourcePackage: pm-utils

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


** Tags: apport-bug i386 natty running-unity

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

Title:
  hibernate no longer works on natty

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


[Bug 710796] Re: hibernate no longer works on natty

2011-01-31 Thread Jesse Michael


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

Title:
  hibernate no longer works on natty

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


[Bug 655187] Re: Cannot apt-get upgrade if squid-deb-proxy-avahi is running

2011-01-30 Thread Jesse Michael
I'm running into this bug also.  I haven't done any ipv6 configuration
of any kind, but I sometimes run into apt failing because of this error.

Running the avahi-browse command line listed above multiple times in a
row with maybe a second or two between each run resulted in the
following output--

jesse@wopr:~$ avahi-browse -kprt _apt_proxy._tcp |grep '^=;.*;IPv4;.*'
=;wlan0;IPv4;Squid\032deb\032proxy;_apt_proxy._tcp;local;box.local;192.168.1.10;8000;
jesse@wopr:~$ avahi-browse -kprt _apt_proxy._tcp |grep '^=;.*;IPv4;.*'
=;wlan0;IPv4;Squid\032deb\032proxy;_apt_proxy._tcp;local;box.local;fe80::230:1bff:feb9:1d93;8000;
jesse@wopr:~$ avahi-browse -kprt _apt_proxy._tcp |grep '^=;.*;IPv4;.*'
=;wlan0;IPv4;Squid\032deb\032proxy;_apt_proxy._tcp;local;box.local;fe80::230:1bff:feb9:1d93;8000;
jesse@wopr:~$ avahi-browse -kprt _apt_proxy._tcp |grep '^=;.*;IPv4;.*'
=;wlan0;IPv4;Squid\032deb\032proxy;_apt_proxy._tcp;local;box.local;fe80::230:1bff:feb9:1d93;8000;

After writing up the previous part of this comment, I tried running the
command line again, and the first result returned a ipv4 result and all
of the following requests returned ipv6 results, as above.

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

Title:
  Cannot apt-get upgrade if squid-deb-proxy-avahi is running

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


[Bug 342135] Re: bzr-gtk should not enable bzr-notify by default

2010-12-15 Thread Jesse Michael
This feature is especially aggravating when using the Netboot/Unity
interface, as it takes up a significant amount of space in the left dock
bar and is completely useless for my use cases.

I do a lot of bzr development, but I've never had any use for an
additional status popup telling me what's going on in the terminal
window I'm running my bzr commands from.  I'm honestly having a little
trouble figuring out when it would be useful.

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

Title:
  bzr-gtk should not enable bzr-notify by default

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


[Bug 661170] Re: dropped frames using vdpau

2010-10-18 Thread Jesse Michael
I'm guessing this won't fix the problem entirely, but when I try to play
relatively large videos like the 1024x436 version of that Sintel movie,
I'm getting this SEGV--

VO: [vdpau] 1024x436 = 1024x436 Planar YV12 
[vdpau] Error when calling vdp_output_surface_create: A catch-all error, used 
when no other error code applies.
[vdpau] Error when calling vdp_output_surface_create: A catch-all error, used 
when no other error code applies.
[vdpau] Error when calling vdp_video_surface_create: The system does not have 
enough resources to complete the requested operation at this time.

Program received signal SIGSEGV, Segmentation fault.
0x0049901b in draw_image (request=value optimized out, data=0xedf460) 
at libvo/vo_vdpau.c:1045
1045libvo/vo_vdpau.c: No such file or directory.
in libvo/vo_vdpau.c
(gdb) bt
#0  0x0049901b in draw_image (request=value optimized out, 
data=0xedf460) at libvo/vo_vdpau.c:1045
#1  control (request=value optimized out, data=0xedf460) at 
libvo/vo_vdpau.c:1345
#2  0x0051f959 in put_image (vf=0xc1ebc0, mpi=0xedf460, 
pts=2.1137068708935539e-314) at libmpcodecs/vf_vo.c:202
#3  0x004f094b in filter_video (sh_video=value optimized out, 
frame=0xedf460, pts=value optimized out) at libmpcodecs/dec_video.c:475
#4  0x00455c91 in generate_video_frame (blit_frame=0x7fffc218) at 
mplayer.c:1837
#5  update_video (blit_frame=0x7fffc218) at mplayer.c:2413
#6  0x00458ad5 in main (argc=value optimized out, argv=value 
optimized out) at mplayer.c:3818
(gdb) 

A quick look in libvo/vo_vdpau.c from the mplayer source shows that
get_surface() can fail and return null, but draw_image() dereferences
the result without checking for null.

** Patch added: fix a null-pointer dereference in libvo/vo_vdpau.c
   
https://bugs.launchpad.net/ubuntu/+source/libvdpau/+bug/661170/+attachment/1699300/+files/libvo-vo_vdpau.diff

-- 
dropped frames using vdpau
https://bugs.launchpad.net/bugs/661170
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 652674] [NEW] logprof doesn't handle log messages without denied or requested masks correctly

2010-09-30 Thread Jesse Michael
Public bug reported:

Binary package hint: apparmor

When aa-logprof runs into log messages that don't have denied or
requested masks, like the following status message, it ends up trying to
perform a string operation on an undefined variable which causes
warnings to be printed to the console.

[9.633452] type=1400 audit(1285899118.285:5): apparmor=STATUS
operation=profile_replace name=/sbin/dhclient3 pid=912
comm=apparmor_parser

I'm attaching a patch to fix this.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: apparmor 2.5.1~rc1-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Thu Sep 30 21:16:25 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release Candidate amd64 
(20100928)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: apparmor

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


** Tags: amd64 apport-bug maverick

-- 
logprof doesn't handle log messages without denied or requested masks correctly
https://bugs.launchpad.net/bugs/652674
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 652674] Re: logprof doesn't handle log messages without denied or requested masks correctly

2010-09-30 Thread Jesse Michael

** Patch added: avoid doing string operations on $rmask or $dmask when they're 
undefined
   
https://bugs.launchpad.net/bugs/652674/+attachment/1661041/+files/rmask-dmask.diff

** Attachment added: ApparmorPackages.txt
   
https://bugs.launchpad.net/bugs/652674/+attachment/1661042/+files/ApparmorPackages.txt

** Attachment added: ApparmorStatusOutput.txt
   
https://bugs.launchpad.net/bugs/652674/+attachment/1661043/+files/ApparmorStatusOutput.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/652674/+attachment/1661044/+files/Dependencies.txt

** Attachment added: KernLog.txt
   https://bugs.launchpad.net/bugs/652674/+attachment/1661045/+files/KernLog.txt

** Attachment added: PstreeP.txt
   https://bugs.launchpad.net/bugs/652674/+attachment/1661046/+files/PstreeP.txt

-- 
logprof doesn't handle log messages without denied or requested masks correctly
https://bugs.launchpad.net/bugs/652674
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 634388] Re: /etc/init.d/ssh stop doesn't stop sshd

2010-09-09 Thread Jesse Michael

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/634388/+attachment/1562180/+files/Dependencies.txt

** Attachment added: SSHDConfig.txt
   
https://bugs.launchpad.net/bugs/634388/+attachment/1562181/+files/SSHDConfig.txt

-- 
/etc/init.d/ssh stop doesn't stop sshd
https://bugs.launchpad.net/bugs/634388
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 634388] [NEW] /etc/init.d/ssh stop doesn't stop sshd

2010-09-09 Thread Jesse Michael
Public bug reported:

Running /etc/init.d/ssh stop gives the following message, but doesn't
successfully stop the sshd daemon from running--

je...@cthulhu:~$ sudo /etc/init.d/ssh stop
 * Stopping OpenBSD Secure Shell server sshd
   ...done.
je...@cthulhu:~$

I believe this is because sshd was converted over to upstart, but the
init script hasn't been fully cleaned up.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: openssh-server 1:5.3p1-3ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-24.42-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
Architecture: i386
Date: Thu Sep  9 12:33:34 2010
InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: openssh

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


** Tags: apport-bug i386 lucid ubuntu-une

-- 
/etc/init.d/ssh stop doesn't stop sshd
https://bugs.launchpad.net/bugs/634388
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 634388] Re: /etc/init.d/ssh stop doesn't stop sshd

2010-09-09 Thread Jesse Michael

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/634388/+attachment/1562180/+files/Dependencies.txt

** Attachment added: SSHDConfig.txt
   
https://bugs.launchpad.net/bugs/634388/+attachment/1562181/+files/SSHDConfig.txt

-- 
/etc/init.d/ssh stop doesn't stop sshd
https://bugs.launchpad.net/bugs/634388
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 529002] Re: Valid eCryptfs headers not found in file header region or xattr region

2010-03-26 Thread Jesse Michael
I was getting lots of these errors showing up in my kernel log also, so
I've switched back to an unencrypted homedir on my laptop for now.  I
don't know if I've had any file corruption due to this problem, but it
was making me pretty nervous.

-- 
Valid eCryptfs headers not found in file header region or xattr region
https://bugs.launchpad.net/bugs/529002
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 163963] Re: Copy to iPod fail causes hundreds of popup windows

2010-03-04 Thread Jesse Michael
I've run into this bug a number of times also, but it's happened for me
due to permission errors rather than my ipod running out of space.

Often when I plug in in my ipod, it gets mounted as root:root instead of
my desktop user and if I forget about that and try to copy stuff to the
ipod, I get a storm of error popups.  That's pretty painful when you're
trying to copy more than 500 files, as I've done more than once.

-- 
Copy to iPod fail causes hundreds of popup windows
https://bugs.launchpad.net/bugs/163963
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 473615] Re: cryptsetup init scripts are redundant and can break the boot

2009-11-30 Thread Jesse Michael
I think I'm running into this bug also.

I have two encrypted partitions, one on a non-removable drive and one on
a firewire drive.  GDM started up without waiting for me to enter any
passwords, and I now have the following showing up in pstree--

 |-sh---rc---S26cryptdisks-e---S26cryptdisks-e-+-askpass
 | `-cryptsetup
 |-sh---sh-+-askpass
 | `-cryptsetup

Because the boot process is partially stalled, other boot-time init
scripts haven't run yet, so other things fail.  As an example, you can't
use screen until the screen-cleanup init script runs.

-- 
cryptsetup init scripts are redundant and can break the boot
https://bugs.launchpad.net/bugs/473615
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 473615] Re: cryptsetup init scripts are redundant and can break the boot

2009-11-30 Thread Jesse Michael
I should also point out that the encrypted partition on the non-
removable drive is currently set to noauto in fstab, but it still
seems to be stalling the boot process to some degree.

-- 
cryptsetup init scripts are redundant and can break the boot
https://bugs.launchpad.net/bugs/473615
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 490702] [NEW] Xorg+intel_drv crash when uxa_check_poly_segment calls libfb

2009-11-30 Thread Jesse Michael
Public bug reported:

Binary package hint: xserver-xorg-video-intel

I was adjusting components in the eagle pcb layout tool when Xorg
crashed on me with the following backtrace in Xorg.0.log.old:

Backtrace:
0: /usr/bin/X(xorg_backtrace+0x3b) [0x8133d6b]
1: /usr/bin/X(xf86SigHandler+0x55) [0x80c7d35]
2: [0xb5c400]
3: /usr/lib/xorg/modules//libfb.so(fbSegment+0x37c) [0x34879c]
4: /usr/lib/xorg/modules//libfb.so(fbZeroSegment+0xa3) [0x345193]
5: /usr/lib/xorg/modules//libfb.so(fbPolySegment+0x57) [0x345087]
6: /usr/lib/xorg/modules/drivers//intel_drv.so(uxa_check_poly_segment+0x10e) 
[0x48f03e]
7: /usr/lib/xorg/modules/drivers//intel_drv.so [0x487b72]
8: /usr/bin/X [0x81809d1]
9: /usr/bin/X(ProcPolySegment+0xfa) [0x808abca]
10: /usr/bin/X(Dispatch+0x35f) [0x808d17f]
11: /usr/bin/X(main+0x395) [0x8072515]
12: /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe6) [0x1feb56]
13: /usr/bin/X [0x80719c1]
Saw signal 11.  Server aborting.

ProblemType: Bug
Architecture: i386
Date: Mon Nov 30 23:06:15 2009
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
MachineType: ASUSTeK Computer INC. 1005HA
Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-15-generic 
root=UUID=4b7d6579-ed9f-4ac4-9450-16fcdf14dd27 ro quiet splash
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-15.50-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu10
 libgl1-mesa-glx 7.6.0-1ubuntu4
 libdrm2 2.4.14-1ubuntu1
 xserver-xorg-video-intel 2:2.9.0-1ubuntu2
 xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
SourcePackage: xserver-xorg-video-intel
Tags:  ubuntu-unr
Uname: Linux 2.6.31-15-generic i686
XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
XsessionErrors:
 (gnome-settings-daemon:3992): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (gnome-settings-daemon:3992): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (nautilus:4031): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (polkit-gnome-authentication-agent-1:4059): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (gnome-power-manager:4066): Gdk-CRITICAL **: 
gdk_window_thaw_toplevel_updates_libgtk_only: assertion 
`private-update_and_descendants_freeze_count  0' failed
dmi.bios.date: 09/23/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0905
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1005HA
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0905:bd09/23/2009:svnASUSTeKComputerINC.:pn1005HA:pvrx.x:rvnASUSTeKComputerINC.:rn1005HA:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
dmi.product.name: 1005HA
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   i686kernel: 2.6.31-15-generic

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 ubuntu-unr

-- 
Xorg+intel_drv crash when uxa_check_poly_segment calls libfb
https://bugs.launchpad.net/bugs/490702
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 490702] Re: Xorg+intel_drv crash when uxa_check_poly_segment calls libfb

2009-11-30 Thread Jesse Michael

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

** Attachment added: CurrentDmesg.gz
   http://launchpadlibrarian.net/36286769/CurrentDmesg.gz

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

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

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/36286772/Lsusb.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/36286773/PciDisplay.txt

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

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

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

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

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

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

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

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

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

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/36286784/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/36286785/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/36286787/xkbcomp.txt

-- 
Xorg+intel_drv crash when uxa_check_poly_segment calls libfb
https://bugs.launchpad.net/bugs/490702
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 414560] Re: ath9k disassociates/reassociates a lot

2009-11-23 Thread Jesse Michael
linux-backports-modules-wireless-karmic-generic has been a lot more
stable for me as well.

I've had a few of these messages show up in my dmesg since I suspended
and resumed 7 hours or so ago, but haven't had any drop/reassociate
cycles at all in that time--

[61982.000897] ath9k: DMA failed to stop in 10 ms AR_CR=0x0024
AR_DIAG_SW=0x0020

I also noticed that my signal strength is significantly higher with the
backports driver as well.  With my laptop sitting at the exact same
location I was only getting 50-60% two days ago with the default driver,
I'm now getting 94%.

-- 
ath9k disassociates/reassociates a lot
https://bugs.launchpad.net/bugs/414560
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 483364] Re: ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\....

2009-11-20 Thread Jesse Michael
I've also noticed several of these errors showing up, but haven't been
able to nail down what's triggering them yet:

Nov 19 19:54:35 box kernel: [621999.065176] ecryptfs_read_lower: octets_read = 
[-4]; expected [4096]
Nov 19 19:54:35 box kernel: [621999.065186] ecryptfs_decrypt_page: Error 
attempting to read lower page; rc = [-22]
Nov 19 19:54:35 box kernel: [621999.065194] ecryptfs_readpage: Error decrypting 
page; rc = [-22]
Nov 19 19:54:35 box kernel: [621999.065211] ecryptfs_read_lower: octets_read = 
[-4]; expected [4096]
Nov 19 19:54:35 box kernel: [621999.065219] ecryptfs_decrypt_page: Error 
attempting to read lower page; rc = [-22]
Nov 19 19:54:35 box kernel: [621999.065226] ecryptfs_readpage: Error decrypting 
page; rc = [-22]

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 414560] Re: ath9k disassociates/reassociates a lot

2009-11-20 Thread Jesse Michael
I tried out the 75_ath9k-1005ha-reload file and have had 17
disassociate/reassociate cycles in the last hour and 15 minutes since I
suspended and resumed with that file in /etc/pm/sleep.d/.

My wap is about 10 feet away from me through a single lath-and-plaster
interior wall and currently is reporting between 50% and 60% signal
strength.

-- 
ath9k disassociates/reassociates a lot
https://bugs.launchpad.net/bugs/414560
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 483364] Re: ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\....

2009-11-16 Thread Jesse Michael
I haven't found any filesystem data errors yet.  I just installed the
latest netbook remix on a brand-new Asus 1005HA a few days ago and set
my home directory be to encrypted during the installation.

I don't have very many files in my home directory yet.  Primarily just
25M or so of bzr/svn trees.  I downloaded some things using firefox and
scped them to a different system so I don't know how much data was
there, but none of them had unusually long names or directory trees
deeper than just a few levels.

I just checked a standard Ubuntu Desktop install that I did a few days
earlier on a different machine where I'd also configured my home
directory to be encrypted during the installation and found the same
\\ messages in dmesg on that machine also.

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] [NEW] ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\....

2009-11-15 Thread Jesse Michael
Public bug reported:

Binary package hint: ecryptfs-utils

My dmesg is getting spammed with this message--

[15161.939753] ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry 
= 
[
[15169.607182] ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry 
= 
[
[15177.842797] ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry 
= 
[

ProblemType: Bug
Architecture: i386
Date: Sun Nov 15 18:03:25 2009
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
Package: libecryptfs0 81-0ubuntu3
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: ecryptfs-utils
Tags:  ubuntu-unr
Uname: Linux 2.6.31-14-generic i686
XsessionErrors:
 (gnome-settings-daemon:1663): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (gnome-settings-daemon:1663): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (nautilus:1703): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (polkit-gnome-authentication-agent-1:1715): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed

** Affects: ecryptfs-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 ubuntu-unr

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Re: ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\....

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] apport-collect data

2009-11-15 Thread Jesse Michael
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  jesse  1648 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf7db8000 irq 22'
   Mixer name   : 'Realtek ALC269'
   Components   : 'HDA:10ec0269,104383ce,0014'
   Controls  : 14
   Simple ctrls  : 9
DistroRelease: Ubuntu 9.10
HibernationDevice: RESUME=UUID=20200cce-adfb-4148-9910-ccb9a2a3c6ae
InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
MachineType: ASUSTeK Computer INC. 1005HA
Package: linux-image-generic 2.6.31.14.27
PackageArchitecture: i386
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic 
root=UUID=4b7d6579-ed9f-4ac4-9450-16fcdf14dd27 ro quiet splash
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-14-generic N/A
 linux-firmware 1.24
Tags:  ubuntu-unr
Uname: Linux 2.6.31-14-generic i686
UserGroups:
 
XsessionErrors:
 (gnome-settings-daemon:1663): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (gnome-settings-daemon:1663): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (nautilus:1703): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (polkit-gnome-authentication-agent-1:1715): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:2614): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
dmi.bios.date: 09/23/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0905
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 1005HA
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0905:bd09/23/2009:svnASUSTeKComputerINC.:pn1005HA:pvrx.x:rvnASUSTeKComputerINC.:rn1005HA:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
dmi.product.name: 1005HA
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] AlsaDevices.txt

2009-11-15 Thread Jesse Michael

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/35737506/AlsaDevices.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] BootDmesg.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Card0.Codecs.codec.0.txt

2009-11-15 Thread Jesse Michael

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/35737510/Card0.Codecs.codec.0.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Card0.Amixer.values.txt

2009-11-15 Thread Jesse Michael

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/35737508/Card0.Amixer.values.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] CurrentDmesg.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Dependencies.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Lspci.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] PciMultimedia.txt

2009-11-15 Thread Jesse Michael

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/35737522/PciMultimedia.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] IwConfig.txt

2009-11-15 Thread Jesse Michael

** Attachment added: IwConfig.txt
   http://launchpadlibrarian.net/35737519/IwConfig.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] Lsusb.txt

2009-11-15 Thread Jesse Michael

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/35737521/Lsusb.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] ProcCpuinfo.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] ProcInterrupts.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] ProcModules.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] RfKill.txt

2009-11-15 Thread Jesse Michael

** Attachment added: RfKill.txt
   http://launchpadlibrarian.net/35737528/RfKill.txt

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] UdevDb.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] UdevLog.txt

2009-11-15 Thread Jesse Michael

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

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 483364] WifiSyslog.gz

2009-11-15 Thread Jesse Michael

** Attachment added: WifiSyslog.gz
   http://launchpadlibrarian.net/35737533/WifiSyslog.gz

** Tags added: apport-collected

-- 
ecryptfs_lookup: lookup_one_len() returned [-36] on lower_dentry = [\\\
https://bugs.launchpad.net/bugs/483364
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 271771] Re: Changing properties on multiple tracks that are read-only causes error dialog to popup multiple times

2009-10-27 Thread Jesse Michael
This bug hit me pretty badly tonight when I tried to delete around 250
files from my ipod and immediately copy another 350 files onto it when
the filesystem had been inadvertently mounted as root instead of my
user.

As far as I can tell, rhythmbox tried to pop up a permission denied
dialog for each and every file, which caused metacity to freak out and
spin at 100% for over five minutes.

Needless to say, the desktop was totally unresponsive for that time.
Even after metacity settled down, rhythmbox was totally unusable and the
process had to be killed.

-- 
Changing properties on multiple tracks that are read-only causes error dialog 
to popup multiple times
https://bugs.launchpad.net/bugs/271771
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 450981] Re: iwlagn 0000:03:00.0: Can not allocate SKB buffers

2009-10-18 Thread Jesse Michael
It could be my imagination, but it seemed to take more effort to get it
to fail with the version of the driver from the linux-backports-modules-
wireless-karmic-generic package, but I still eventually ended up with
the attached dmesg log.

** Attachment added: dmesg log from 
linux-backports-modules-wireless-karmic-generic driver
   http://launchpadlibrarian.net/33917472/iwlagn-dmesg-backports.log

-- 
iwlagn :03:00.0: Can not allocate SKB buffers
https://bugs.launchpad.net/bugs/450981
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 446596] Re: fsck does not show progress during boot

2009-10-17 Thread Jesse Michael
Even with only a 50G / partition, I was convinced that my laptop was
hanging and it was only on the third reboot when I tried booting up in
recovery mode that I figured out it was because it was fscking because
it'd reached the mount limit.  And I've been using Linux primarily for
over a decade now.

-- 
fsck does not show progress during boot
https://bugs.launchpad.net/bugs/446596
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 453617] Re: kvm hangs at 100% cpu when connecting to forwarded ports

2009-10-16 Thread Jesse Michael

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

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

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

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/33806525/Lsusb.txt

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

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

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

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/33806538/RelatedPackageVersions.txt

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

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

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

-- 
kvm hangs at 100% cpu when connecting to forwarded ports
https://bugs.launchpad.net/bugs/453617
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 453617] [NEW] kvm hangs at 100% cpu when connecting to forwarded ports

2009-10-16 Thread Jesse Michael
Public bug reported:

Binary package hint: qemu-kvm

If kvm is started using two separate -net user,hostfwd=forwarding
rule arguments to forward ports from the host to the client, it won't
complain, but will return a connection refused error and hang at 100%
cpu when trying to connect to either forwarded port.

However, if kvm is started with the hostfwd rules combined together into
a single -net user argument, it works fine.

As an example, this command line doesn't generate any warnings or
errors, but causes kvm to hang for me:

kvm -net nic -net user,hostfwd=tcp:127.0.0.1:-:80 -net
user,hostfwd=tcp:127.0.0.1:-:22 -m 128 -smp 1 -drive
file=disk0.qcow2

... but this command line works fine:

kvm -net nic -net
user,hostfwd=tcp:127.0.0.1:-:80,hostfwd=tcp:127.0.0.1:-:22 -m
128 -smp 1 -drive file=disk0.qcow2

ProblemType: Bug
Architecture: amd64
Date: Fri Oct 16 17:19:59 2009
DistroRelease: Ubuntu 9.10
KvmCmdLine: Error: command ['ps', '-C', 'kvm', '-F'] failed with exit code 1: 
UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
MachineType: Sony Corporation VGN-SZ650N
NonfreeKernelModules: nvidia
Package: kvm (not installed)
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcCmdLine: root=UUID=3ee4953e-48f0-497c-ae78-18cbb18cfef8 ro quiet splash
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.47-generic
SourcePackage: qemu-kvm
Uname: Linux 2.6.31-14-generic x86_64
dmi.bios.date: 07/12/2007
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: R0081S5
dmi.board.asset.tag: N/A
dmi.board.name: VAIO
dmi.board.vendor: Sony Corporation
dmi.board.version: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrR0081S5:bd07/12/2007:svnSonyCorporation:pnVGN-SZ650N:pvrJ002VXGP:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.name: VGN-SZ650N
dmi.product.version: J002VXGP
dmi.sys.vendor: Sony Corporation

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
kvm hangs at 100% cpu when connecting to forwarded ports
https://bugs.launchpad.net/bugs/453617
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 450981] Re: iwlagn 0000:03:00.0: Can not allocate SKB buffers

2009-10-15 Thread Jesse Michael
I'm seeing this also.  When doing heavy network access, iwlagn will
start dumping backtraces and errors about not being able to allocate
SKBs.

My network still seems to be working, but things seem slower than normal
after that happens.

-- 
iwlagn :03:00.0: Can not allocate SKB buffers
https://bugs.launchpad.net/bugs/450981
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 450981] Re: iwlagn 0000:03:00.0: Can not allocate SKB buffers

2009-10-15 Thread Jesse Michael
I had been running 2.6.31-13-generic also, but updated to the latest
kernel available as I'm typing this (2.6.31-14-generic) and ran into the
same problem.

** Attachment added: dmesg log from bootup through iwlagn errors on 
2.6.31-14-generic
   http://launchpadlibrarian.net/33769226/iwlagn-dmesg.log

-- 
iwlagn :03:00.0: Can not allocate SKB buffers
https://bugs.launchpad.net/bugs/450981
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 430277] Re: random icons are colorful while some other notification-area icons are dark

2009-10-14 Thread Jesse Michael
I certainly understand the offered rationale for the decision to make
the system icons greyscale, I just think the decision is painfully bad.

In addition to just being ugly, the loss of color significantly
interferes with the usability of the desktop for me on a daily basis
because it takes me longer to figure out what icon is which when I want
to change a system setting.  I do things like mute the audio, change to
a different wireless network, and check my battery level far more often
than I encounter errors or warnings in the system icon area.  The loss
of color makes all of those slower.  If a warning or error is severe
enough that a split-second faster response time is needed, a
notification window should pop up rather than depending on a system icon
to indicate such a critical error.

That said, I appreciate that Canonical is helping out the community by
employing the blind in their design team.  I just think it might be more
useful to have them work on other aspects of the accessibility project
than picking colors for the desktop.

-- 
random icons are colorful while some other notification-area icons are dark
https://bugs.launchpad.net/bugs/430277
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 431865] Re: can't write mtab when /etc/mtab~ exists

2009-10-14 Thread Jesse Michael
Is the fix actually out to the mirrors?  I ran into this bug and was
still getting hit by it even after updating and rebooting less than an
hour ago.

-- 
can't write mtab when /etc/mtab~ exists
https://bugs.launchpad.net/bugs/431865
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 431865] Re: can't write mtab when /etc/mtab~ exists

2009-10-14 Thread Jesse Michael
Nevermind, I didn't realize there was a difference between Fix
Committed and Published.

-- 
can't write mtab when /etc/mtab~ exists
https://bugs.launchpad.net/bugs/431865
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 381406] Re: liferea has two top-level menus with same accelerator key

2009-05-28 Thread Jesse Michael

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

-- 
liferea has two top-level menus with same accelerator key
https://bugs.launchpad.net/bugs/381406
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 381406] [NEW] liferea has two top-level menus with same accelerator key

2009-05-28 Thread Jesse Michael
Public bug reported:

Binary package hint: liferea

Liferea has two top-level menus that both use S as the accelerator
key: Subscriptions and Search.

Because of this, when the user hits alt-S to select a menu item using
the keyboard, they only have a 50% chance of having the right menu
selected because it appears to alternate between the two.

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: liferea 1.4.26-0ubuntu1
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: liferea
Uname: Linux 2.6.28-11-generic x86_64

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


** Tags: amd64 apport-bug

-- 
liferea has two top-level menus with same accelerator key
https://bugs.launchpad.net/bugs/381406
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 381406] Re: liferea has two top-level menus with same accelerator key

2009-05-28 Thread Jesse Michael
Here's a screenshot showing off the duplicate menus/accelerators.

** Attachment added: liferea.png
   http://launchpadlibrarian.net/27246587/liferea.png

-- 
liferea has two top-level menus with same accelerator key
https://bugs.launchpad.net/bugs/381406
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 375860] [NEW] Alps touchpad re-enables tap-to-click on resync

2009-05-13 Thread Jesse Michael
Public bug reported:

The Alps touchpad driver (drivers/input/mouse/alps.c) is currently
hardcoded to enable hardware tapping when it initializes the hardware
in alps_hw_init()--

   if (alps_tap_mode(psmouse, 1)) {
printk(KERN_WARNING alps.c: Failed to enable hardware 
tapping\n);
return -1;
}

This code is also executed when the driver loses synchronization and
resets.

Because of this, the setting for Enable mouse clicks with touchpad in
the System-Preferences-Mouse-Touchpad configuration dialog is
overridden and tap-to-click is incorrectly enabled if there's ever a
communication error between the driver and the touchpad like--

May 12 23:58:44 icarus kernel: [15900.288359] psmouse.c: GlidePoint at 
isa0060/serio1/input0 lost sync at byte 1
May 12 23:58:44 icarus kernel: [15900.303912] psmouse.c: GlidePoint at 
isa0060/serio1/input0 - driver resynched.

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
HibernationDevice: RESUME=UUID=b7adc0f5-d880-4c1a-95ea-e1df89a77a6f
MachineType: Sony Corporation VGN-SZ650N
Package: linux-image-2.6.28-11-generic 2.6.28-11.42
ProcCmdLine: root=UUID=3ee4953e-48f0-497c-ae78-18cbb18cfef8 ro quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.28-11.42-generic
SourcePackage: linux

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


** Tags: amd64 apport-bug

-- 
Alps touchpad re-enables tap-to-click on resync
https://bugs.launchpad.net/bugs/375860
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 375860] Re: Alps touchpad re-enables tap-to-click on resync

2009-05-13 Thread Jesse Michael

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

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

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

** Attachment added: HalComputerInfo.txt
   http://launchpadlibrarian.net/26664790/HalComputerInfo.txt

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

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/26664792/Lsusb.txt

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

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

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

-- 
Alps touchpad re-enables tap-to-click on resync
https://bugs.launchpad.net/bugs/375860
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 329970] Re: iwlagn km shuts down/gets tainted randomly

2009-03-10 Thread Jesse Michael
I've had this happen to me twice now on Intrepid with 2.6.27-11-generic.
I'm also on an x86_64 box.

-- 
iwlagn km shuts down/gets tainted randomly
https://bugs.launchpad.net/bugs/329970
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 329970] Re: iwlagn km shuts down/gets tainted randomly

2009-03-10 Thread Jesse Michael
It's not fatal for me and I can rmmod and modprobe iwlagn to
successfully reassociate with the network, but the fundamental problem
with not being able to allocate SKB buffers is still there so the
problem happens again after a while.

Here's my full dmesg from bootup including three of these errors.

** Attachment added: iwlagn.dmesg
   http://launchpadlibrarian.net/23729311/iwlagn.dmesg

-- 
iwlagn km shuts down/gets tainted randomly
https://bugs.launchpad.net/bugs/329970
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 322553] Re: [regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-29 Thread Jesse Michael
I grabbed linux-image-2.6.27-11-generic_2.6.27-11.27_amd64.deb and tried
booting up without the blacklist isp1670 entry.

I get these entries in syslog, but my laptop booted up normally
otherwise, so I'd call it a success--

[   18.099400] isp1760 :03:04.0: PCI INT A - GSI 16 (level, low) - IRQ 16
[   18.101494] isp1760: scratch register mismatch 
[   18.101506] isp1760: probe of :03:04.0 failed with error -12

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] [NEW] [regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael
Public bug reported:

I'm running into a regression between 2.6.27-9 and 2.6.29-11 where
loading the isp1760 driver during bootup causes a kernel oops in
isp1761_pci_probe.  This prevents my laptop from continuing to boot up.

Adding blacklist isp1761 to my /etc/modprobe.d/blacklist file allows
me to boot up again.

Description:Ubuntu 8.10
Release:8.10

linux-image-2.6.27-11-generic:
  Installed: 2.6.27-11.25
  Candidate: 2.6.27-11.25
  Version table:
 *** 2.6.27-11.25 0
500 http://us.archive.ubuntu.com intrepid-updates/main Packages
100 /var/lib/dpkg/status

** Affects: linux (Ubuntu)
 Importance: Medium
 Status: Confirmed

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: 1st part of kernel oops
   http://launchpadlibrarian.net/21750364/img_4649.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: 2nd part of kernel oops
   http://launchpadlibrarian.net/21750380/img_4650.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: 3rd part of kernel oops
   http://launchpadlibrarian.net/21750394/img_4651.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: 4th part of kernel oops
   http://launchpadlibrarian.net/21750426/img_4652.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: 5th part of kernel oops
   http://launchpadlibrarian.net/21750430/img_4653.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 322553] Re: modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11

2009-01-28 Thread Jesse Michael

** Attachment added: bootup never gets further than this point
   http://launchpadlibrarian.net/21750435/img_4654.jpg

-- 
[regression] modprobe isp1760 triggers kernel oops during bootup in 2.6.27-11
https://bugs.launchpad.net/bugs/322553
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 303319] Re: package linux-image-2.6.27-9-generic 2.6.27-9.19 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2008-11-28 Thread Jesse Michael
I ran into the same issue after I'd changed the default entry to boot to
saved, uncommented the savedefault=true line, and added the
savedefault option to several kernel entries.

When I upgraded to the new kernel, I got the dialog asking what I wanted
to do about the changes to the menu.lst file and took a look at the
differences between the files.  The button arrangement for viewing
configuration diffs is not exactly ideal and I tried to hit cancel to
go back to change to a different option instead of the non-obvious
finish and it canceled all the way out of the config file management
tool which resulted in a crash report being generated.

-- 
package linux-image-2.6.27-9-generic 2.6.27-9.19 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/303319
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 299690] Re: shell scripts cannot run from bash

2008-11-24 Thread Jesse Michael
I can't duplicate this in a gnome-terminal, but if I ssh localhost and
run it that way, it hangs for me with 100% cpu also.

Here's the stack trace from when I attached to the process with gdb:

#0  0x080943f0 in termsig_sighandler ()
#1  signal handler called
#2  0x0806edda in dispose_word ()
#3  0x0806ef50 in dispose_words ()
#4  0x0806f1b6 in dispose_command ()
#5  0x0806f189 in dispose_command ()
#6  0x0806f136 in dispose_command ()
#7  0x08076ddb in dispose_variable ()
#8  0x08090729 in hash_flush ()
#9  0x08075479 in delete_all_variables ()
#10 0x08060be4 in main ()

-- 
shell scripts cannot run from bash
https://bugs.launchpad.net/bugs/299690
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 271252] Re: aa-logprof generates faulty output messages

2008-11-03 Thread Jesse Michael
I think this patch might fix the problem.  The format of audit messages
that are redirected to syslog because auditd isn't running changed
between Hardy and Intrepid and now have the type= field before the
audit tag like--

Nov  1 22:24:43 box kernel: [  158.113592] type=1503
audit(1225603483.635:5): operation=inode_permission
requested_mask=r:: denied_mask=r:: fsuid=7 name=/proc/7034/net/
pid=7034 profile=/usr/sbin/cupsd

I believe this patch will address the moved type= field as well as
capturing non-matching logfile input instead of printing it to stdout.

** Attachment added: deal with moved type= field and capture non-matching 
input
   http://launchpadlibrarian.net/19274373/logprof-syslog.diff

-- 
aa-logprof generates faulty output messages
https://bugs.launchpad.net/bugs/271252
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 271252] Re: aa-logprof generates faulty output messages

2008-11-02 Thread Jesse Michael
I believe the root cause of this problem is that the lex grammar in
libapparmor used for parsing log messages is not robust enough.

I spent a bit of time instrumenting logprof and found that the garbage
characters are printed in the middle of when it calls
LibAppArmor::parse_record.  This function in libapparmor uses yacc and
lex to parse log messages, but when the lex scanner encounters
characters that don't match the grammar that has been specified, the
default is to print those characters.  I think that's what's happening
here.

-- 
aa-logprof generates faulty output messages
https://bugs.launchpad.net/bugs/271252
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 271252] Re: aa-logprof generates faulty output messages

2008-11-02 Thread Jesse Michael
It looks like the format for audit messages that show up in
/var/log/messages when auditd is not running changed between Hardy and
Intrepid.

The type= part of the message was after the
audit(NN.NNN:NN): part in Hardy, but before it in Intrepid and
that's likely causing the log parsing code to break.

As a temporary workaround, I think installing the auditd package so that
audit logs go to /var/log/audit/audit.log instead of /var/log/messages
might work, but I'd suggest increasing max_log_file in
/etc/audit/auditd.conf if AA is being used.

-- 
aa-logprof generates faulty output messages
https://bugs.launchpad.net/bugs/271252
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 230373] Re: terminator crashed with AttributeError in do_popup()

2008-05-14 Thread Jesse Michael
*** This bug is a duplicate of bug 227934 ***
https://bugs.launchpad.net/bugs/227934

It looks like do_popup expects an event parameter to be passed to it,
but on_vte_popup_menu is ignoring the event parameter that's being
passed to it (unlike the other on_vte_event handlers).

Here's an entirely untested patch that looks reasonable.

** Attachment added: make on_vte_popup_menu pass event parameter to do_popup
   http://launchpadlibrarian.net/14518380/terminator-popup.diff

-- 
terminator crashed with AttributeError in do_popup()
https://bugs.launchpad.net/bugs/230373
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 176301] Re: Should provide a flag to disable ptrace()/LD_PRELOAD

2007-12-14 Thread Jesse Michael
Actually, AA already has a way to specify that LD_PRELOAD (and a number
of other env variables like that) should be cleared on exec.

It's definitely non-intuitive, but that's the distinction between Px and
px (and Ux and ux) in the profile language.

When a Px rule is used to grant execute permission, the bprm_secureexec
lsm hook is used to signal to glibc to that a secure exec is required.
glibc then strips LD_PRELOAD and does some other similar sanitization of
the environment while launching the new process.  I don't remember the
full list of things that are done when a secure exec is requested.

Personally, I think Px (or a clearer syntax version) should be the
default, but a number of wrapper scripts rely on setting LD_PRELOAD or
LD_LIBRARY_PATH and it's tricky to tell why things are failing in that
case.

I don't know if Ix is a valid cleaned variation of the ix permission,
but I'm not sure how much benefit that would bring anyway.

-- 
Should provide a flag to disable ptrace()/LD_PRELOAD
https://bugs.launchpad.net/bugs/176301
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 131952] Re: REJECTING access to capability 'dac_override' (cupsd(6348) profile /usr/sbin/cupsd active /usr/sbin/cupsd)

2007-08-16 Thread Jesse Michael
Granting the dac_override capability in an AA profile doesn't give away
permission to access things not listed explicitly in the profile.

It gives root the ability to read and write files that it does not have
group or other permission to access (e.g. user foo has a file named
/home/foo/bar.txt with permission bits 0600), but the files still need
to be listed in the profile in order for the program to be allowed
access.

-- 
 REJECTING access to capability 'dac_override' (cupsd(6348) profile 
/usr/sbin/cupsd active /usr/sbin/cupsd)
https://bugs.launchpad.net/bugs/131952
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 129145] Re: Add Rhythmbox AppArmor Profile

2007-07-31 Thread Jesse Michael
Hehe, thanks.  All of the above, really.  :)  Generally, the idea is
that if the app processes untrusted data, it should be wrapped in a
profile to limit the scope of the damage that can be done if the app
contains an unknown exploitable vulnerability.

We've mostly targetted network services and clients since those are
pretty common exploit entry points to the system, but profiles for basic
desktop apps are certainly appreciated also.

-- 
Add Rhythmbox AppArmor Profile
https://bugs.launchpad.net/bugs/129145
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 129145] Re: Add Rhythmbox AppArmor Profile

2007-07-30 Thread Jesse Michael
That's for sysv shared memory segments.  You should be able to create a
rule using only /SYSV* rw,.

We're planning on mediating IPC better in the future, but that's not
done yet.

Thanks for working on the profile.  :)

-- 
Add Rhythmbox AppArmor Profile
https://bugs.launchpad.net/bugs/129145
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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