[Bug 1766555] Re: openscad package missing from 18.04
I suggest to just use the AppImage provided on the scad download page. The latest build at the moment, is OpenSCAD-2019.01-RC3.1-x86_64.AppImage Just chmod 755 it, and then run. Much easier than all the fuss listed above. Runs fine for me on Ubuntu 18.04. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1766555 Title: openscad package missing from 18.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/openscad/+bug/1766555/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1068650] Re: Radeon hd 2400 perfectly work on 12.04 in 12.10 stop to work
*** This bug is a duplicate of bug 1058040 *** https://bugs.launchpad.net/bugs/1058040 Check out this workaround: http://ubuntuforums.org/showthread.php?t=2073279 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1068650 Title: Radeon hd 2400 perfectly work on 12.04 in 12.10 stop to work To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1068650/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 992878] Re: Corrupt left bottom of screen when resizing Terminal
Same problem here - also on AMD64 with the Ubuntu fglrx driver, running lightdm and lxde, and when resizing lxterminal windows. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/992878 Title: Corrupt left bottom of screen when resizing Terminal To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-terminal/+bug/992878/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 317294] Re: [needs-packaging] htpdate package request as alternative to ntpdate and rdate clients
Thank you! On 01/17/2012 02:09 AM, Liviu Andronic wrote: > I recently published binaries for htpdate on my Launchpad PPA. [1] . Is > it possible to contribute them to the main Ubuntu repos? > > [1] https://launchpad.net/~landronimirc/+archive/htpdate > -- Associate.com - THE Place to Associate! http://freegroups.net Is Your E-mail Group Here? See http://freegroups.net/faq/your-group-here.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/317294 Title: [needs-packaging] htpdate package request as alternative to ntpdate and rdate clients To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+bug/317294/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 313163] Re: [SOLVED] willowng will not start
Yep - I'm on it. Thanks again! On 03/09/2011 08:36 AM, Mark Cahill wrote: > That works. Does that help you work towards a fix? > -- Associate.com - THE Place to Associate! http://freegroups.net Is Your E-mail Group Here? See http://freegroups.net/faq/your-group-here.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/313163 Title: [SOLVED] willowng will not start -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 313163] Re: [SOLVED] willowng will not start
Please edit /etc/willowng/willowng.conf and specify the line: interface=127.0.0.1 Then type: sudo /etc/init.d/willowng start Then type: ps axu | grep willowng You should now see a process, and be able to run willowng-config to set it up the rest of the way. Please confirm...This works for me in a fresh install of Natty. Thanks. On 03/08/2011 08:23 AM, Mark Cahill wrote: > "If I click on System/Administration/Content filter I get a message > saying the following "Content filter not running! Start content > filter?". I then click on yes (to start the filter). Then the message > re-appears and unfortunately WillowNG will not start." > > Clicking no causes the following traceback: > Traceback (most recent call last): >File "/usr/bin/willowng-config", line 200, in on_mainwindow_destroy > gtk.main_quit() > RuntimeError: called outside of a mainloop > > Also, the process hangs until Ctrl-C is issued. > -- Associate.com - THE Place to Associate! http://freegroups.net Is Your E-mail Group Here? See http://freegroups.net/faq/your-group-here.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/313163 Title: [SOLVED] willowng will not start -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 313163] Re: [SOLVED] willowng will not start
Thanks for persisting with this issue...I've found something on a virtual install of Natty that may be what you're seeing. Some missed dependency. More later... On 03/08/2011 08:23 AM, Mark Cahill wrote: > The exact traceback is as follows: > > Traceback (most recent call last): >File "/usr/bin/willowng-config", line 212, in > foo = MainWindow() >File "/usr/bin/willowng-config", line 71, in __init__ > os.execvp('willowng-config', ()) >File "/usr/lib/python2.6/os.py", line 344, in execvp > _execvpe(file, args) >File "/usr/lib/python2.6/os.py", line 380, in _execvpe > func(fullname, *argrest) > ValueError: execv() arg 2 must not be empty > > line 71 of /usr/bin/willowng-config reads: > os.execvp('willowng-config', ()) > > Per the Python documentation for the os module: > "The various exec*() functions take a list of arguments for the new program > loaded into the process. In each case, the first of these arguments is passed > to the new program as its own name rather than as an argument a user may have > typed on a command line. For the C programmer, this is the argv[0] passed to > a program’s main(). For example, os.execv('/bin/echo', ['foo', 'bar']) will > only print bar on standard output; foo will seem to be ignored." > > Changing line 71 of /usr/bin/willowng-config to the following allows it to > continue: > os.execvp('willowng-config', ['willowng-config']) > > This places us in the original state which caused this ticket to be > opened, that is, > > "If I click on System/Administration/Content filter I get a message > saying the following "Content filter not running! Start content > filter?". I then click on yes (to start the filter). Then the message > re-appears and unfortunately WillowNG will not start." > > Clicking no causes the following traceback: > Traceback (most recent call last): >File "/usr/bin/willowng-config", line 200, in on_mainwindow_destroy > gtk.main_quit() > RuntimeError: called outside of a mainloop > > Also, the process hangs until Ctrl-C is issued. > -- Associate.com - THE Place to Associate! http://freegroups.net Is Your E-mail Group Here? See http://freegroups.net/faq/your-group-here.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/313163 Title: [SOLVED] willowng will not start -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 313163] Re: [SOLVED] willowng will not start
I something else running on port 3128 (squid)? When you telnet to that port and type "help", what happens? ~ # telnet 192.168.1.1 3128 Trying 192.168.1.1... Connected to 192.168.1.1. Escape character is '^]'. help Error response Error response Error code 400. Message: Bad request syntax ('help'). Error code explanation: 400 = Bad request syntax or unsupported method. Connection closed by foreign host. On 03/07/2011 10:34 PM, Mark Cahill wrote: > Oops. That was from 0.4. Here's the traceback from 0.6, released 36 > minutes ago: > > Traceback (most recent call last): File "/usr/bin/willowng-config", line > 212, in > foo = MainWindow() >File "/usr/bin/willowng-config", line 48, in __init__ > self.tree.get_widget('bindip').insert_text(self.config['interface'], > position=0) > KeyError: 'interface' > -- Associate.com - THE Place to Associate! http://freegroups.net Is Your E-mail Group Here? See http://freegroups.net/faq/your-group-here.html -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/313163 Title: [SOLVED] willowng will not start -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 225648] Re: there is no manpage about willowng, willowng-config
** Changed in: willowng (Ubuntu) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/225648 Title: there is no manpage about willowng, willowng-config -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 225647] Re: can not configure willowng not showing up in the menu not starting from terminal
** Changed in: willowng (Ubuntu) Status: In Progress => Fix Committed ** Changed in: willowng (Ubuntu) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/225647 Title: can not configure willowng not showing up in the menu not starting from terminal -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 318766] Re: D-Bus Policy needs checking
** Changed in: willowng (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/318766 Title: D-Bus Policy needs checking -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 313163] Re: [SOLVED] willowng will not start
** Changed in: baltix Status: New => Fix Released ** Changed in: willowng (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/313163 Title: [SOLVED] willowng will not start -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 225648] Re: there is no manpage about willowng, willowng-config
** Changed in: willowng (Ubuntu) Status: Confirmed => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/225648 Title: there is no manpage about willowng, willowng-config -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 690014] Re: package willowng 0.4-0ubuntu2 failed to install/upgrade: ''への書き込みに失敗しました: Success
** Changed in: willowng (Ubuntu) Status: New => Fix Committed ** Changed in: willowng (Ubuntu) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/690014 Title: package willowng 0.4-0ubuntu2 failed to install/upgrade: ''への書き込みに失敗しました: Success -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 538417] Re: clamav-daemon 0.96~rc1+dfsg-0ubuntu1 uses deprecated option
The fix didn't make it to Karmic users, who are affected by it. The fix is documented here: http://ubuntuforums.org/showthread.php?p=9818318#post9818318 -- clamav-daemon 0.96~rc1+dfsg-0ubuntu1 uses deprecated option https://bugs.launchpad.net/bugs/538417 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 313163] Re: [SOLVED] willowng will not start
** Changed in: willowng Importance: Undecided => High -- [SOLVED] willowng will not start https://bugs.launchpad.net/bugs/313163 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 225647] Re: can not configure willowng not showing up in the menu not starting from terminal
The bulk of this problem (not starting from terminal) has been fixed. See the download link at https://launchpad.net/willowng The menu problem is confirmed/reproduced, and will be resolved fairly soon. Thanks! ** Changed in: willowng (Ubuntu) Status: Triaged => In Progress ** Changed in: willowng (Ubuntu) Assignee: (unassigned) => glenstewart (glen-stewart) -- can not configure willowng not showing up in the menu not starting from terminal https://bugs.launchpad.net/bugs/225647 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 313163] Re: [SOLVED] willowng will not start
** Summary changed: - willowng will not start + [SOLVED] willowng will not start -- [SOLVED] willowng will not start https://bugs.launchpad.net/bugs/313163 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 129223] Re: willowng crashed with ImportError in ()
** Changed in: willowng (Ubuntu) Assignee: (unassigned) => glenstewart (glen-stewart) ** Changed in: willowng (Ubuntu) Status: New => Fix Released -- willowng crashed with ImportError in () https://bugs.launchpad.net/bugs/129223 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 313163] Re: willowng will not start
** Changed in: willowng (Ubuntu) Assignee: glenstewart (glen-stewart) => (unassigned) -- willowng will not start https://bugs.launchpad.net/bugs/313163 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 605776] Re: package willowng 0.4-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
WillowNG 0.5 is now released, resolving this reported bug. See https://launchpad.net/willowng to download this release. ** Changed in: willowng (Ubuntu) Assignee: (unassigned) => glenstewart (glen-stewart) ** Changed in: willowng (Ubuntu) Status: New => Fix Released -- package willowng 0.4-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 https://bugs.launchpad.net/bugs/605776 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 313163] Re: willowng will not start
WillowNG 0.5 is now released, resolving this reported bug. See https://launchpad.net/willowng to download this release. ** Changed in: willowng Assignee: (unassigned) => glenstewart (glen-stewart) ** Changed in: willowng (Ubuntu) Assignee: (unassigned) => glenstewart (glen-stewart) ** Changed in: willowng Status: New => Fix Released -- willowng will not start https://bugs.launchpad.net/bugs/313163 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 313163] Re: willowng will not start
Modifications to WillowNG are in the works, to resolve startup and performance issues. A working prototype is already in testing. I'm now focusing on administration issues related to the changes made to the filtering engine. This is an interesting project, as the original Willow and WillowNG both had positive,complimentary, features - but neither tool was adequate as they stood... In general, the original Willow outperformed the Squid-Dansguardian combination, and slightly bested Tinyproxy (perhaps in the margin of test error). Willow's filtering engine was very well designed. WillowNG uses a HTTPServer (as proxy) module from Python that resolves some HTTP RANGE problems that make the original Willow unsuitable for large file transfers and data streaming (eg. Apple and Microsoft software updates, and MP3 streaming). By merging the original Willow filtering engine into WillowNG, the new WIllowNG outperforms the present version dramatically - it seems to be a viable solution, so far. In short, the bug reported here is understood and resolved in the prototype. No ETA is promised at this point for the fix / enhancements noted. It will be announced when it's ready. -- willowng will not start https://bugs.launchpad.net/bugs/313163 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 378762] Re: willowng-config crashed with RuntimeError in on_mainwindow_destroy()
*** This bug is a duplicate of bug 257248 *** https://bugs.launchpad.net/bugs/257248 WillowNG itself is the problem - the service is not starting because of various script defects. Since access to the primary bug report is being denied, I am uploading a patch to the WillowNG tool at the forum link you gave. -- willowng-config crashed with RuntimeError in on_mainwindow_destroy() https://bugs.launchpad.net/bugs/378762 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 501205] Re: mod_musicindex sends files to FireFox named _vXfgRuj.m3u.part, and won't play in some players
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/37259606/Dependencies.txt ** Attachment added: "XsessionErrors.txt" http://launchpadlibrarian.net/37259607/XsessionErrors.txt -- mod_musicindex sends files to FireFox named _vXfgRuj.m3u.part, and won't play in some players https://bugs.launchpad.net/bugs/501205 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 501205] [NEW] mod_musicindex sends files to FireFox named _vXfgRuj.m3u.part, and won't play in some players
Public bug reported: Binary package hint: libapache-mod-musicindex The .part suffix is wrong. The file should only be named _vXfgRuj.m3u (by mod_musicindex), and then it will work fine. This should be fixed in the code. ProblemType: Bug Architecture: amd64 Date: Mon Dec 28 23:06:32 2009 DistroRelease: Ubuntu 9.10 NonfreeKernelModules: fglrx Package: libapache2-mod-musicindex 1.2.5-1 ProcEnviron: LANGUAGE=en PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-16.53-generic SourcePackage: libapache-mod-musicindex Uname: Linux 2.6.31-16-generic x86_64 ** Affects: libapache-mod-musicindex (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- mod_musicindex sends files to FireFox named _vXfgRuj.m3u.part, and won't play in some players https://bugs.launchpad.net/bugs/501205 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 501175] Re: aufs needs to be added as a local filesystem
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/37255825/Dependencies.txt ** Attachment added: "XsessionErrors.txt" http://launchpadlibrarian.net/37255826/XsessionErrors.txt -- aufs needs to be added as a local filesystem https://bugs.launchpad.net/bugs/501175 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 501175] [NEW] aufs needs to be added as a local filesystem
Public bug reported: Binary package hint: tiger Edit /usr/lib/tiger/systems/Linux/2/gen_mounts and add ...under # Valid local filesystems [ "$1" = "aufs" ] && LOCAL=0 ProblemType: Bug Architecture: amd64 Date: Mon Dec 28 19:32:28 2009 DistroRelease: Ubuntu 9.10 NonfreeKernelModules: fglrx Package: tiger 1:3.2.2-11ubuntu1 [modified: usr/lib/tiger/systems/Linux/2/gen_mounts] ProcEnviron: LANGUAGE=en PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.31-16.53-generic SourcePackage: tiger Uname: Linux 2.6.31-16-generic x86_64 ** Affects: tiger (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- aufs needs to be added as a local filesystem https://bugs.launchpad.net/bugs/501175 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 433764] [NEW] After upgrade, clamav's clamd gives "ERROR: initgroups() failed."
Public bug reported: Binary package hint: clamav apparmor's usr.sbin.clamd file has an incomplete setting to allow clamd to run. In /etc/apparmor.d/usr.sbin.clamd ...add this line: capability dac_override, ...after /usr/sbin/clamd { #include #include Then do: sudo /etc/init.d/apparmor reload sudo /etc/init.d/clamav-daemon start ** Affects: clamav (Ubuntu) Importance: Undecided Status: New -- After upgrade, clamav's clamd gives "ERROR: initgroups() failed." https://bugs.launchpad.net/bugs/433764 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 385081] Re: package hal 0.5.12~rc1+git20090403-0ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 1
Same problem here...AMD64 on Kubuntu 9.04 Setting up libhal1 (0.5.12~rc1+git20090403-0ubuntu2) ... Setting up libhal-dev (0.5.12~rc1+git20090403-0ubuntu2) ... Setting up libhal-storage1 (0.5.12~rc1+git20090403-0ubuntu2) ... Setting up libhal-storage-dev (0.5.12~rc1+git20090403-0ubuntu2) ... Setting up hal (0.5.12~rc1+git20090403-0ubuntu2) ... * Reloading system message bus config... [ OK ] * Starting Hardware abstraction layer haldinvoke-rc.d: initscript hal, action "start" failed. dpkg: error processing hal (--configure): subprocess post-installation script returned error exit status 1 Processing triggers for libc6 ... ldconfig deferred processing now taking place Errors were encountered while processing: hal E: Sub-process /usr/bin/dpkg returned an error code (1) -- package hal 0.5.12~rc1+git20090403-0ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 1 https://bugs.launchpad.net/bugs/385081 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 382027] Re: ngircd init script fails to start ngircd properly in Jaunty
** Attachment added: "/etc/init.d/ngircd" http://launchpadlibrarian.net/27318546/ngircd -- ngircd init script fails to start ngircd properly in Jaunty https://bugs.launchpad.net/bugs/382027 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 382027] [NEW] ngircd init script fails to start ngircd properly in Jaunty
Public bug reported: Binary package hint: ngircd There are several shell scripting errors in the ngircd init script, which prevent proper operation. This revised script works for me. ProblemType: Bug Architecture: amd64 Dependencies: libgcc1 1:4.3.3-5ubuntu4 gcc-4.3-base 4.3.3-5ubuntu4 findutils 4.4.0-2ubuntu4 libc6 2.9-4ubuntu6 DistroRelease: Ubuntu 9.04 NonfreeKernelModules: fglrx Package: ngircd 0.12.1-2 ProcEnviron: LANGUAGE=en PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: ngircd Uname: Linux 2.6.28-11-generic x86_64 ** Affects: ngircd (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- ngircd init script fails to start ngircd properly in Jaunty https://bugs.launchpad.net/bugs/382027 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 382026] Re: dansguardian installs with no files
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/27318420/Dependencies.txt -- dansguardian installs with no files https://bugs.launchpad.net/bugs/382026 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 382026] [NEW] dansguardian installs with no files
Public bug reported: Binary package hint: dansguardian When Dansguardian installs on a Jaunty AMD64 system, the directory structure it creates in /etc/dansguardian is a set of empty directories. There is not even a primary configuration file. And no start script in /etc/init.d On a system with an existing Dansguardian installation from Intrepid, the upgrade fails, complaining that it expected to see the configuration files in the main directory at /etc/dansguardian, rather than in the subdirectories common with the past two Ubuntu releases. The upgrade fails. ProblemType: Bug Architecture: amd64 DistroRelease: Ubuntu 9.04 NonfreeKernelModules: fglrx Package: dansguardian 2.9.9.7-2ubuntu1 ProcEnviron: LANGUAGE=en PATH=(custom, user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: dansguardian Uname: Linux 2.6.28-11-generic x86_64 ** Affects: dansguardian (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- dansguardian installs with no files https://bugs.launchpad.net/bugs/382026 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 284229] Re: console-kit-daemon using a lot of cpu
This only occurred with Intrepid. As the bug can render a server unusable due to CPU load, the fixed package mentioned for Jaunty should be backported to Intrepid. I consider it URGENT to address severe performance problems. -- console-kit-daemon using a lot of cpu https://bugs.launchpad.net/bugs/284229 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 317294] Re: htp package request as alternative to ntpdate and rdate clients
To submit this packaging request, I followed the guide at https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages If that guide is misleading, please correct it. It was last updated 2008-12-07 I obviously searched my own apt installation in Intrepid, and found neither htp nor htpdate available. I also searched at http://packages.ubuntu.com/ for Jaunty, and it's not listed there. >From all I see and the process I followed, this packaging request is valid. -- htp package request as alternative to ntpdate and rdate clients https://bugs.launchpad.net/bugs/317294 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 317294] Re: htp package request as alternative to ntpdate and rdate clients
Sorry - the web page was an older version. The current version is at http://www.clevervest.com/twiki/bin/view/HTP/DownloadC ** Attachment removed: "htp-0.9.3.tar.gz" http://launchpadlibrarian.net/21222565/htp-0.9.3.tar.gz ** Attachment added: "htpdate-1.0.4.tar.gz" http://launchpadlibrarian.net/21223287/htpdate-1.0.4.tar.gz -- htp package request as alternative to ntpdate and rdate clients https://bugs.launchpad.net/bugs/317294 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 317294] Re: htp package request as alternative to ntpdate and rdate clients
** Attachment added: "htp-0.9.3.tar.gz" http://launchpadlibrarian.net/21222565/htp-0.9.3.tar.gz -- htp package request as alternative to ntpdate and rdate clients https://bugs.launchpad.net/bugs/317294 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 317294] [NEW] htp package request as alternative to ntpdate and rdate clients
Public bug reported: While ntp may be a great protocol, I find it quite bloated and slow for the simple purpose of just setting a local date and time to a reference clock. I do not need 20ms accuracy on a notebook's clock :-). Thus I use(d) rdate, but the public rdate servers are slowly dying out. So I'm replacing it more and more with htpdate which works quite nicely. It's written in C and a perl alternative is available on the author's site. It's under the GPL license, and available at http://www.clevervest.com/twiki/bin/view/HTP and attached. ** Affects: ubuntu Importance: Undecided Status: New ** Tags: needs-packaging -- htp package request as alternative to ntpdate and rdate clients https://bugs.launchpad.net/bugs/317294 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 281872] Re: can not stream mpeg2
Is this related to Bug #304887 https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/304887 ?? -- can not stream mpeg2 https://bugs.launchpad.net/bugs/281872 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 304887] Re: Cannot transcode to mp2v/mp4v
This problem is affecting a growing number of VLC users as more migrate to the newer version. Like Brett, I useD VLC for MVPMC, and cannot any longer due to this bug. Jean-Baptiste mentions a linking problem...if that is the real solution, how do we test to confirm and implement it? -- Cannot transcode to mp2v/mp4v https://bugs.launchpad.net/bugs/304887 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 284229] Re: console-kit-daemon using a lot of cpu
I wrote this Monit entry to try to bring console-kit-daemon under control, but it hasn't seemed to be effective, as the console-kit-daemon CPU use seems to fluctuate as it ramps up to seize all CPU. As this happens, I lose interactive control of my X session, even though running on a dual-CPU system. check process console-kit-daemon with pidfile /var/run/console-kit-daemon.pid start program = "/usr/bin/ck-launch-session" stop program = "killall -9 console-kit-daemon" if 5 restarts within 5 cycles then timeout if cpu usage > 3% for 5 cycles then alert I agree - the urgency of this is no less than HIGH, and needs quick attention. -- console-kit-daemon using a lot of cpu https://bugs.launchpad.net/bugs/284229 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 257405] Re: cron.daily job results in "error: GPG validation failed!"
The workaround doesn't seem to be working anymore. There is a LONG discussion of this problem at http://www.gossamer- threads.com/lists/engine?do=post_view_flat;post=129005;page=1;mh=-1;list=spamassassin;sb=post_latest_reply;so=ASC These steps seemed to help, but I confess I don't fully know what I'm doing: 1. install the missing re2c package (on Ubuntu Intrepid) 2. change the reference to sa-update in /etc/cron.daily/spamassassin to sa-update --gpgkey 6C6191E3 --channel sought.rules.yerp.org 3. manually run sa-update --gpgkey 6C6191E3 --channel sought.rules.yerp.org if no errors, proceed with next step. 4. manually run sa-compile if no errors, proceed with next step. 5. manually run invoke-rc.d spamassassin reload >From this point on, daily updates don't fail. -- cron.daily job results in "error: GPG validation failed!" https://bugs.launchpad.net/bugs/257405 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 295561] Re: VLC stream not start
This also affects me. I was using vlc with mediamvp to stream video and audio on Kubuntu Hardy. Now with Intrepid, it doesn't work. The most visible error is: inhibit error: Failed to connect to the D-Bus session daemon: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. The log and list are attached. ** Attachment added: "list.txt" http://launchpadlibrarian.net/20684020/list.txt -- VLC stream not start https://bugs.launchpad.net/bugs/295561 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 310026] [NEW] apparmor complains as clam scans qpsmtpd message files
Public bug reported: Binary package hint: qpsmtpd Running Kubuntu Intrepid, using qpsmtpd .40 (as packaged for Intrepid), with clam use enabled with: virus/clamav clamscan_path=/usr/bin/clamdscan action=reject max_size=2097152 tmp_dir=/home/tmp/qpsmtpd/tmp The following log files, messages, kern.log, syslog, are rapidly filling up with these two entry types: [235335.535288] type=1502 audit(1229790513.700:11387): operation="inode_permission" requested_mask="::r" denied_mask="::r" fsuid=0 name="/var/spool/qpsmtpd/1229790513:24131:0" pid=24201 profile="/usr/sbin/clamd" [237876.724843] type=1502 audit(1229793054.888:11477): operation="capable" name="dac_override" pid=24842 profile="/usr/sbin/clamd" I was able to suppress the inode_permission entry by adding this to /etc/apparmor.d/usr.sbin.clamd: /var/spool/qpsmtpd/* r, The qpsmtpd package should enter appropriate lines/files in /etc/apparmor.d in future releases. ** Affects: qpsmtpd (Ubuntu) Importance: Undecided Status: New -- apparmor complains as clam scans qpsmtpd message files https://bugs.launchpad.net/bugs/310026 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 105102] Re: Cannot shutdown computer with Kubuntu Feisty
This is happening on Hardy. It's very persistent on a AMD-64 X2 with ATI graphics and Kubuntu (KDE 3.x): OpenGL vendor string: ATI Technologies Inc. OpenGL renderer string: ATI Radeon Xpress Series OpenGL version string: 2.1.7412 Release -- Cannot shutdown computer with Kubuntu Feisty https://bugs.launchpad.net/bugs/105102 You received this bug notification because you are a member of Kubuntu Team, which is subscribed to kubuntu-default-settings in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 103616] Re: [needs-packaging] LiVES
I'd like to second this request for LiVES. I've done several video CDs over the past few years, and LiVES is the only tool that has really pulled through for me in combining, editing, and doing special effects for the movies. Thanks! -- [needs-packaging] LiVES https://bugs.launchpad.net/bugs/103616 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 109598] Re: [need-packaging] Package reqest: Tovid
I'd like to second the request for Tovid. Outside of Videotrans, it's one of the very few DVD/VCD tools that actually work robustly on Linux. Thanks! -- [need-packaging] Package reqest: Tovid https://bugs.launchpad.net/bugs/109598 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 83068] Re: [BusLogic] scsi drives inaccessible
Correction - the asynchronous setting on the SCSI adapter isn't what fixes the problem - it's the Disconnect turned to OFF. Here are the corrected instructions: During boot, when your BusLogic adapter is being initialized, press Ctrl-B to enter your BusLogic adapter setup. Choose the address which your BusLogic containing your scanner is located. Choose ‘‘SCSI Device Configuration’’. Choose ‘‘Scan SCSI Bus’’. Choose whatever SCSI id that contains your scanner and then choose ‘‘View/Modify SCSI configuration’’. Change ‘‘Disconnect’’ to ‘‘off’’. Press Esc, save, and Esc again until you are asked to reboot. -- [BusLogic] scsi drives inaccessible https://bugs.launchpad.net/bugs/83068 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 83068] Re: [BusLogic] scsi drives inaccessible
While my comments about Mandriva and Knoppix working fine with a PCI Buslogic BT-958 SCSI card, and Ubuntu not, remain true, I can advise on a workaround to allow installation of (K)Ubuntu on a BT-958 connected SCSI disk... Follow the instructions at http://www.sourcentral.org/man/ubuntu606/5+sane-scsi which say: During boot, when your BusLogic adapter is being initialized, press Ctrl-B to enter your BusLogic adapter setup. Choose the address which your BusLogic containing your scanner is located. Choose ‘‘SCSI Device Configuration’’. Choose ‘‘Scan SCSI Bus’’. Choose whatever SCSI id that contains your scanner and then choose ‘‘View/Modify SCSI configuration’’. Change ‘‘Negotiation’’ to ‘‘async’’ and change ‘‘Disconnect’’ to ‘‘off’’. Press Esc, save, and Esc again until you are asked to reboot. Though unlikely to be needed, I also upgraded the BT-958 firmware from 5.06i to 5.06J using the files at http://dandelion.sourceforge.net/BusLogic.html This is a WORKAROUND because a). it's not the factory-recommended default for performance, and b). other Linux distributions have exhibited their ability to work fine with the factory defaults. Kubuntu Feisty is now installed on the system reported, and working fine. -- [BusLogic] scsi drives inaccessible https://bugs.launchpad.net/bugs/83068 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 123882] Re: Some web sites reload infinitely, but not on Opera
I tested Firefox 2.0.0.4 from Feisty AMD64 in safe mode, and it did the same thing. Then I switched over to 32-bit SwiftFox, and it worked fine. It's been 1-2 weeks since I saw this last, so I don't recall the other web sites now, but when I see another site behaving this way, I'll post it here. -- Some web sites reload infinitely, but not on Opera https://bugs.launchpad.net/bugs/123882 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 123882] Re: Some web sites reload infinitely, but not on Opera
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/8297313/Dependencies.txt -- Some web sites reload infinitely, but not on Opera https://bugs.launchpad.net/bugs/123882 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 123882] Some web sites reload infinitely, but not on Opera
Public bug reported: Binary package hint: firefox When visiting this site, it reloads endlessly, never actually showing anything. This is with Firefox 2.0.0.4 http://www2.panasonic.com/webapp/wcs/stores/servlet/vOverview?storeId=15001&catalogId=13401&catGroupId=24966&flashFlag=false&cacheProgram=11002&cachePartner=7005702 If I visit the same site with Opera, it works fine. If I visit it with Konqueror, it behaves the same as FireFox. I've seen this with other web sites over the months I've been using Feisty, though I realize this isn't Feisty itself. ProblemType: Bug Architecture: amd64 Date: Tue Jul 3 19:41:36 2007 DistroRelease: Ubuntu 7.04 Package: firefox 2.0.0.4+1-0ubuntu1 PackageArchitecture: amd64 SourcePackage: firefox Uname: Linux server 2.6.20-15-generic #2 SMP Sun Apr 15 06:17:24 UTC 2007 x86_64 GNU/Linux ** Affects: firefox (Ubuntu) Importance: Undecided Status: New -- Some web sites reload infinitely, but not on Opera https://bugs.launchpad.net/bugs/123882 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 83068] Re: [BusLogic] scsi drives inaccessible
Gutsy Tribe 2 continues to exhibit this problem, reported 5 months ago in Dapper and Feisty. -- [BusLogic] scsi drives inaccessible https://bugs.launchpad.net/bugs/83068 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 83068] Re: [BusLogic] scsi drives inaccessible
The latest Gutsy test CD still has the same SCSI problem identified 5 months ago. -- [BusLogic] scsi drives inaccessible https://bugs.launchpad.net/bugs/83068 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 115853] Re: [apport] pyzor crashed with IOError in run()
The problem remains - it appears to be pyzor's reporting mechanism that is crashing, but the process itself isn't in the process list. Attached is the latest bug report detail that seemed relevant. ** Attachment added: "pyzor.png" http://librarian.launchpad.net/7888019/pyzor.png -- [apport] pyzor crashed with IOError in run() https://bugs.launchpad.net/bugs/115853 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 115853] Re: [apport] pyzor crashed with IOError in run()
What I've been seeing, is that I can trigger the pyzor crash simply by logging out of KDE, and coming back in again. I did it just now. But when I tried it a second time (since reboot), there was no reported crash. I'm wondering two things: 1). is there some process that's hanging around until I log out, which gets killed, or 2). was there an original crash that is stuck in the crash handler's memory, and it just won't purge. I use spamassassin and its reporting feature quite often. Maybe the hanging process is brought to life after a report. I'll try to keep an eye on it and update this bug report when I have more detail. -- [apport] pyzor crashed with IOError in run() https://bugs.launchpad.net/bugs/115853 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 115853] [apport] pyzor crashed with IOError in run()
Public bug reported: Binary package hint: pyzor This has happened twice now, since updating to Spamassassin 3.2.0 ProblemType: Crash Architecture: amd64 Date: Sun May 20 07:45:22 2007 DistroRelease: Ubuntu 7.04 ExecutablePath: /usr/bin/pyzor InterpreterPath: /usr/bin/python2.5 Package: pyzor 1:0.4.0+cvs20030201-6.1 PackageArchitecture: all ProcCmdline: /usr/bin/python /usr/bin/pyzor report ProcCwd: /root ProcEnviron: PATH=/usr/bin:/bin:/usr/local/bin SHELL=/bin/sh LANG=C LANGUAGE=en PythonArgs: ['/usr/bin/pyzor', 'report'] SourcePackage: pyzor Uname: Linux server 2.6.20-15-generic #2 SMP Sun Apr 15 06:17:24 UTC 2007 x86_64 GNU/Linux ** Affects: pyzor (Ubuntu) Importance: Undecided Status: Unconfirmed -- [apport] pyzor crashed with IOError in run() https://bugs.launchpad.net/bugs/115853 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 115853] Re: [apport] pyzor crashed with IOError in run()
** Attachment added: "Dependencies.txt" http://librarian.launchpad.net/7721800/Dependencies.txt ** Attachment added: "ProcMaps.txt" http://librarian.launchpad.net/7721801/ProcMaps.txt ** Attachment added: "ProcStatus.txt" http://librarian.launchpad.net/7721802/ProcStatus.txt ** Attachment added: "Traceback.txt" http://librarian.launchpad.net/7721803/Traceback.txt -- [apport] pyzor crashed with IOError in run() https://bugs.launchpad.net/bugs/115853 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 8497] Re: grub guessed BIOS disk order incorrectly
I've found a solution to my problem...using entries in /etc/fstab and /boot/grub/menu.lst that refer to the disk "by-id", such as : # /dev/sda1 /dev/disk/by-id/scsi-1ATA_Maxtor_7V300F0_V601KP2G-part1 / reiserfs nouser,defaults,noatime,auto,rw,dev,exec,suid 0 1 If people aflicted by this bug are able to use by-id or any of the other links under /dev/disk/, the problem may be controlled. -- grub guessed BIOS disk order incorrectly https://bugs.launchpad.net/bugs/8497 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 63558] Re: Latest usplash leaves my consoles corrupted
When I upgraded from Edgy to Fiesty, I lost my virtual terminals and the system would lock up if I tried to use any VT. Once I switched to a VT, I couldn't get back to VT7. Setting "defoptions=vga=791" in /boot/grub/menu.lst and leaving /etc/usplash.conf at its default 1024x768 solved the problem. -- Latest usplash leaves my consoles corrupted https://bugs.launchpad.net/bugs/63558 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 77980] Re: A package failed to install (apt, dpkg)
I can confirm this same bug. And the reason "dm" identified is correct - my default mysql password for root HAS been changed as is recommended for any secure server. I like Matthew's suggested fix. -- A package failed to install (apt, dpkg) https://bugs.launchpad.net/bugs/77980 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 93655] Re: hda -> sda transition not handled during upgrade
Isn't this bug report similar to https://bugs.launchpad.net/ubuntu/+source/grub/+bug/8497 ? -- hda -> sda transition not handled during upgrade https://bugs.launchpad.net/bugs/93655 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 108555] Re: [kde] Upgrade Tool Crashed (Kubuntu Edgy to Feisty)
I had the same problem, and was also using AutoMatix, but possibly more important, I had some python sane files installed from a non-deb source, and the installer seemed to trip heavily over those. -- [kde] Upgrade Tool Crashed (Kubuntu Edgy to Feisty) https://bugs.launchpad.net/bugs/108555 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 8497] Re: grub guessed BIOS disk order incorrectly
I'm curious if this bug is the same as what I see on my Abit AN8-32X system. I have 6 SATA drives (4 on an Nvidia chip, and 2 on Sil 3132 chip), 2 IDE drives (each a master on its own channel), and 2 USB "drives", which are a SD and CF card reader. In Dapper, Edgy, and Fiesty, I see the set of 2 Sil 3132 chip drives "floating" in the boot order. On one boot, they appear as sdd and sde. On the next boot, they appear as sdf and sdg. It appears that the USB "drives" are not consistent about when the kernel detects them, and so they either appear before or after the two Sil 3132 SATA drives. When Edgy converted fstab to a UUID entry, I thought the misrepresentation of the drives would go away, but the problem manifested immediately after the Fiesty upgrade. Granted, I only had to reboot a few times between Edgy and Fiesty. (-: Thoughts? -- grub guessed BIOS disk order incorrectly https://bugs.launchpad.net/bugs/8497 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 108919] Re: [kde] upgrade tool crashed with "self.parent.konsole.sendInput("n\n") RuntimeError: underlying C/C++ object has been deleted"
*** This bug is a duplicate of bug 108555 *** https://bugs.launchpad.net/bugs/108555 apt.log ** Attachment added: "apt.log" http://librarian.launchpad.net/7394323/apt.log -- [kde] upgrade tool crashed with "self.parent.konsole.sendInput("n\n") RuntimeError: underlying C/C++ object has been deleted" https://bugs.launchpad.net/bugs/108919 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 108919] Re: [kde] upgrade tool crashed with "self.parent.konsole.sendInput("n\n") RuntimeError: underlying C/C++ object has been deleted"
*** This bug is a duplicate of bug 108555 *** https://bugs.launchpad.net/bugs/108555 main.log ** Attachment added: "main.log" http://librarian.launchpad.net/7394326/main.log -- [kde] upgrade tool crashed with "self.parent.konsole.sendInput("n\n") RuntimeError: underlying C/C++ object has been deleted" https://bugs.launchpad.net/bugs/108919 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 108919] upgrade tool crashed
Public bug reported: Binary package hint: ubiquity Traceback (most recent call last): File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/dist-upgrade.py", line 56, in ? app.run() File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeControler.py", line 1025, in run self.fullUpgrade() File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeControler.py", line 1007, in fullUpgrade if not self.doDistUpgrade(): File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeControler.py", line 623, in doDistUpgrade res = self.cache.commit(fprogress,iprogress) File "/usr/lib/python2.4/site-packages/apt/cache.py", line 204, in commit if res == pm.ResultCompleted: File "/usr/lib/python2.4/site-packages/apt/cache.py", line 179, in installArchives installProgress.finishUpdate() File "/usr/lib/python2.4/site-packages/apt/progress.py", line 212, in run def run(self, pm): File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeViewKDE.py", line 298, in waitChild self.updateInterface() File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeViewKDE.py", line 268, in updateInterface InstallProgress.updateInterface(self) File "/usr/lib/python2.4/site-packages/apt/progress.py", line 187, in updateInterface if status == "pmerror": File "/tmp/kde-root/adept_managerIGPMsb.tmp-extract/DistUpgradeViewKDE.py", line 222, in conffile self.parent.konsole.sendInput("n\n") RuntimeError: underlying C/C++ object has been deleted ** Affects: ubiquity (Ubuntu) Importance: Undecided Status: Unconfirmed -- upgrade tool crashed https://bugs.launchpad.net/bugs/108919 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 108917] could not install 'python-imaging'
Public bug reported: Binary package hint: update-manager subprocess post-installation script returned error exit status 1 The entire Fiesty upgrade is being aborted just because of this? !!! ** Affects: update-manager (Ubuntu) Importance: Undecided Status: Unconfirmed -- could not install 'python-imaging' https://bugs.launchpad.net/bugs/108917 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 83068] Re: [BusLogic] scsi drives inaccessible
Just for the sake of comparison, Debian 4 also fails to provide access to the SCSI drives attached to the Buslogic BT-958 SCSI card. I was unable to get a dmesg.log because they apparently have logging turned off on the installer DVD. -- [BusLogic] scsi drives inaccessible https://bugs.launchpad.net/bugs/83068 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 83068] Re: [BusLogic] scsi drives inaccessible
The problem remains in the latest Feisty beta released today. -- [BusLogic] scsi drives inaccessible https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 47957] Please confirm (conf#4aaceec13dcaffaf48e01c896da4660c)
*** This bug is a duplicate of bug 83068 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Ben Collins <[EMAIL PROTECTED]> Date: Wed, 21 Mar 2007 00:16:27 - Subject: [Bug 47957] Re: kernel 2.6.15-23-686 boot fails during SCSI To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 83068 *** ** This bug has been marked a duplicate of bug 83068 [BusLogic] scsi drives inaccessible -- = kernel 2.6.15-23-686 boot fails during SCSI (BusLogic) initialization https://launchpad.net/bugs/47957 -- kernel 2.6.15-23-686 boot fails during SCSI (BusLogic) initialization https://launchpad.net/bugs/47957 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: [BusLogic] scsi drives inaccessible
The dmesg from the successful Mandriva boot from the SCSI drive is attached. ** Attachment added: "dmesg from mandriva" http://librarian.launchpad.net/6674440/dmesg -- [BusLogic] scsi drives inaccessible https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
I confirmed that this problem remains in Feisty Herd 5 Desktop CD. Symptoms exactly as described previously. -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
Details follow and are attached: Linux ubuntu 2.6.20-8-generic #2 SMP Tue Feb 13 05:18:42 UTC 2007 i686 GNU/Linux -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
** Attachment added: "dmesg.log" http://librarian.launchpad.net/6466416/dmesg.log -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
** Attachment added: "lspci-vvnn.log" http://librarian.launchpad.net/6466415/lspci-vvnn.log -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
I confirmed that this problem remains in Feisty Herd 4 Desktop CD. System Info shows that the 2 SCSI disks exist, and shows their partition information, but the sudo cfdisk /dev/sda (or /dev/sdb) command claims the disk doesn't exist. QTparted also refuses to work with the disks, and they cannot be mounted. -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
Just tested the problem with Herd 3 Desktop CD, and the problem remains. -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Please confirm (conf#8ccaaf52f4495cc8f284b005d86def9b)
<< YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: glenstewart <[EMAIL PROTECTED]> Date: Sat, 03 Feb 2007 16:36:05 - Subject: [Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or To: [EMAIL PROTECTED] ** Attachment added: "screenshot of system info" http://librarian.launchpad.net/6169444/IMG_5171.JPG -- = linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Please confirm (conf#31ddac3e4823f1eda5118fa155b2f7a9)
<< YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: glenstewart <[EMAIL PROTECTED]> Date: Sat, 03 Feb 2007 16:34:46 - Subject: [Bug 83068] linux-image: SCSI drives inaccessible to parted or any To: [EMAIL PROTECTED] Public bug reported: Binary package hint: linux-image-2.6-386 On an older Asus K7V server with a PCI Buslogic BT-958 SCSI card, the Ubuntu Feisty Fawn Herd 2 Live CD's kernel fails to properly load the BusLogic module to enable mounting or configuration of any SCSI drives attached to the card. In contrast, Mandriva 2007 Free and Knoppix 4 & 5 all work properly with the SCSI controller and disks. This has been a problem with both Ubuntu and Debian for the past 2 years (Dapper, Edgy, Feisty; SID, and pre-SID unstable). Mandriva has worked with this card and drives since at least Mandrake 9.0. But since moving to Ubun= tu on other boxes, I'm very eager to move this box to Ubuntu too. SuSE's 10.x Live CD also fails to see these drives properly. >From what I've been able to research, other reports point to the BusLogic module only working correctly when it's built into the kernel, rather than being loaded as a loadable external module. As provided with Ubuntu, the SCSI bus seems to be reset at least twice by the kernel during startup, and I'm not sure I see this with Mandriva or Knoppix. Attached is a screenshot of the KDE Control Center's Disk & Filesystem settings that shows the 2 18Gb SCSI disks, MAG3182MP and DNES-318350W, are detected by Ubuntu. They are seen as sdb and sdc. These disks have partitions in common formats, but Ubuntu kernel can't see them. "cfdisk /dev/sdb" and QTparted (and Gparted) are unable to operate on the disks for formatting or partitioning in any way. This is not a sudo issue. -- System Information: Debian Release: testing/unstable APT prefers edgy-updates APT policy: (500, 'edgy-updates'), (500, 'edgy-security'), (500, 'edgy') Architecture: i386 (x86) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.17-10-generic Locale: LANG=3DC, LC_CTYPE=3DC (charmap=3DANSI_X3.4-1968) ** Affects: linux-meta (Ubuntu) Importance: Undecided Status: Unconfirmed -- = linux-image: SCSI drives inaccessible to parted or any installation tool (Original message truncated) -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] Re: linux-image: SCSI drives inaccessible to parted or any installation tool
** Attachment added: "screenshot of system info" http://librarian.launchpad.net/6169444/IMG_5171.JPG -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 83068] linux-image: SCSI drives inaccessible to parted or any installation tool
Public bug reported: Binary package hint: linux-image-2.6-386 On an older Asus K7V server with a PCI Buslogic BT-958 SCSI card, the Ubuntu Feisty Fawn Herd 2 Live CD's kernel fails to properly load the BusLogic module to enable mounting or configuration of any SCSI drives attached to the card. In contrast, Mandriva 2007 Free and Knoppix 4 & 5 all work properly with the SCSI controller and disks. This has been a problem with both Ubuntu and Debian for the past 2 years (Dapper, Edgy, Feisty; SID, and pre-SID unstable). Mandriva has worked with this card and drives since at least Mandrake 9.0. But since moving to Ubuntu on other boxes, I'm very eager to move this box to Ubuntu too. SuSE's 10.x Live CD also fails to see these drives properly. >From what I've been able to research, other reports point to the BusLogic module only working correctly when it's built into the kernel, rather than being loaded as a loadable external module. As provided with Ubuntu, the SCSI bus seems to be reset at least twice by the kernel during startup, and I'm not sure I see this with Mandriva or Knoppix. Attached is a screenshot of the KDE Control Center's Disk & Filesystem settings that shows the 2 18Gb SCSI disks, MAG3182MP and DNES-318350W, are detected by Ubuntu. They are seen as sdb and sdc. These disks have partitions in common formats, but Ubuntu kernel can't see them. "cfdisk /dev/sdb" and QTparted (and Gparted) are unable to operate on the disks for formatting or partitioning in any way. This is not a sudo issue. -- System Information: Debian Release: testing/unstable APT prefers edgy-updates APT policy: (500, 'edgy-updates'), (500, 'edgy-security'), (500, 'edgy') Architecture: i386 (x86) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.17-10-generic Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) ** Affects: linux-meta (Ubuntu) Importance: Undecided Status: Unconfirmed -- linux-image: SCSI drives inaccessible to parted or any installation tool https://launchpad.net/bugs/83068 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 76087] Please confirm (conf#0f918656856ea9f43ea73fb9e0e44364)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Richard Bailey <[EMAIL PROTECTED]> Date: Wed, 24 Jan 2007 10:36:53 - Subject: [Bug 76087] Re: Does not work on my ATi X800 To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper, edgy with ati X600/X700/X800 (control not de= legated to "radeon" driver, "ati" complains about Mach64). -- = Does not work on my ATi X800 https://launchpad.net/bugs/76087 -- Does not work on my ATi X800 https://launchpad.net/bugs/76087 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 64174] Please confirm (conf#8dc9ebd526558af89bd4f3141eeb6d74)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:30:49 - Subject: [Bug 64174] Re: GUI doesn't appear on startup, To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = GUI doesn't appear on startup, ATI X300 not recognised? https://launchpad.net/bugs/64174 -- GUI doesn't appear on startup, ATI X300 not recognised? https://launchpad.net/bugs/64174 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 64585] Please confirm (conf#ab23c9b8b2f756a7823293bd76991d9e)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:32:26 - Subject: [Bug 64585] Re: Ati X800 GTO doesn't work To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** Vesa should probably work. Usplash was broken on amd64 at the time you reported the bug, and ati driver has the known problem of doing illegal detecting of the card (if you see the xorg.0.log ending in something like "Mach64 not detected", this's it. What should really work as a workaround is to change "ati" to "radeon". ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = Ati X800 GTO doesn't work https://launchpad.net/bugs/64585 -- Ati X800 GTO doesn't work https://launchpad.net/bugs/64585 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 35934] Please confirm (conf#b3fb79d774986afead26733c9eb21377)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:16:40 - Subject: [Bug 35934] Re: X won't start on boot of Dapper Final, To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** The persitent "Mach64 detected" stuff is in the original log file, thus marking duplicate of bug #28925. ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = X won't start on boot of Dapper Final, Live CD or installed system https://launchpad.net/bugs/35934 -- X won't start on boot of Dapper Final, Live CD or installed system https://launchpad.net/bugs/35934 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 38649] Please confirm (conf#717137856745aae959d13acae26ca15f)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:25:23 - Subject: [Bug 38649] Re: ATI Radeon X800XL - wrong driver selected, To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** Marking this as duplicate of bug #28925, which is generally about the unfor= tunate need to specify "radeon" manually, generally making Ubuntu experienc= e 0 if one doesn't know how to edit xorg.conf manually. The monitor issue (640x480 because primary monitor resolutions not detected= correctly) is a separate bug, and also known. ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = ATI Radeon X800XL - wrong driver selected, and fails unless both monitor p= orts connected https://launchpad.net/bugs/38649 -- ATI Radeon X800XL - wrong driver selected, and fails unless both monitor ports connected https://launchpad.net/bugs/38649 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44370] Please confirm (conf#652298e2ce086e0f2e700733ee8bb245)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:28:34 - Subject: [Bug 44370] Re: X doesn't start with ati driver (Flight 7, X700, WS) To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = X doesn't start with ati driver (Flight 7, X700, WS) https://launchpad.net/bugs/44370 -- X doesn't start with ati driver (Flight 7, X700, WS) https://launchpad.net/bugs/44370 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 28925] Please confirm (conf#dc321d5f9f5772d4bfb3bfec004916c9)
<< YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:11:42 - Subject: [Bug 28925] Re: X fails to start in dapper flight3 & 4 with ati X600, To: [EMAIL PROTECTED] Gathering duplicates here, there are lots of them. The driver "ati" fails on many (most?) X300-X800 PCI-E cards, while "radeon" works though might not give bigger than 640x480 resolution without additional MonitoryLayout tweaking - even that would be better than blue screen of X. ** Bug 25953 has been marked a duplicate of this bug ** Bug 32515 has been marked a duplicate of this bug ** Bug 45768 has been marked a duplicate of this bug ** Bug 47083 has been marked a duplicate of this bug ** Bug 30284 has been marked a duplicate of this bug -- = X fails to start in dapper flight3 & 4 with ati X600, onward all the way th= rough dapper 6.06 LTS https://launchpad.net/bugs/28925 -- X fails to start in dapper flight3 & 4 with ati X600, onward all the way through dapper 6.06 LTS https://launchpad.net/bugs/28925 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 30284] Please confirm (conf#0765fb67f436bb68a34237b6ca142136)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:06:05 - Subject: [Bug 30284] Re: X server fails to start - X850 PCI-E To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** ** Bug 25953 has been marked a duplicate of this bug ** Bug 47083 has been marked a duplicate of this bug ** Bug 32515 has been marked a duplicate of this bug ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = X server fails to start - X850 PCI-E https://launchpad.net/bugs/30284 -- X server fails to start - X850 PCI-E https://launchpad.net/bugs/30284 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 45768] Please confirm (conf#5d9168e90f85bce3661c0f20e114db64)
*** This bug is a duplicate of bug 28925 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.3 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: Timo Jyrinki <[EMAIL PROTECTED]> Date: Mon, 16 Oct 2006 12:09:44 - Subject: [Bug 45768] Re: Radeon X800 XL not recognized To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 28925 *** ** This bug is no longer a duplicate of bug 30284 X server fails to start - X850 PCI-E ** This bug has been marked a duplicate of bug 28925 X fails to start in dapper flight3 & 4 with ati X600, onward all the way= through dapper 6.06 LTS -- = Radeon X800 XL not recognized https://launchpad.net/bugs/45768 -- Radeon X800 XL not recognized https://launchpad.net/bugs/45768 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 32515] Please confirm (conf#a516efef4faee93dd94986f15eb5de2c)
<< YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.0 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: sean <[EMAIL PROTECTED]> Date: Thu, 22 Jun 2006 09:45:32 - Subject: [Bug 32515] Re: My ATI Radeon X800 don't work after the boot To: [EMAIL PROTECTED] ** Bug 47083 has been marked a duplicate of this bug ** Bug 25953 has been marked a duplicate of this bug -- = My ATI Radeon X800 don't work after the boot https://launchpad.net/bugs/32515 -- My ATI Radeon X800 don't work after the boot https://launchpad.net/bugs/32515 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 25953] Please confirm (conf#5c23b6832db04fec6f736356cef27958)
*** This bug is a duplicate of bug 32515 *** << YOUR RESPONSE IS REQUIRED TO SEND AN EARLIER MESSAGE >> This is an automated message. The message you sent (attached below) requires confirmation before it can be delivered. To confirm that you sent the message below, just hit the "R"eply button and send this message back (you don't need to edit anything). Once this is done, no more confirmations will be necessary to email the recipient. The recipient does not wish to receive any bulk, forged, solicitation, or business venture mail messages (SPAM). If you reply to this notice, you are (1) acknowledging that the recipeint does not want to receive SPAM; (2) confirming that your message is not SPAM as we define it above; and (3) agreeing to pay the recipient $250 if your message is considered by the recipient to be SPAM. This email account is protected by: Active Spam Killer (ASK) V2.5.0 - (C) 2001-2004 by Marco Paganini For more information visit http://www.paganini.net/ask --- Original Message Follows --- From: sean <[EMAIL PROTECTED]> Date: Thu, 22 Jun 2006 09:48:14 - Subject: [Bug 25953] Re: ATI X800GT detected as X800SE, To: [EMAIL PROTECTED] *** This bug is a duplicate of bug 32515 *** Umm...oops. This is a duplicate of bug #32515. 30284 can't be fixed with the radeon or fglrx drivers. My mad. ** This bug has been marked a duplicate of bug 32515 My ATI Radeon X800 don't work after the boot -- = ATI X800GT detected as X800SE, "ati" driver auto choosed by xorg doesn't wo= rk. https://launchpad.net/bugs/25953 -- ATI X800GT detected as X800SE, "ati" driver auto choosed by xorg doesn't work. https://launchpad.net/bugs/25953 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs