[Bug 317781] Re: Ext4 data loss
While the design of ext3 in the regard to this bug might be considered accidental, it would be wise to attempt to carry it over to ext4 in order to go 'above and beyond' POSIX in compatibility with previous behaviour. Specifically, truncation of a file needs to be made a regular write operation so that it would be cached with other write operations and flushed to disk in a regular batch. Given the following code: 1.a) open and read file ~/.kde/foo/bar/baz 1.b) fd = open("~/.kde/foo/bar/baz", O_WRONLY|O_TRUNC|O_CREAT) --- this truncates the file 1.c) write(fd, buf-of-new-contents-of-file, size-of-new-contents-of-file) 1.d) close(fd) Assuming that less than 30 seconds pass between 1.b and 1.c, these two operations must be executed at the same write cycle without allowing a significant window of opportunity for major data loss. 2.a) open and read file ~/.kde/foo/bar/baz 2.b) fd = open("~/.kde/foo/bar/baz.new", O_WRONLY|O_TRUNC|O_CREAT) 2.c) write(fd, buf-of-new-contents-of-file, size-of-new-contents-of-file) 2.d) close(fd) 2.e) rename("~/.kde/foo/bar/baz.new", "~/.kde/foo/bar/baz") It is even clearer here - why would the rename operation change the destination file before the previous operations are completed? It should not - the rename must be an atomic operation, even if POSIX does not demand it. This is an expected behaviour for extN filesystem and ext4 needs to document and honor that. I understand that a program can not be certain that data will reach the disk unless some sort of fsync() is called. But destroying old data and then delaying writing the new version _is_ an ext4 bug, regardless of what POSIX says. And as a sidenote - maybe programmers feel differently, but system administrators much prefer to have a bunch of small text files that we can edit with text editors and all kinds of scripts instead of SQL database stores for application configuration. Configuration registry is a cool principle, but a horrible practice even in bast implementations. -- Ext4 data loss https://bugs.launchpad.net/bugs/317781 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 348082] [NEW] Need GPG encryption in Empathy
Public bug reported: Binary package hint: empathy A mayor feature that keeps a bunch of people migrating to Empathy from Psi is the GPG encrypted and signed messages and status updates, conformant to XEP-0027: http://xmpp.org/extensions/xep-0027.html ** Affects: empathy (Ubuntu) Importance: Undecided Status: New -- Need GPG encryption in Empathy https://bugs.launchpad.net/bugs/348082 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 357424] [NEW] Firefox causes Gnome panel to crash (repeatable)
Public bug reported: Binary package hint: firefox-3.0 Opening the following page: http://blog.oup.com/2009/03/science-fiction/ Causes the gnome-panel to crash and restart infinitely until the tab with this page is closed. Firefox remains fully functional during the whole procedure. Window borders also disappeared at one point suggesting that metacity was also restarted. Compiz is not being used. I tried upgrading all the software and restarting the computer fully. This also happens in a fresh guest session. The installation is an upgrade from 8.10. ProblemType: Bug Architecture: i386 DistroRelease: Ubuntu 9.04 NonfreeKernelModules: nvidia Package: firefox 3.0.8+nobinonly-0ubuntu2 PackageArchitecture: all ProcEnviron: SHELL=/bin/bash PATH=(custom, user) LANG=en_GB.UTF-8 SourcePackage: firefox-3.0 Uname: Linux 2.6.28-11-generic i686 ** Affects: firefox-3.0 (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 -- Firefox causes Gnome panel to crash (repeatable) https://bugs.launchpad.net/bugs/357424 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 357424] Re: Firefox causes Gnome panel to crash (repeatable)
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/24984776/Dependencies.txt -- Firefox causes Gnome panel to crash (repeatable) https://bugs.launchpad.net/bugs/357424 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 54935] Suspend does not work for Dell XPS M1710 laptop
Public bug reported: After default Dapper installation no suspend to ram option is presented on the System->Quit menu. I am willing to go trough all the needed steps to enable and debug the suspend functionality to this system. ** Affects: Ubuntu Importance: Untriaged Status: Unconfirmed -- Suspend does not work for Dell XPS M1710 laptop https://launchpad.net/bugs/54935 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 5039] Re: Memory leak when downlaoding via PTP (fixed)
** Changed in: libgphoto (upstream) Status: Unconfirmed => Fix Released -- Memory leak when downlaoding via PTP (fixed) https://launchpad.net/bugs/5039 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 42142] Re: sbackup doesn't check for/prevent full disk
Yes, there are no provisions in SBackup against disk space overflow. However if a backup is done to a remote location then the only thing that is stored locally is a list of files to backuped which is stored in /tmp, which usually is a RAM disk. -- sbackup doesn't check for/prevent full disk https://launchpad.net/bugs/42142 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 5720] Re: simple-backup-config crashes on certain cronfiles
I am here, but Launchpad does not inform me about new bugs for some reason. I will look over the proposed fix now and if it works, then I will include it in upcoming 0.10 release. -- simple-backup-config crashes on certain cronfiles https://launchpad.net/bugs/5720 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 5720] Re: simple-backup-config crashes on certain cronfiles
The cronfile in question sets a very unusual schedule. According to that backups should happen at every round hour, but only on Fridays. The only solution to this that I can suggest is adding and additional "custom cronline" option to the interface, so that it does not get confused at those. Did you write that cronline yourself, or did the interface give you such a line? In the latter case that is the main bug here. -- simple-backup-config crashes on certain cronfiles https://launchpad.net/bugs/5720 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44258] Re: Selection of custom backup location is ignored
Could you please attach your /etc/sbackup.conf file? -- Selection of custom backup location is ignored https://launchpad.net/bugs/44258 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53349] Re: Purge option
It is quite a large new feature and has a potential to erase valuable data, so due care is being exercised in getting it right the first time. -- Purge option https://launchpad.net/bugs/53349 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 46015] Re: Should it exclude browser cache files by default?
Thank you. That will be included in the next release. -- Should it exclude browser cache files by default? https://launchpad.net/bugs/46015 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53660] Re: sbackup includes more folders than selected
Yes, that is a known bug - sbackup includes/excluded folders and files based on substring match. I am currently reviewing a patch for 0.10 that could fix this. -- sbackup includes more folders than selected https://launchpad.net/bugs/53660 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51595] Re: Sbackup fails during remote backup
What is the size of the backup? What protocol are you using for remote access (FTP, SSH)? What filesystem is on the other end? -- Sbackup fails during remote backup https://launchpad.net/bugs/51595 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51321] Re: "Restore as" problem with full backup with default settings
That is a strange problem and I can not reproduce it locally. Could there be something different about the name of the files you are trying to recover? Spaces, newlines, other special symbols? -- "Restore as" problem with full backup with default settings https://launchpad.net/bugs/51321 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51321] Re: "Restore as" problem with full backup with default settings
The problem appears to be that files that are located beyond 2 Gb boundary of the backup snapshot are not being restored without any error message. We are working on debugging the acctual problem and fixing it for 0.10 release. ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Unconfirmed => In Progress -- "Restore as" problem with full backup with default settings https://launchpad.net/bugs/51321 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53349] Re: Purge option
** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Confirmed => Fix Committed -- Purge option https://launchpad.net/bugs/53349 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 46015] Re: Should it exclude browser cache files by default?
** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Unconfirmed => Fix Committed -- Should it exclude browser cache files by default? https://launchpad.net/bugs/46015 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53660] Re: sbackup includes more folders than selected
** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Unconfirmed => Fix Committed -- sbackup includes more folders than selected https://launchpad.net/bugs/53660 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 54839] Re: sbackup doesn't run anymore
*** This bug is a duplicate of bug 5720 *** ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Confirmed => Fix Committed -- sbackup doesn't run anymore https://launchpad.net/bugs/54839 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 42142] Re: sbackup doesn't check for/prevent full disk
Please check in your /etc/sbackup.conf file if you have really configured SBackup to backup to a remote server, because if you have, then SBackups should not do anything at all with /var/backup. Could it be possible that you wrote the remote URL into the simple-backup-config, but did not press the Test button? ** Changed in: sbackup (Ubuntu) Status: Unconfirmed => Confirmed -- sbackup doesn't check for/prevent full disk https://launchpad.net/bugs/42142 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56912] Impossible to configure more the 4 keyboard layouts
Public bug reported: In Dapper, in Gnome it is impossible to configure more then 4 keyboard layouts. This is a huge problem for anyone involved in multinational business or in translation business. And it is also a major feature regression in relation to Windows. In Ubuntu as an international distribution it must be possible to configure and use unlimited number of input languages. ** Affects: gnome-applets (Ubuntu) Importance: Untriaged Status: Unconfirmed ** Changed in: sbackup (Ubuntu) Sourcepackagename: sbackup => gnome-applets -- Impossible to configure more the 4 keyboard layouts https://launchpad.net/bugs/56912 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56912] Re: Impossible to configure more the 4 keyboard layouts
Note that this bug has been dismissed by upstream as NOTABUG for several years, since Gnome 2.6 IIRC. The keyboard layout selector was rewritten at that point - the old selector supported unlimited number of layouts, while the new one only supported at most 4 layouts. -- Impossible to configure more the 4 keyboard layouts https://launchpad.net/bugs/56912 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51321] Re: "Restore as" problem with full backup with default settings
Fixed in 0.10 ** Changed in: sbackup (Ubuntu) Status: In Progress => Fix Committed -- "Restore as" problem with full backup with default settings https://launchpad.net/bugs/51321 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 57500] Version 0.10 from sid fixes many bugs
Public bug reported: Binary package hint: sbackup Please merge 0.10 from sid to edgy. ** Affects: sbackup (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Version 0.10 from sid fixes many bugs https://launchpad.net/bugs/57500 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 57500] Re: Version 0.10 from sid fixes many bugs
** Changed in: sbackup (Ubuntu) Status: Unconfirmed => Confirmed ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Ubuntu Package Archive Administrators -- Version 0.10 from sid fixes many bugs https://launchpad.net/bugs/57500 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56912] Re: Impossible to configure more the 4 keyboard layouts
http://community.livejournal.com/xkbconfig/304.html has the latest instance of the discussion. The thing is that the keyboard layout configuration was rewriten and features were lost in the name of some tiny bit of efficiency. FWIW the keyboard layout switching in early versions of Gnome 2 and now in KDE have no significant speed difference to the current Gnome variant, but allow more then 4 languages. Now it has come to a point where users that need more then 4 languages (or even just think that they might need more then 4 languages sometime in the future) are forced not to use Linux (or to use KDE if they are sufficiently advanced). The 4 language limit is a design choice that restricts the number of configurable layouts to a fixed arbitrary limit. Some users do need more then that or know/feel that they will need that in the future, for example, people working at multinational companies or international charities, as well as translators that know more then a few languages. I know 5 lanuages and am trying to learn a 6th. With the world going multicultural such diversity will only increase, while Gnome will be stuck at 4. -- Impossible to configure more the 4 keyboard layouts https://launchpad.net/bugs/56912 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 41813] Re: pop-up dialogs doesn't close.
A working workaround: select Help -> About in Azureus menu and then close the popup with the About dialog running. -- pop-up dialogs doesn't close. https://launchpad.net/bugs/41813 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 30557] Re: cpu idle time in /proc/stat wrong
Confirming the bug with latest Dapper and HP nx6110. Willing to assist with debugging as I am a DD and am willing to follow instructions to fix this. -- cpu idle time in /proc/stat wrong https://launchpad.net/bugs/30557 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 47561] Re: ACPI-battery monitoring stops working after some time
I can confirm this error on nx6110 -- ACPI-battery monitoring stops working after some time https://launchpad.net/bugs/47561 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 28326] Re: i810 Xv crashes after suspend -> infinite resprawn
Xv crash with infinite GDM respan is still happening to me on nx6110, but it is not deterministic - the crash happens sometimes, but not always. However, when the crash happens it always happlens on start of new video playback and after the laptop has been suspended. -- i810 Xv crashes after suspend -> infinite resprawn https://launchpad.net/bugs/28326 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 54263] Intel 3945 wireless card does not show up in nm-applet
Public bug reported: In a fresh Dapper installation to Dell Inspiron XPS M1710 laptop with build in Intel Pro Wireless 3945 wireless card (PCI ID 8086:4222): 1. The card is working perfectly using iwconfig/ifconfig commands 2. The card is automatically assigned to strongest access point as soon as Network Manager is activated -BUT- 3. Network Manager Gnome applet (nm-applet) does not allow to configure the card. Clicing on the icon only produces a menu with a single grayed-out item "No network devices have been found" At the same time the network works perfectly without any configuration, but I am concearned of what will I do if I will need to conect to a different AP or use some WPA functions. ** Affects: network-manager (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Intel 3945 wireless card does not show up in nm-applet https://launchpad.net/bugs/54263 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 54263] Re: Intel 3945 wireless card does not show up in nm-applet
/etc/network/interfaces attached as requested. -- Intel 3945 wireless card does not show up in nm-applet https://launchpad.net/bugs/54263 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 54263] Re: Intel 3945 wireless card does not show up in nm-applet
Confirmed. It looks like the card was configured at installation and just stayed that way. It would be nice to work that problem around somehow - either give way to override that info from the applet or at least inform the user what the problem actually is. -- Intel 3945 wireless card does not show up in nm-applet https://launchpad.net/bugs/54263 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 57435] Re: [Edgy Eft]Manual partitioning not possible at installation
I have the same problem with Knot2 on Dell XPS M1710. It has a ICH-7 SATA hard drive, in case that matters. And GParted starts up just fine from the same knot2 livecd. Erasing a partition to free up the space and selecting "Use the largest continuous free space" hangs too in the same way. -- [Edgy Eft]Manual partitioning not possible at installation https://launchpad.net/bugs/57435 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 57500] Re: Version 0.10 from sid fixes many bugs
And how would it get one? Users of edgy are reporting bugs that are fixed in 0.10. It is an important problem fixing release. ** Changed in: sbackup (Ubuntu) Status: Needs Info => Unconfirmed -- Version 0.10 from sid fixes many bugs https://launchpad.net/bugs/57500 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 61154] Re: Frequency settings not saved
Fixed in 0.10 ** Changed in: sbackup (Ubuntu) Status: Unconfirmed => Rejected -- Frequency settings not saved https://launchpad.net/bugs/61154 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 63354] Re: Dapper -> Edgy failure: sbackup configuration file has conflicts
It seems that marking /etc/sbackup.conf and /etc/cron.d/sbackup as conffiles was a packaging mistake. I will create a small update and see if MOTU will let it enter Edgy. It is in a freeze after all. Newer sbackup can handle configuration files from older versions and will update it when the configurator is run. ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Unconfirmed => Confirmed -- Dapper -> Edgy failure: sbackup configuration file has conflicts https://launchpad.net/bugs/63354 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 63354] Re: Dapper -> Edgy failure: sbackup configuration file has conflicts
This is fixed in 0.10.2 release along with a couple other small, but annoying bugs. Trying to get it into edgy and etch now. -- Dapper -> Edgy failure: sbackup configuration file has conflicts https://launchpad.net/bugs/63354 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 64402] Bugfix-only release 0.10.2 is available - please sync
Public bug reported: A bugfix-only release has been made for edgy. It fixes bug #63354 and couple other small, but annoying bugs that were reported to sourceforge. All fixes except one are one-liners, the #63354 fix is around 5 lines. All fixes tested. ** Affects: sbackup (Ubuntu) Importance: Undecided Assignee: Ubuntu Sponsors for universe Status: Unconfirmed -- Bugfix-only release 0.10.2 is available - please sync https://launchpad.net/bugs/64402 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 64402] Re: Bugfix-only release 0.10.2 is available - please sync
Changelog: * "Simple fixes for simple but annoying bugs" release - intended to go into Etch and Edgy. * Manage /etc/sbackup.conf and /etc/cron.d/sbackup as config files, but not as conffiles, to remove unneeded "config changes upstream" prompt on upgrade. SBackup can handle old config gracefuly. * Brown paperbag one-liner fix on incremental backup time not being counted properly causing incremental backups to be done all the time. * Reduce nice level of sbackupd process to lowest possible priority (+19) * An empty regex matches everything, so avoid those -- Bugfix-only release 0.10.2 is available - please sync https://launchpad.net/bugs/64402 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 64402] Re: Bugfix-only release 0.10.2 is available - please sync
Assigning to ubuntu-universe-sponsors to get ack for the sync. Note: no Ubuntu specific changes. ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Ubuntu Sponsors for universe ** Changed in: sbackup (Ubuntu) Assignee: Ubuntu Sponsors for universe => MOTU UVF Team -- Bugfix-only release 0.10.2 is available - please sync https://launchpad.net/bugs/64402 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 70125] Re: Cannot save settings
*** This bug is a duplicate of bug 69767 *** ** This bug has been marked a duplicate of bug 69767 Time for backup always reverts to "never" -- Cannot save settings https://launchpad.net/bugs/70125 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44260] Re: sbackup remote target fails
what do you mean by "ssh pipe"? What exactly are you trying to write into the URL field? (mask the password obviosely) There is currently a bug that shared key logins via ssh do not work correctly. Only username/password authentification is currently supported. ** Changed in: sbackup (Ubuntu) Status: Fix Committed => Needs Info -- sbackup remote target fails https://launchpad.net/bugs/44260 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44260] Re: sbackup remote target fails
The problem most likely is that ssh key of the server has changed and Gnomevfs rejects connecting to that server on such basis. Try erasing /root/.ssh/known_hosts and see if that helps. ** Changed in: sbackup (Ubuntu) Status: Needs Info => Confirmed -- sbackup remote target fails https://launchpad.net/bugs/44260 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44260] Re: sbackup remote target fails
I am not sure why the colon is needed for you. It works without the colon for me and the directory is always absoulute as in ssh://username:[EMAIL PROTECTED]/home/user/backupdir I will try to investigate this how GnomeVFS handles that colon and try to come up with a good way to explain when it is needed. -- sbackup remote target fails https://launchpad.net/bugs/44260 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 156542] Fullscreen wine applications disapear from window list on workspace switch
Public bug reported: Binary package hint: compiz If compiz is enabled on a gutsy installation (upgraded from feisty) and a wine application is run in fullscreen mode (such as WoW), then the window of this application disappears from the window list when the workspace is switched using the Ctrl+Alt+Right/Left keyboard shortcut. The application is still running, according to top, but getting back to it is impossible as it does not show up on the workspace that it was on (or any other workspace) and does not show up in the global window list. Could not reproduce on native OpenGL games as they apparently do not allow switching out of them (either with Alt-Tab or Ctrl-Alt- Right/Left). Switching fullscreen workarounds and unredirect fulscreen windows options in compiz advanced preferences has no effect. ** Affects: compiz (Ubuntu) Importance: Undecided Status: New -- Fullscreen wine applications disapear from window list on workspace switch https://bugs.launchpad.net/bugs/156542 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 113864] Re: Display password in cleartext
I think Christopher means the error/warning/info messages that sbackupd.py or upgrade-backups.py print sometimes. Some of these messages contain full URLs of the files or folders in question and that would include the password for remote configurations. -- Display password in cleartext https://bugs.launchpad.net/bugs/113864 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 116571] Re: [apport] simple-backup-config crashed with NoSectionError in get()
http://sourceforge.net/project/showfiles.php?group_id=145360&package_id=159869&release_id=509613 Please try the .deb from the above link, that should fix this bug. -- [apport] simple-backup-config crashed with NoSectionError in get() https://bugs.launchpad.net/bugs/116571 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 126278] Re: sbackup does not purge old backups logarithmically
*** This bug is a duplicate of bug 71698 *** https://bugs.launchpad.net/bugs/71698 I am very grateful for tracing this bug down. I had handed over development of SBackup to another person when I had little time to contribute, but apparently that did not work as well as I hoped. I will verify this bug fix myself and if it work, I will make a small update with this bug fix and a couple other small simple bugs that ave been reported over last few months. Thank you very much for the fix, again! -- sbackup does not purge old backups logarithmically https://bugs.launchpad.net/bugs/126278 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 139382] Re: Broadcom 4321 AG does not work
The wireless chipset in question does not work with bcm43xx, but works with NDISwrapper. I should probably make a new report of this with proper debug info. -- Broadcom 4321 AG does not work https://bugs.launchpad.net/bugs/139382 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 105168] Re: [apport] sbackupd crashed with KeyError in btree_r_add()
Looks like a usb key was removed during the backup process and that usb key was included in the backup by the user - /media is excluded by default. Should not crash on that though. -- [apport] sbackupd crashed with KeyError in btree_r_add() https://bugs.launchpad.net/bugs/105168 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 106153] Re: [Whislist] Let Sbackup use anacron over cron
Please do not ue these patches unless you want to help in the development and can handle problems with untested software. I am currently reviewing the patches, they look like they have good solutions to the problems we have and that a new release of SBackup for all versions of Ubuntu, Debian and other distros is imminent after these fixes are integrated and tested. -- [Whislist] Let Sbackup use anacron over cron https://bugs.launchpad.net/bugs/106153 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 106153] Re: [Whislist] Let Sbackup use anacron over cron
** Also affects: sbackup (upstream) Importance: Undecided Status: Unconfirmed ** Changed in: sbackup (upstream) Importance: Undecided => Medium Status: Unconfirmed => In Progress -- [Whislist] Let Sbackup use anacron over cron https://bugs.launchpad.net/bugs/106153 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 102577] Re: sbackup is very slow when working on many files
I love your results there. I and Aziz will check that patch and it will surely go into the next release if no negative sideeffects can be found. You could take a look a code block that starts with "if listing = []:". It fills up the information about previously backuped files into prev. The other culprid could be the use of prev.count() in function do_backup(). I am not sure why I used it there, but it could be that I forgot about "object in list" syntax and the one I tried to use did not cope very well with things missing from the list. Try changing that and looking for anything bad in the prev code block and see if that helps your use case. -- sbackup is very slow when working on many files https://bugs.launchpad.net/bugs/102577 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 56912] Re: Impossible to configure more the 4 keyboard layouts
I still have not found a good enough reasoning behind having keyboard layouts being equal with keyboard groups. Switching over the whole keyboard configuration when the input langage changes seems to be the most flexible approach to the situation. Some languages could have only one keyboard group, while others could use up to 4 groups if they desire so. The only problem that needs to be solved for that is a way to link user space keyboard switcher application to the X server (as an X protocol extension, probably) so that this keyboard switcher can elect to receive keyboard combinations to switch languages. A more efficient way of switching the keyboard settings of an X server could be implemented in the same extension. For example, the keyboard switcher could either feed X sever with a precompiled keyboard layout or ask it to switch to a previosely used layout from the X servers cache. There are multiple input method frameworks out there (SCIM for example) that have to extend X keyboard layouts way beyond the protocol to make thier languages work as the users expect. It would be very nice if developers of these frameworks could come together and forge an official replacement of xkb with a new X extension, api and ui parts that would implement all needed features for all languages and would not have any arbitrary limits. -- Impossible to configure more the 4 keyboard layouts https://launchpad.net/bugs/56912 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 69767] Re: Time for backup always reverts to "never"
Confirmed. Apparently not many people used edgy before its release, so some strange bugs remained. I will look into that. To make it work, as a workaround, create a file /etc/cron.d/sbackup containing: 0 4 * * * rootif [ -x /usr/sbin/sbackupd ]; then /usr/sbin/sbackupd; fi; ** Changed in: sbackup (Ubuntu) Assignee: (unassigned) => Aigars Mahinovs Status: Unconfirmed => Confirmed -- Time for backup always reverts to "never" https://launchpad.net/bugs/69767 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 78349] Re: Empty past backup directory causes simple-backup to fail silently
You are not the only one using it or seeing this bug (and few others). It is just that small changes introduced several bugs that only appear down the line of use right before the development efforts basically stopped because of Real Life interference (finishing up a Masters degree in a couple months). -- Empty past backup directory causes simple-backup to fail silently https://launchpad.net/bugs/78349 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 79302] Re: simple-backup-config doesn't work
What version of sbackup are you running and on which Ubuntu? -- simple-backup-config doesn't work https://launchpad.net/bugs/79302 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 69767] Re: Time for backup always reverts to "never"
The essence of the bug is that when you switch from "manual backups only" to "custom backup settings" on the first page, the top selector on the "Time" page remains in the "never" position. If you go to the time page and select some backup frequency (daily backups at 4:00 are recommended for always-on PCs), then it will be saved. -- Time for backup always reverts to "never" https://launchpad.net/bugs/69767 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 532633] Re: [Master] Window Control buttons: position/order/alignment
I think the compromise is a good one - I have just updated to the newest packages in 10.04 and changed between the two themes: Human and Radiance. Human had buttons on the right and Radiance had buttons on the left. In the end I will stay with Human theme for the button layout, but change all its elements to Radiance - so I have Radiance with buttons on the right and it looks good. IMHO it can stay this way for 10.04, I bet there will be a bunch of themes for the both sides and we'll be able to gather some data from that as well - how many right-button themes and how many left-button themes there are in 6 months. -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 569694] [NEW] date/time applet steals focus when refreshing weather
Public bug reported: Binary package hint: gnome-panel When dime/date applet has several locations set and a checkbox is set to display temperature and weather, then this applet steals focus every time it updates the weather information. I could be wrong with my diagnosis above, so let me expand: 1. Fully up to date Lucid (upgraded from Karmic) 2. date/time applet on the Gnome panel is set to show temperature and weather in one of the two locations that it has defined 3. every hour or so, something steals keyboard focus - if I am typing text, I can no longer type it, if I am watching a movie I can no longer pause it, ... 4. I need to click into the current application to regain focus (or use Alt-Tab) 5. Every time the focus is stolen, before I click to return focus to current application, the date/time applet on the panel in highlighted with a pinkish colour (I use Radiance theme) This bug will annoy the crap out of a LOT of users, if this goes live and it is very likely to cause serious problems with fixing the bug #1. ** Affects: gnome-panel (Ubuntu) Importance: Undecided Status: New -- date/time applet steals focus when refreshing weather https://bugs.launchpad.net/bugs/569694 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 488981] Re: use wine-pulse for wine-packages
** Also affects: wine (Debian) Importance: Undecided Status: New -- use wine-pulse for wine-packages https://bugs.launchpad.net/bugs/488981 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 437749] Re: Ubuntu should ship wine with the wine-pulse patches
Can anyone update on what is the status of this issue and who is the person to decide on this? Is there a Ubuntu wine maintainer or is it taken straight from Debian? -- Ubuntu should ship wine with the wine-pulse patches https://bugs.launchpad.net/bugs/437749 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 474582] Re: Wine keeps loosing sound
For me only switching to wine-pulseaudio backend helped me with such problems. -- Wine keeps loosing sound https://bugs.launchpad.net/bugs/474582 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 421218] Re: No sound card available to programs running under wine.
Switching to wine-pulseaudio would solve this bug. -- No sound card available to programs running under wine. https://bugs.launchpad.net/bugs/421218 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 488981] Re: use wine-pulse for wine-packages
Wine-pulse backend has worked for me for almost a year now. I do not understand the reasoning for WineHQ not to include it. And especially I am baffled that Wine in Ubuntu does not have support for the default sound output system of Ubuntu. Please update Wine before Lucid release to include PulseAudio support and use it by default. In my experience this solves all sound related problems that Wine has on Ubuntu systems. -- use wine-pulse for wine-packages https://bugs.launchpad.net/bugs/488981 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 437749] Re: Ubuntu should ship wine with the wine-pulse patches
What is incomplete in this patch? I have been using it for like a year now with no ill sidefects and with no missing functionality. -- Ubuntu should ship wine with the wine-pulse patches https://bugs.launchpad.net/bugs/437749 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 532633] Re: [Master] Window Control buttons: position/order/alignment
Just to clarify - on my current lucid system I can choose between human theme that has buttons on the right and radiance theme with buttons on the left. Is the decision to switch all themes to left side buttons or will it stay as it is now and this final part of the button order only applies to the new themes (radiance and ambiance)? I mean technically it looked like a great solution when old themes have old button placement and the new themes have the new button placement (whatever it may be) allowing people an easy choice. -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 532633] Re: [Master] Window Control buttons: position/order/alignment
** Description changed: === Master Bug === (As per the design team's request) All bugs concerning the window controls are being duped to this master bug. All the decisions regarding the position/order/alignment will be dealt as a one. === Desire === "Please centre the window title like in previous Human theme, and also re-order the window controls in classic order, positioned on the right side (menu - title - minimize, maximize close)." Workaround - To revert to old layout, run in a terminal: + 1. Only new themes, such as Ambiance and Radiance will have buttons on the left by default. You can continue using old themes, such as Human, in Lucid and those themes will continue to have buttons on the right side (according to http://launchpad.net/ubuntu/+bug/532633/comments/577 ). It is even possible to switch to Human theme and then 'Customize' it to use all the elements from Radiance theme, but the button layout will stay on the right. + + 2. To revert to old layout, run in a terminal: $ gconftool-2 --set /apps/metacity/general/button_layout --type string "menu:minimize,maximize,close" Responses Canonical Design Team Leader (Ivanka Majic) - 2010-03-10 and 2010-03-17 http://www.ivankamajic.com/?p=281 ("Those pesky buttons") http://podcast.ubuntu-uk.org/2010/03/17/s03e03-behind-the-screen/ (30-minute interview starting at 39:10) Ubuntu SABDFL (Mark Shuttleworth) replies on this bug report - 2010-03-15 onwards http://launchpad.net/ubuntu/+bug/532633/comments/110 http://launchpad.net/ubuntu/+bug/532633/comments/167 http://launchpad.net/ubuntu/+bug/532633/comments/179 http://launchpad.net/ubuntu/+bug/532633/comments/202 to 204 http://launchpad.net/ubuntu/+bug/532633/comments/218 http://launchpad.net/ubuntu/+bug/532633/comments/248 http://launchpad.net/ubuntu/+bug/532633/comments/272 http://launchpad.net/ubuntu/+bug/532633/comments/388 http://launchpad.net/ubuntu/+bug/532633/comments/410 http://launchpad.net/ubuntu/+bug/532633/comments/426 to 427 http://launchpad.net/ubuntu/+bug/532633/comments/469 http://launchpad.net/ubuntu/+bug/532633/comments/503 http://launchpad.net/ubuntu/+bug/532633/comments/564 ("Final decree"; close-min-max ordering) Canonical Ubuntu Community Leader (Jono Bacon) response - 2010-03-24 http://www.ustream.tv/recorded/5683123 (6 minutes starting at 26:24) === Code of Conduct === To maintain a respectful atmosphere, while commenting please follow the code of conduct - http://www.ubuntu.com/community/conduct/ . -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 583944] [NEW] swt-gtk notifications show up as black on black
Public bug reported: When a SWT application shows a notification bubble on a tray icon, the text of the bubble is invisible as it is shown black on black background. The icon in the bubble is displayed fine. Also tooltip of the same icon is white on black as intended. For an easy to test example, see http://sourceforge.net/projects/davmail/forums/forum/644057/topic/3693635 ** Affects: swt-gtk (Ubuntu) Importance: Undecided Status: New -- swt-gtk notifications show up as black on black https://bugs.launchpad.net/bugs/583944 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 581607] [NEW] tclsh crashes on 'require package Expect' with SIGSEGV
Public bug reported: Binary package hint: tcl8.4 $ tclsh % package require Expect Segmentation fault Works fine with tcl8.5. Verified on three separate installations, one of them was an upgrade. ** Affects: tcl8.4 (Ubuntu) Importance: Undecided Status: New -- tclsh crashes on 'require package Expect' with SIGSEGV https://bugs.launchpad.net/bugs/581607 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 291062] Re: MASTER - Network Manager sometimes has "enable networking" unchecked/disabled when resuming from suspend
Getting a very similar problem here in lucid - after suspend and resume the NetworkManager is disabled, if I enable it (by checking the 'enable networking' or by running 'dbus-send --print-reply --system --dest=org.freedesktop.NetworkManager /org/freedesktop/NetworkManager org.freedesktop.NetworkManager.wake' it starts working again. A sure way to replicate this would be to suspend and then remove the laptops power supply and battery to force a shutdown, then when starting back up NetworkManager will be disabled. Maybe NM sleep status should be reset during boot? -- MASTER - Network Manager sometimes has "enable networking" unchecked/disabled when resuming from suspend https://bugs.launchpad.net/bugs/291062 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 549347] Re: When trying to update to 10.04 from 9.10 the update crashes.
*** This bug is a duplicate of bug 549292 *** https://bugs.launchpad.net/bugs/549292 ** This bug has been marked a duplicate of bug 549292 Can't update to 10.04 beta -- When trying to update to 10.04 from 9.10 the update crashes. https://bugs.launchpad.net/bugs/549347 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 549347] Re: When trying to update to 10.04 from 9.10 the update crashes.
*** This bug is a duplicate of bug 549292 *** https://bugs.launchpad.net/bugs/549292 Have the same problem here on a i386 release of 9.10 ** Package changed: gnome-terminal (Ubuntu) => update-manager (Ubuntu) -- When trying to update to 10.04 from 9.10 the update crashes. https://bugs.launchpad.net/bugs/549347 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 549292] Re: Can't update to 10.04 beta
** Changed in: update-manager (Ubuntu) Status: New => Confirmed -- Can't update to 10.04 beta https://bugs.launchpad.net/bugs/549292 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 549480] [NEW] If side-by-side is chosen and the autopartitioning fails - partman-auto enters an endless loop
Public bug reported: Binary package hint: partman-auto When installing 10.04 beta 1 on a computer with a complex partition system (sorry, no snapshot of the partition state before the install) the side-by-side option was chosen for the install. The progress bar was at 50% with message 'changing partition size' when an error message popped up with title "ERROR!!!" and text "Unable to satisfy all constrains on the partition". Clicking the continue button on this message only caused it to appear again in an endless loop and the installation can not be continued. The workaround is to use manual partitioning or let Ubuntu take over the whole disk in such situations. ** Affects: partman-auto (Ubuntu) Importance: Undecided Status: New -- If side-by-side is chosen and the autopartitioning fails - partman-auto enters an endless loop https://bugs.launchpad.net/bugs/549480 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 549292] Re: Can't update to 10.04 beta
Now it started to work again, it looks like the bug was fixed on the servers. If you still have the bug - upgrade your packages to the latest updates of 9.10 and see if that fixes it. -- Can't update to 10.04 beta https://bugs.launchpad.net/bugs/549292 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 549292] Re: Can't update to 10.04 beta
** Changed in: update-manager (Ubuntu) Status: Confirmed => Fix Released -- Can't update to 10.04 beta https://bugs.launchpad.net/bugs/549292 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 532633] Re: [Master] Window Control buttons: position/order/alignment
Pako, that's exactly the reason why window manipulation actions should be on the right - the left is crouded with easy to access and easy to target application menus and toolbars, it is also close the the Applications menu, but if you *really* want to close a program, this action should significantly differ from the routine movement to the top- left, that is why the close button MUST be on the top right, so that there is zero chance of confusing this very destructive and rare action with all the other actions that we do all the time in the menu and on the toolbars. -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 532633] Re: [Master] Window Control buttons: position/order/alignment
Too many control elements in the same place actually increase distance between all of them due to Fitts law - if there are many elements in one area, you need to slow down the mouse movement to accurately hit the one specific target you are aiming for. Moving such dangerous button as 'Close' into the mix increases it even more as you will want to be REALLY careful not to close your window by accident. In short - moving these buttons left actually decreases the speed that you can work with menus, toolbars and Applications menu - in has a hard negative impact on the usability of all elements around it. While a rare 'Close' action might be sped up a bit, all the freqent actions of accessing the menu, using toolbar buttons and using Applications menu are significantly slowed down by the presence of the explosive 'Close' button in that area of the screen. While you might the merfect mouse sharpshooter, keeping in mind the needs of people with less precise mouse movements is also important - the precision needed to hit these buttons on the left among all the other control elements there is much higher than before - people with special needs and movement problems will have a much harder time navigating this environment. This is why I would recommend the layout of 'minimize,maximize,title ,close'. Accidental clicks on minimize or maximize are easy to undo and maximize can be also accessed by double-clicking the title, so minimize should be in the corner as it is harder to access otherwise. -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 532633] Re: [Master] Window Control buttons: position/order/alignment
@ scholli > > Moving such dangerous button as 'Close' into the mix increases it even more > > as you will want to be REALLY careful not to close your window by accident." > This should be the reason why the ’Close’-button is in the third place... for ’no’ clicking by accident. No, the new location of the Close button is not in any safe place - it is right next to the 'Edit' and 'View' menus in most applications and right next to the middle of the 'Applications' menu for maximized windows (or any windows put into the top-left corner of the screen. It is surrounded by useful functionality, which is not harder to reach realiably because of this mine. Also, if 'ugly' is a valid argument, I think it looks ugly when everything is piled up in one side of the window and the other side is bare and unused. -- [Master] Window Control buttons: position/order/alignment https://bugs.launchpad.net/bugs/532633 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 1480548] Re: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence'
Forwarded upstream - https://github.com/allanlei/python- zipstream/issues/9 ** Changed in: python-zipstream (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1480548 Title: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence' To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-zipstream/+bug/1480548/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1480548] Re: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence'
Fixed in sid in 1.1.3-1 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1480548 Title: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence' To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-zipstream/+bug/1480548/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1480548] Re: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence'
** Changed in: python-zipstream (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/1480548 Title: FTBFS: AssertionError: seek() missing 1 required positional argument: 'whence' To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-zipstream/+bug/1480548/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 869564] [NEW] quicktime demuxer not found after update to Ubuntu 11.10
Public bug reported: qtdemux was moved from bad to good during this cycle and then renamed to isomp4 according to changelogs, but it looks like the relevant mapping were not updated, because trying to open files with that muxer in Ubuntu 11.10 (gst-plugins-good0.10 version 0.10.30-1ubuntu7) fails with the message that "quicktime demuxer" plugin can not be found. An example of such video is the downloadable NBC Nightly news video podcast. ** Affects: gst-plugins-good0.10 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/869564 Title: quicktime demuxer not found after update to Ubuntu 11.10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gst-plugins-good0.10/+bug/869564/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 371897]
While as a fellow developer I understand the point of core Wine developers of not accepting large and complex patches who, by previous experience, is unlikely to be there to maintain it in the future, thus putting the maintenance burden of this new code on the very same core Wine devs, ... ... at the same time considering the time frame of the bug, importance of the bug to a large fraction of Wine users and the fact that the solution is already well tested and used by most users of distribution packages, IMHO core developers should bite the bullet and try to review this code on its technical merits and have one of the core devs take over the responsibility for the patch, its further development and inclusion into core. Continuing to keep this out-of-tree is guaranteed to keep the annoyance going for all parties involved. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/371897 Title: Occasional sound drops in Wine via PulseAudio To manage notifications about this bug go to: https://bugs.launchpad.net/wine/+bug/371897/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1092893] [NEW] screen-message does not take in account effects of Unity
Public bug reported: Typically sm is supposed to work full-screen, but when started in Unity, the left-side dock and top panel both take away some screen space from sm. That would be fine in itself, but sm does not take in consideration this fact and so bottom and right part of the sm output window gets cut off at the screen border, thus loosing some of the last letters and part of the bottom line. ** Affects: screen-message (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1092893 Title: screen-message does not take in account effects of Unity To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/screen-message/+bug/1092893/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1199952] [NEW] memory leak in xfce4-indicator-plugin
Public bug reported: Ubuntu 13.04 xfce4-indicator-plugin: Installed: 0.5.0-1ubuntu2 I have just observed the xfce4-indicator-plugin process consuming just over 1068Mb of RSS memory on a desktop with 9 day uptime. During this time I've had in there all the usual XFCE4 icons + skype, gPodder, Transmussion, Dropbox, Wine and native versions of Steam and also had some network problems that caused me to swich around between different network configuratiosn and change (add/delete/edit) network configurations. I had to stop the computer, unfortunately and after restarting all software and icons, the RSS usage was normal at 13 Mb. Please let me know what information would be most useful for debugging if I manage to reproduce the problem. ** Affects: xfce4-indicator-plugin (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1199952 Title: memory leak in xfce4-indicator-plugin To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-indicator-plugin/+bug/1199952/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1199952] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1199952/+attachment/3733783/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1199952 Title: memory leak in xfce4-indicator-plugin To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-indicator-plugin/+bug/1199952/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1199952] Re: memory leak in xfce4-indicator-plugin
apport information ** Tags added: apport-collected raring third-party-packages ** Description changed: Ubuntu 13.04 xfce4-indicator-plugin: Installed: 0.5.0-1ubuntu2 I have just observed the xfce4-indicator-plugin process consuming just over 1068Mb of RSS memory on a desktop with 9 day uptime. During this time I've had in there all the usual XFCE4 icons + skype, gPodder, Transmussion, Dropbox, Wine and native versions of Steam and also had some network problems that caused me to swich around between different network configuratiosn and change (add/delete/edit) network configurations. I had to stop the computer, unfortunately and after restarting all software and icons, the RSS usage was normal at 13 Mb. - Please let me know what information would be most useful for debugging - if I manage to reproduce the problem. + Please let me know what information would be most useful for debugging if I manage to reproduce the problem. + --- + ApportVersion: 2.9.2-0ubuntu8.2 + Architecture: i386 + DistroRelease: Ubuntu 13.04 + InstallationDate: Installed on 2012-12-29 (194 days ago) + InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2) + MarkForUpload: True + NonfreeKernelModules: nvidia + Package: xfce4-indicator-plugin 0.5.0-1ubuntu2 + PackageArchitecture: i386 + ProcVersionSignature: Ubuntu 3.8.0-26.38-generic 3.8.13.2 + Tags: third-party-packages raring + Uname: Linux 3.8.0-26-generic i686 + UpgradeStatus: Upgraded to raring on 2013-04-27 (75 days ago) + UserGroups: adm cdrom dip fuse libvirtd lpadmin plugdev sambashare sudo ** Attachment added: "Dependencies.txt" https://bugs.launchpad.net/bugs/1199952/+attachment/3733782/+files/Dependencies.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1199952 Title: memory leak in xfce4-indicator-plugin To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-indicator-plugin/+bug/1199952/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1199952] Re: memory leak in xfce4-indicator-plugin
Not sure if that is relevant to the cause, but from yesterday the RSS of the process rose from 13 Mb to 18 Mb. After using the network manager indicator to dicsonnect from the network and reconnect a couple of times the memory use grew to 21 Mb. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1199952 Title: memory leak in xfce4-indicator-plugin To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xfce4-indicator-plugin/+bug/1199952/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 869564] Re: quicktime demuxer not found after update to Ubuntu 11.10
*** This bug is a duplicate of bug 856988 *** https://bugs.launchpad.net/bugs/856988 ** This bug has been marked a duplicate of bug 856988 totem cannot play quicktime file after upgrade to oneiric -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/869564 Title: quicktime demuxer not found after update to Ubuntu 11.10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gst-plugins-good0.10/+bug/869564/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 532633] Re: [Master] Window Control buttons: position/order/alignment
You are way late to the party here mate. :) With the Unity up and running this change makes perfect sense. The close button is in the top left corner of the screen and is very accessible. I was a skeptic, but now I am converted. Minor quible: it is not in the very corner but a few pixels off, but I guess to prevent people closing windows by accidentally brushing the mouse. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/532633 Title: [Master] Window Control buttons: position/order/alignment To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/532633/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 764473] [NEW] Skype notification area icon missing in Ubuntu 11.04 Classic desktop
Public bug reported: Binary package hint: skype When using Ubuntu 11.04 beta and Skype (both from their website and from the partner repository) the Skype panel icon is missing in the Classic desktop mode (the notification area applet is on the panel and shows other icons, such as Pidgin and Workrave, both no Skype). The icon shows up fine in the Unity interface. ** Affects: skype (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/764473 Title: Skype notification area icon missing in Ubuntu 11.04 Classic desktop -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 517148] Re: Font selection drop-down usability suffers when hundreds or thousands of fonts are installed
I am pretty sure this is a bug in a higher level library that provides the drop-down combobox (GTK?) and that this is also a regression. I clearly remember being able to jump around drop-down comboboxes with a keyboard before, but now it is not working (including 11.04) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/517148 Title: Font selection drop-down usability suffers when hundreds or thousands of fonts are installed To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gucharmap/+bug/517148/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 593110] Re: [Users and Groups] Advanced Settings: User Privileges on using Audio/Video not descriptive enough
*** This bug is a duplicate of bug 433654 *** https://bugs.launchpad.net/bugs/433654 Why is this marked as a duplicate of #433654 ? It was explicitly split from that bug as the functionality of the backend is a separate issue from the wording in a frontend. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/593110 Title: [Users and Groups] Advanced Settings: User Privileges on using Audio/Video not descriptive enough -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 140011] Re: Failed to load terminal capabilities from '/etc/termcap'
It is also a bit more than just annoying. On my computer during natty upgrade my gnome-terminal did not have the enter key, so effectively it was non-functional until I added the simlink. If the upgrade were to break for some reason, I would have a system with an non-functional teminal. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/140011 Title: Failed to load terminal capabilities from '/etc/termcap' -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 764473] Re: Skype notification area icon missing in Ubuntu 11.04 Classic desktop
Smothing here is intermittent. After a few restarts of Skype and a few times removing/adding the notification area to the panel, the icon showed up, only to be gone again after relogging. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/764473 Title: Skype notification area icon missing in Ubuntu 11.04 Classic desktop -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 655418] Re: left click stops working after playing sound
I just got the same symptoms - my culprit is an A4Tech wireless keyboard/mouse combo. As soon as the receiver for it is plugged in, all mice stop working - the left click key down even registers around 5% of the time and the key up event around 10% of the time (as shown by xev). I have the hardware available for debugging and the event is 100% reproducible on fully up-to-date Ubuntu 10.10. This wireless keyboard has 'special' keys, including: power, back, forward, refresh, home, search and email keys. Model: GLS-5. This has nothing to do with a similar sounding flash player bug. -- left click stops working after playing sound https://bugs.launchpad.net/bugs/655418 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