Re: [Bug 1935856] Re: Virtualbox encounters 'Effective UID is not root' when starting a VM

2021-08-01 Thread MarkJBobak
Confirmed!

Sergei, I needed to do sudo chmod u+s, *not* sudo chmod g+s.  g+s didn't
work.

On Sat, Jul 31, 2021 at 4:45 PM Sergey Menshikov <1935...@bugs.launchpad.net>
wrote:

> I confirm that setting suid on VirtualBoxVM mitigates the issue.
> sudo chmod g+s /usr/lib/virtualbox/VirtualBoxVM
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1935856
>
> Title:
>   Virtualbox encounters 'Effective UID is not root' when starting a VM
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1935856/+subscriptions
>
>

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

Title:
  Virtualbox encounters 'Effective UID is not root' when starting a VM

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


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

Re: [Bug 1935856] Re: Virtualbox encounters 'Effective UID is not root' when starting a VM

2021-07-30 Thread MarkJBobak
Nice.  I'm currently away from my computer, but I'll have a look ASAP.

Thanks!

-Mark

On Fri, Jul 30, 2021, 06:41 Oliver Maurhart <1935...@bugs.launchpad.net>
wrote:

> Add-on: I checked the sources provided at
> https://download.virtualbox.org/virtualbox/6.1.22/ and I think the
> responsible code snippet is in
> VirtualBox-6.1.22/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
>
> ```
> $ cat -n
> VirtualBox-6.1.22/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp | grep
> -A 10 2550
>   2550  /*
>   2551   * Check that we're root, if we aren't then the installation
> is butchered.
>   2552   */
>   2553  g_uid = getuid();
>   2554  g_gid = getgid();
>   2555  if (geteuid() != 0 /* root */)
>   2556  supR3HardenedFatalMsg("SUPR3HardenedMain",
> kSupInitOp_RootCheck, VERR_PERMISSION_DENIED,
>   2557"Effective UID is not root (euid=%d
> egid=%d uid=%d gid=%d)",
>   2558geteuid(), getegid(), g_uid, g_gid);
>   2559  #endif /* SUP_HARDENED_SUID */
>   2560
> ```
>
> When making a small demo:
> ```
> $ cat a.c
> #include 
> #include 
>
> #include 
> #include 
>
> int main(int argc, char** argv)  {
>
> printf("Real user id: %d\n", getuid());
> printf("Effective user id: %d\n", geteuid());
>
> int res = openat(AT_FDCWD, "/dev/vboxnetctl", O_RDWR);
>
> if (res == -1) {
> perror(NULL);
> return 1;
> }
> printf("Opened file.\n");
> return 0;
> }
> ```
> with
>
> ```
> $ gcc a.c
> $ sudo chown root: a.out
> $ ls -l a.out
> -rwxrwxr-x 1 root root 16312 Jul 30 12:05 a.out
>
> $ ./a.out
> Real user id: 1000
> Effective user id: 1000
> Operation not permitted
>
> $ sudo ./a.out
> Real user id: 0
> Effective user id: 0
> Opened file.
>
> $ sudo chmod u+s a.out
> $ ./a.out
> Real user id: 1000
> Effective user id: 0
> Opened file.
> ```
>
> However, regardless if I provide each and every executable in
> /usr/lib/virtualbox/* the sticky bit with `chmod u+s` this error keeps
> popping up.
>
> X11 showing the error dialog refers to /usr/lib/virtualbox/VBoxManage.
> But it seems very resilient to any of my attempts.
>
> BUT: running VBoxManage as root (e.g. `sudo VirtualBox`) works like
> charm.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1935856
>
> Title:
>   Virtualbox encounters 'Effective UID is not root' when starting a VM
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1935856/+subscriptions
>
>

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

Title:
  Virtualbox encounters 'Effective UID is not root' when starting a VM

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


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

[Bug 1935856] [NEW] Virtualbox encounters 'Effective UID is not root' when starting a VM

2021-07-12 Thread MarkJBobak
Public bug reported:

I can run Virtualbox, and create a new VM, but when I try to run it, I 
encounter:
Effective UID is not root (euid=1000 egid=1000 uid=1000 gid=1000) (rc=-10)

Please try reinstalling VirtualBox.

where: SUPR3HardenedMain what: 2 VERR_PERMISSION_DENIED (-10) -
Permission denied.

I have tried re-installing Virtualbox:
sudo apt purge virtualbox-*
sudo apt install virtualbox

but no help.

I made sure my user was added to vboxusers group, but also no help
there.

Help?

-Mark

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: virtualbox 6.1.22-dfsg-2~ubuntu1.21.04.1
ProcVersionSignature: Ubuntu 5.11.0-24.25-generic 5.11.22
Uname: Linux 5.11.0-24-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
ApportVersion: 2.20.11-0ubuntu65.1
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Mon Jul 12 13:36:37 2021
InstallationDate: Installed on 2020-08-31 (315 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
SourcePackage: virtualbox
UpgradeStatus: Upgraded to hirsute on 2021-05-10 (63 days ago)

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


** Tags: amd64 apport-bug hirsute package-from-proposed

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

Title:
  Virtualbox encounters 'Effective UID is not root' when starting a VM

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

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

Re: [Bug 1933876] Re: package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade: installed zfsutils-linux package post-installation script subprocess returned error exit status 1

2021-07-03 Thread MarkJBobak
Thanks Colin!

On Tue, Jun 29, 2021, 10:25 Colin Ian King <1933...@bugs.launchpad.net>
wrote:

> By the way, one can force ZFS to mount on non-empty directories using
> the -O option (Perform an overlay mount. Allows mounting in non-empty
> mountpoint.)
>
> See man 8 zfs-mount and mount for more details.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1933876
>
> Title:
>   package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade:
>   installed zfsutils-linux package post-installation script subprocess
>   returned error exit status 1
>
> To manage notifications about this bug go to:
>
> https://bugs.launchpad.net/ubuntu/+source/zfs-linux/+bug/1933876/+subscriptions
>

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

Title:
  package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade:
  installed zfsutils-linux package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1933876] [NEW] package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade: installed zfsutils-linux package post-installation script subprocess returned error exit status 1

2021-06-28 Thread MarkJBobak
Public bug reported:

Not surethis happened during 'do-release-upgrade' from 20.10->21.04.

ProblemType: Package
DistroRelease: Ubuntu 20.10
Package: zfsutils-linux 0.8.4-1ubuntu11.2
ProcVersionSignature: Ubuntu 5.8.0-59.66-generic 5.8.18
Uname: Linux 5.8.0-59-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu50.7
Architecture: amd64
CasperMD5CheckResult: skip
Date: Mon Jun 28 15:21:54 2021
Ec2AMI: ami-0e3e867356002f26c
Ec2AMIManifest: (unknown)
Ec2AvailabilityZone: us-east-1c
Ec2InstanceType: t2.micro
Ec2Kernel: unavailable
Ec2Ramdisk: unavailable
ErrorMessage: installed zfsutils-linux package post-installation script 
subprocess returned error exit status 1
Python3Details: /usr/bin/python3.8, Python 3.8.6, python3-minimal, 
3.8.6-0ubuntu1
PythonDetails: N/A
RebootRequiredPkgs: libc6
RelatedPackageVersions:
 dpkg 1.20.5ubuntu2
 apt  2.1.10ubuntu0.3
SourcePackage: zfs-linux
Title: package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade: 
installed zfsutils-linux package post-installation script subprocess returned 
error exit status 1
UpgradeStatus: Upgraded to groovy on 2021-06-28 (0 days ago)
mtime.conffile..etc.logrotate.d.apport: 2016-08-18T14:14:00.096503

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


** Tags: amd64 apport-package ec2-images groovy third-party-packages

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

Title:
  package zfsutils-linux 0.8.4-1ubuntu11.2 failed to install/upgrade:
  installed zfsutils-linux package post-installation script subprocess
  returned error exit status 1

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

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

[Bug 1857956] [NEW] package linux-image-5.3.0-24-generic 5.3.0-24.26 failed to install/upgrade: installed linux-image-5.3.0-24-generic package pre-removal script subprocess returned error exit status

2019-12-30 Thread MarkJBobak
Public bug reported:

Sorry, not sure what happened in this case.  I just got a pop-up saying
an error occurred.

ProblemType: Package
DistroRelease: Ubuntu 19.10
Package: linux-image-5.3.0-24-generic 5.3.0-24.26
ProcVersionSignature: Ubuntu 5.3.0-24.26-generic 5.3.10
Uname: Linux 5.3.0-24-generic x86_64
ApportVersion: 2.20.11-0ubuntu8.2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  mjb3226 F pulseaudio
 /dev/snd/pcmC0D0c:   mjb3226 F...m pulseaudio
Date: Tue Dec 31 01:54:41 2019
ErrorMessage: installed linux-image-5.3.0-24-generic package pre-removal script 
subprocess returned error exit status 1
HibernationDevice: RESUME=none
MachineType: Dell Inc. XPS 15 7590
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.3.0-24-generic root=ZFS=ubuntu/root ro 
quiet splash vt.handoff=1
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.7, Python 3.7.5, python3-minimal, 3.7.5-1
PythonDetails: N/A
RelatedPackageVersions: grub-pc N/A
SourcePackage: linux
Title: package linux-image-5.3.0-24-generic 5.3.0-24.26 failed to 
install/upgrade: installed linux-image-5.3.0-24-generic package pre-removal 
script subprocess returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/25/2019
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.3.3
dmi.board.name: 0T8KGX
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.3:bd09/25/2019:svnDellInc.:pnXPS157590:pvr:rvnDellInc.:rn0T8KGX:rvrA00:cvnDellInc.:ct10:cvr:
dmi.product.family: XPS
dmi.product.name: XPS 15 7590
dmi.product.sku: 0905
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-package eoan

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

Title:
  package linux-image-5.3.0-24-generic 5.3.0-24.26 failed to
  install/upgrade: installed linux-image-5.3.0-24-generic package pre-
  removal script subprocess returned error exit status 1

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

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

[Bug 761817] Re: Pulseaudio crashes when USB headphones are plugged in

2011-04-15 Thread MarkJBobak
** Visibility changed to: Public

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

Title:
  Pulseaudio crashes when USB headphones are plugged in

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


[Bug 453444] Re: /var/log fills up with "all normal" messages @ about 575/sec fill up the available space

2009-11-16 Thread MarkJBobak
Hi all,

This bug has been a real pain in my backside.  I think I have a
reasonable, short-term workaround.  I'm *not* suggesting this is a
permanent fix for anyone, nor should this be applied to any source trees
anywhere.

This is strictly for someone who, like me, is suffering because of this,
and wants a slightly better solution than simply killing off logging
systemwide till a proper patch is available.

Here's my hack:
--- /etc/init/rsyslog-kmsg.conf.orig2009-11-17 01:40:07.0 -0500
+++ /etc/init/rsyslog-kmsg.conf 2009-11-17 01:42:36.0 -0500
@@ -18,7 +18,7 @@
 chown syslog:syslog /var/run/rsyslog/kmsg
 end script
 
-exec dd bs=1 if=/proc/kmsg of=/var/run/rsyslog/kmsg
+exec dd bs=1 if=`grep -v "CPU[0-7]: Temperature" /proc/kmsg` 
of=/var/run/rsyslog/kmsg
 
 post-stop script
 rm /var/run/rsyslog/kmsg

Or, for people who don't like dealing w/ patch files, go to /etc/init, make a 
copy of rsyslog-kmsg.conf.  Then, edit rsyslog-kmsg.conf, find the line near 
the end of the file that looks like:
dd bs=1 if=/proc/kmsg of=/var/run/rsyslog/kmsg

and replace it with:
exec dd bs=1 if=`grep -v "CPU[0-7]: Temperature" /proc/kmsg` 
of=/var/run/rsyslog/kmsg

So, all this does is filter out *all* warnings referring to CPU
temperature fluctuations (for boxes up to 8 CPUs).  Don't look at me if
you don't see the warnings and end up flaming out your CPU. :-)

Hope this helps someone until such time that a proper fix is available.

-Mark

-- 
/var/log fills up with "all normal" messages @ about 575/sec fill up the 
available space
https://bugs.launchpad.net/bugs/453444
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 463276] Re: CPU Temperature warning spamming syslog

2009-11-13 Thread MarkJBobak
*** This bug is a duplicate of bug 453444 ***
https://bugs.launchpad.net/bugs/453444

I'm also having this problem.

Any workarounds available?

-Mark

-- 
CPU Temperature warning spamming syslog
https://bugs.launchpad.net/bugs/463276
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 419354] Re: gnome-settings-daemon crashed with SIGSEGV in g_unix_mount_get_mount_path()

2009-11-02 Thread MarkJBobak
Same here.

-- 
gnome-settings-daemon crashed with SIGSEGV in g_unix_mount_get_mount_path()
https://bugs.launchpad.net/bugs/419354
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 428211] [NEW] package mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1 failed to install/upgrade: trying to overwrite `/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is als

2009-09-11 Thread MarkJBobak
Public bug reported:

Binary package hint: mythtv

I ran update-manager, and ran into this problem.

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: trying to overwrite 
`/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is also in 
package mythtv-theme-mythcenter-wide
NonfreeKernelModules: nvidia
Package: mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1
PackageArchitecture: all
SourcePackage: mythtv
Title: package mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1 failed to 
install/upgrade: trying to overwrite 
`/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is also in 
package mythtv-theme-mythcenter-wide
Uname: Linux 2.6.28-15-generic i686

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


** Tags: apport-package i386

-- 
package mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1 failed to 
install/upgrade: trying to overwrite 
`/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is also in 
package mythtv-theme-mythcenter-wide
https://bugs.launchpad.net/bugs/428211
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 428211] Re: package mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1 failed to install/upgrade: trying to overwrite `/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is also

2009-09-11 Thread MarkJBobak

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/31692134/Dependencies.txt

** Attachment added: "DpkgTerminalLog.gz"
   http://launchpadlibrarian.net/31692136/DpkgTerminalLog.gz

-- 
package mythtv-common 0.22.0~trunk21739-0ubuntu0~mythbuntu1 failed to 
install/upgrade: trying to overwrite 
`/usr/share/mythtv/themes/MythCenter-wide/ui/background.png', which is also in 
package mythtv-theme-mythcenter-wide
https://bugs.launchpad.net/bugs/428211
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 188742] Re: mythfrontend.real crashed with SIGSEGV

2008-02-03 Thread MarkJBobak

** Attachment added: "CoreDump.gz"
   http://launchpadlibrarian.net/11745390/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/11745391/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/11745392/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/11745393/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://launchpadlibrarian.net/11745394/Registers.txt

** Visibility changed to: Public

-- 
mythfrontend.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/188742
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 188742] [NEW] mythfrontend.real crashed with SIGSEGV

2008-02-03 Thread MarkJBobak
Public bug reported:

Binary package hint: mythtv

mythfrontend seemed to get confused when fast forwarding.  Before the
crash, console where I started mythfrontend flooded with messages like:


2008-02-03 15:37:46.420 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.432 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.448 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.460 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.472 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.485 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.502 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.514 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!
2008-02-03 15:37:46.525 NVP::AddAudioData():p1: Audio buffer overflow, audio 
data lost!

When I hit CTRL-C,  I got the SIGSEGV.

-Mark

ProblemType: Crash
Architecture: amd64
CrashCounter: 1
Date: Sun Feb  3 15:37:46 2008
Disassembly: 0x7f39907d47fb:
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/mythfrontend.real
NonfreeKernelModules: nvidia
Package: mythtv-frontend 0.20.2+fixes15513-0ubuntu4 [modified: 
usr/share/mythtv/main_settings.xml]
PackageArchitecture: amd64
ProcCmdline: /usr/bin/mythfrontend.real
ProcCwd: /home/mjb
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: mythtv
Stacktrace: #0  0x7f39907d47fb in ?? ()
StacktraceTop: ?? ()
ThreadStacktrace:
 
Title: mythfrontend.real crashed with SIGSEGV
Uname: Linux mythbox 2.6.24-5-generic #1 SMP Thu Jan 24 19:29:14 UTC 2008 
x86_64 GNU/Linux
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin mythtv netdev 
plugdev powerdev scanner video

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


** Tags: apport-crash need-amd64-retrace

-- 
mythfrontend.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/188742
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 185033] Re: mythbackend crashes with symbol lookup error: /usr/bin/mythbackend: undefined symbol: stat64

2008-01-23 Thread MarkJBobak
Yeah, when I woke up this morning, I tried again and got the update.
Thanks for the pointer on the ability to change which repository you
point to.  Could be useful in the future.

-Mark

-- 
mythbackend crashes with  symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
https://bugs.launchpad.net/bugs/185033
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 185033] Re: mythbackend crashes with symbol lookup error: /usr/bin/mythbackend: undefined symbol: stat64

2008-01-23 Thread MarkJBobak
Ok, I found this page:
https://launchpad.net/ubuntu/hardy/+source/mythtv/0.20.2+fixes15513-0ubuntu4

And I saw that it was marked as "Pending" till about 5 minutes ago, and
now it's "Published", but running update-manager and clicking "Check"
still doesn't pick up this version.

Sorry if I'm a little clueless, I'm just trying to better understand how
the system works.

-- 
mythbackend crashes with  symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
https://bugs.launchpad.net/bugs/185033
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 185033] Re: mythbackend crashes with symbol lookup error: /usr/bin/mythbackend: undefined symbol: stat64

2008-01-23 Thread MarkJBobak
Ok, how do I get that version?

I'm currently at 0.20.2+fixes15513-0ubuntu3.

I tried running update-manager, and it doesn't show any updates for
mythtv.

I tried:
[EMAIL PROTECTED]:~$ sudo apt-get install mythtv=0.20.2+fixes15513-0ubuntu4
and got:
[sudo] password for mjb: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
E: Version '0.20.2+fixes15513-0ubuntu4' for 'mythtv' was not found

Any clues on how to upgrade to the fixed version??

Thanks!

-- 
mythbackend crashes with  symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
https://bugs.launchpad.net/bugs/185033
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 185033] Re: mythbackend crashes with symbol lookup error: /usr/bin/mythbackend: undefined symbol: stat64

2008-01-22 Thread MarkJBobak
Here's a subset of dpkg.log from last night's update.


** Attachment added: "dpkg.log_latest_hardy_update"
   http://launchpadlibrarian.net/11487899/dpkg.log_latest_hardy_update

-- 
mythbackend crashes with  symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
https://bugs.launchpad.net/bugs/185033
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 185033] mythbackend crashes with symbol lookup error: /usr/bin/mythbackend: undefined symbol: stat64

2008-01-22 Thread MarkJBobak
Public bug reported:

Binary package hint: mythtv-backend

I'm running Hardy Heron Alpha 3, and earlier today, after upgrading
several packages including some MythTV packages, I started having this
problem.

mythbackend starts up and runs fine, until I try to connect to it via
mythfrontend.

Steps to reproduce:
1.)  Start mythbackend with:  sudo /etc/init.d/mythtv-backend start
2.)  Start mythfrontend.  At this point backend is still up and running.
3.)  Go to "Media Library"->"Watch Recordings".
4.)  As soon as I hit "Watch Recordings", mythbackend crashes with:
select(18, [10 11 17], [], [], {19, 249816}2008-01-22 05:27:17.284 
MainServer::HandleAnnounce Monitor
2008-01-22 05:27:17.284 adding: mythbox as a client (events: 1)
/usr/bin/mythbackend: symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
) = ? ERESTARTNOHAND (To be restarted)

This reproduces every time, with 100% reliability, on my machine.

Let me know if you need me to provide other information.

Thanks!

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

-- 
mythbackend crashes with  symbol lookup error: /usr/bin/mythbackend: undefined 
symbol: stat64
https://bugs.launchpad.net/bugs/185033
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 134801] Re: Mythplugins 0.20.2 SRU

2007-09-11 Thread MarkJBobak
Worked great for me!  Clean and easy, and poof!  Guide data from
SchedulesDirect!  (And a bonus, working MythWeather!)

-- 
Mythplugins 0.20.2 SRU 
https://bugs.launchpad.net/bugs/134801
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 106846] Re: When using ATI binary driver, Menu Item has wrong 'command' specified for fireglcontrolpanel

2007-04-16 Thread MarkJBobak
Of course, that should say "to be able to write to
/etc/X11/xorg.conf,..."

-Mark

-- 
When using ATI binary driver, Menu Item has wrong 'command' specified for 
fireglcontrolpanel
https://bugs.launchpad.net/bugs/106846
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