[Bug 238061] Re: time: Time does not parse its parameters
Hi Marco, thanks for taking the time to report this issue. This behavior - annoying as it may be - is however entirely expected. Quoting from the bash manpage: " Pipelines A pipeline is a sequence of one or more commands separated by the char‐ acter |. The format for a pipeline is: [time [-p]] [ ! ] command [ | command2 ... ] [...] If the time reserved word precedes a pipeline, the elapsed as well as user and system time consumed by its execution are reported when the pipeline terminates. The -p option changes the output format to that specified by POSIX. The TIMEFORMAT variable may be set to a format string that specifies how the timing information should be displayed; see the description of TIMEFORMAT under Shell Variables below." So bash has an internal version of "time" and it only accepts -p as a parameter. /usr/bin/time is a separate program, and, as you noticed, it works correctly if you make sure *it* is called and not bash's version. If you specifically want to change the output format, the bash variable TIMEFORMAT may be of use to you. See also question G4 of the bash FAQ here: http://tiswww.case.edu/php/chet/bash/FAQ As for documenting this in the manpage, it already is. Quoting from time(1): "Users of the bash shell need to use an explicit path in order to run the external time command and not the shell builtin variant. On system where time is installed in /usr/bin, the first example would become /usr/bin/time wc /etc/hosts" I hope this clears everyhting up :) ** Changed in: bash (Ubuntu) Status: New => Invalid ** Changed in: time (Ubuntu) Status: New => Invalid -- time: Time does not parse its parameters https://bugs.launchpad.net/bugs/238061 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 223882] Re: .configure script completion prints error messages when tried with insufficient permissions
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Low -- .configure script completion prints error messages when tried with insufficient permissions https://bugs.launchpad.net/bugs/223882 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 219971] Re: Incorrect completion for mount with \040 in fstab
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Low Status: Confirmed => Triaged -- Incorrect completion for mount with \040 in fstab https://bugs.launchpad.net/bugs/219971 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 238160] Re: missing apps cause exit
bpotato, thanks for your report. However I cannot reproduce the problem on my machine: [EMAIL PROTECTED]:~$ klines & [1] 18165 [EMAIL PROTECTED]:~$ The program 'klines' is currently not installed. You can install it by typing: sudo apt-get install klines bash: klines: command not found [1]+ Exit 127klines [EMAIL PROTECTED]:~$ Do you have any special gnome-terminal or bash configuration? Or any other idea what might be different on your system? Thanks, Mika -- missing apps cause exit https://bugs.launchpad.net/bugs/238160 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 136215] Re: Avahi aware ssh client?
** Changed in: bash-completion (Ubuntu) Status: New => Triaged -- Avahi aware ssh client? https://bugs.launchpad.net/bugs/136215 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 219406] Re: bash autocomplete broken when a : is in the path
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Medium Status: Confirmed => Triaged -- bash autocomplete broken when a : is in the path https://bugs.launchpad.net/bugs/219406 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 139674] Re: bash completion doesn't perform filename processing for ssh -i
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Low Status: Confirmed => Triaged -- bash completion doesn't perform filename processing for ssh -i https://bugs.launchpad.net/bugs/139674 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 106500] Re: bash freezes when using completion as normal user.
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Medium Status: Confirmed => Triaged -- bash freezes when using completion as normal user. https://bugs.launchpad.net/bugs/106500 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 177243] Re: Bash command completion puts backslash in front of beginning dollar sign
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Medium ** Changed in: bash-completion (Ubuntu) Status: Confirmed => Triaged -- Bash command completion puts backslash in front of beginning dollar sign https://bugs.launchpad.net/bugs/177243 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 194419] Re: error message when no completions and failglob is on
** Changed in: bash-completion (Ubuntu) Importance: Undecided => Medium Status: Fix Committed => Triaged -- error message when no completions and failglob is on https://bugs.launchpad.net/bugs/194419 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 231983] Re: There should be no .bashrc, .bash_logout and .profile in newly created user home directories
Sebastian, I agree with mcas. I would encourage you to create a spec about this feature and discuss this with the Ubuntu community. I'll close this bug for now. Regards, Mika ** Changed in: bash (Ubuntu) Status: New => Invalid -- There should be no .bashrc, .bash_logout and .profile in newly created user home directories https://bugs.launchpad.net/bugs/231983 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 231258] Re: aliases not accounted for after first command
Iain, thanks for reporting this. The behavior is however as expected. Quoting from the bash manpage: ALIASES Aliases allow a string to be substituted for a word when it is used as the first word of a simple command. The shell maintains a list of aliases that may be set and unset with the alias and unalias builtin commands (see SHELL BUILTIN COMMANDS below). The first word of each simple command, if unquoted, is checked to see if it has an alias. If so, that word is replaced by the text of the alias. The characters /, $, ‘, and = and any of the shell metacharacters or quoting characters listed above may not appear in an alias name. The replacement text may contain any valid shell input, including shell metacharacters. The first word of the replacement text is tested for aliases, but a word that is identical to an alias being expanded is not expanded a second time. AFAIK it has always been the case that aliases are only applied for the first word of a command. As a workaround, couldn't you just use alias visudo='sudo -E visudo' and the just call visudo (without sudo)? Anyway, this is not a bug in bash. Regards, Mika ** Changed in: bash (Ubuntu) Status: New => Invalid -- aliases not accounted for after first command https://bugs.launchpad.net/bugs/231258 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 228747] Re: .bashrc test syntax different between user and root
Maybe someone can check if this is also the case on a fresh install... ** Changed in: bash (Ubuntu) Importance: Undecided => Wishlist Status: New => Triaged -- .bashrc test syntax different between user and root https://bugs.launchpad.net/bugs/228747 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 228187] Re: Hardy Heron .bashrc Forced Color Prompt Mispell Error
*** This bug is a duplicate of bug 223256 *** https://bugs.launchpad.net/bugs/223256 Shinkan, thanks for reporting this bug. It has however already been reported and is fixed in the latest bash package for hardy. Regards, Mika ** This bug has been marked a duplicate of bug 223256 console color is not set correctly by .bashrc -- Hardy Heron .bashrc Forced Color Prompt Mispell Error https://bugs.launchpad.net/bugs/228187 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 149527] Re: .profile not sourced anymore
This was a bug in the bash-completion package and has been fixed in hardy. ** Changed in: bash (Ubuntu) Status: New => Invalid -- .profile not sourced anymore https://bugs.launchpad.net/bugs/149527 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 217495] Re: Password authetication failure - Hardy
pamindic, thank ypu for reporting your problem. Do you still experience these problems with Ubuntu 8.04 (Hardy)? Regards, Mika ** Changed in: bash (Ubuntu) Status: New => Incomplete -- Password authetication failure - Hardy https://bugs.launchpad.net/bugs/217495 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 193994] Re: Bad French translation in bash in command bg
** Changed in: bash (Ubuntu) Status: Incomplete => Fix Released -- Bad French translation in bash in command bg https://bugs.launchpad.net/bugs/193994 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 238160] Re: missing apps cause exit
Might this be related to #185366 ? -- missing apps cause exit https://bugs.launchpad.net/bugs/238160 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 175740] Re: Foreground ('fg') fails to resume stopped processes intermittently
Aaron, I cannot reproduce this in Hardy. Do you still have the problem? If yes, can you try to describe the steps to reproduce the bug as detailed as possible? Just starting vim and the repeatedly suspending with CTRL-Z and foregrounding with fg does not trigger the bug for me... Thanks, Mika -- Foreground ('fg') fails to resume stopped processes intermittently https://bugs.launchpad.net/bugs/175740 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 219939] Re: Wrong keymap in bash
Veichtlbauer, thanks for reporting this bug. Do you still experience it in Hardy? If yes, could you please post the contents of /etc/default/locale. ** Changed in: bash (Ubuntu) Status: New => Incomplete -- Wrong keymap in bash https://bugs.launchpad.net/bugs/219939 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 98931] Re: Bash crash, with crash file, unreproducible
I'm not sure if this is the same, but I can crash bash with the following script: #!/bin/bash ttt() { ttt } ttt Arguably, bash should not just crash with a segfault when you have an infinite loop in a bash script. Johan, the only thing I get from your crash report is the directory you were in when this happened: /localhome/johan/clients/johan/badkar- sandbox If this helps you find the script in question or even reproduce this bug, that would be great! ** Changed in: bash (Ubuntu) Status: New => Incomplete -- Bash crash, with crash file, unreproducible https://bugs.launchpad.net/bugs/98931 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 114402] Re: shell autocomplete for a directory link with escaped characters doesn't give the trailing slash
Confirmed. This also happens without the bash-completion script, so it is a bug in bash. ** Changed in: bash (Ubuntu) Importance: Undecided => Low Status: New => Triaged -- shell autocomplete for a directory link with escaped characters doesn't give the trailing slash https://bugs.launchpad.net/bugs/114402 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 118636] Re: command line display error after history search (CTRL+R)
Hi Mats, I cannot reproduce this on Hardy. If you still have this problem could you try if you can reproduce it without config files (bash --noprofile --norc) or with a new user account? Thanks, Mika ** Changed in: bash (Ubuntu) Status: New => Incomplete -- command line display error after history search (CTRL+R) https://bugs.launchpad.net/bugs/118636 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 229876] Re: Problem with bash completion
Confirmed on hardy with bash 3.2-0ubuntu18. ** Changed in: bash (Ubuntu) Importance: Undecided => Low Status: New => Triaged -- Problem with bash completion https://bugs.launchpad.net/bugs/229876 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 128466] Re: change to a directory containing \ results in glitched up terminal that cannot be reset
** Changed in: bash (Ubuntu) Importance: Undecided => Low Status: Confirmed => Triaged -- change to a directory containing \ results in glitched up terminal that cannot be reset https://bugs.launchpad.net/bugs/128466 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 185366] Re: Intermittently, launching emacs in background exits bash
Scott, did you get a chance to try era's suggestion? It could really help us figure out what's going on since nobody seems to be able to reproduce this bug. Regards, Mika ** Changed in: bash (Ubuntu) Status: New => Incomplete -- Intermittently, launching emacs in background exits bash https://bugs.launchpad.net/bugs/185366 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 120687] Re: Caseless collate sequence in en_GB.UTF8
Maybe this should be discussed on the devel mailinglist or someone could start a spec? In any case bash is not the right package for this bug and I don't know what is... -- Caseless collate sequence in en_GB.UTF8 https://bugs.launchpad.net/bugs/120687 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 177779] Re: Bash causes problem with PWMconfig
Obrouni, is this still an issue for you in Hardy? I can not reproduce this because I do not have these pwm devices. I tried the following and it worked as expected: [EMAIL PROTECTED]:/etc(1)# echo "9" > /proc/sys/kernel/pid_max; echo 255 > /tmp/pwm1; cat /tmp/pwm1 bash: echo: write error: Invalid argument 255 [EMAIL PROTECTED]:/etc# cat /tmp/pwm1 255 Thanks, Mika ** Changed in: bash (Ubuntu) Status: New => Incomplete -- Bash causes problem with PWMconfig https://bugs.launchpad.net/bugs/19 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 218748] Re: unexpected behaviour of read in command_not_found_handle
Confirmed on hardy. This should be reported upstream. I'll do it next week if noone else beats me to it :) ** Changed in: bash (Ubuntu) Importance: Undecided => Low Status: New => Triaged -- unexpected behaviour of read in command_not_found_handle https://bugs.launchpad.net/bugs/218748 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 119913] Re: bash hangs infinitely; related to replace_history_data
Hi Daniel, do you still experience this bug? Any ideas as to how it can be reproduced? Thanks, Mika ** Changed in: bash (Ubuntu) Status: New => Incomplete -- bash hangs infinitely; related to replace_history_data https://bugs.launchpad.net/bugs/119913 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 82123] Re: bash (feisty) is not freeing memory of backticked output
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- bash (feisty) is not freeing memory of backticked output https://bugs.launchpad.net/bugs/82123 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 39068] Re: clear_console should be moved to ncurses-bin
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- clear_console should be moved to ncurses-bin https://bugs.launchpad.net/bugs/39068 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 85552] Re: bash returns wrong error code when changing to nonexisting directory
I don't think this is the same problem. It should be forwarded upstream. I'll do it next week if noone beats me to it. ** Changed in: bash (Ubuntu) Status: Incomplete => Triaged -- bash returns wrong error code when changing to nonexisting directory https://bugs.launchpad.net/bugs/85552 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 215034] Re: add /dev/tcp/... support
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- add /dev/tcp/... support https://bugs.launchpad.net/bugs/215034 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 202885] Re: Valgrind reports "Conditional jump or move depends on uninitialised value"
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- Valgrind reports "Conditional jump or move depends on uninitialised value" https://bugs.launchpad.net/bugs/202885 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 189881] Re: bash HISTCONTROL=erasedups should erase duplicates from history file before saving
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- bash HISTCONTROL=erasedups should erase duplicates from history file before saving https://bugs.launchpad.net/bugs/189881 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 162601] Re: single completion possibility not recognised
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- single completion possibility not recognised https://bugs.launchpad.net/bugs/162601 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 210405] Re: gnome terminal ~ replacement
Yes, the problem is with this substitution: ${PWD/$HOME/~}. It does not require a trailing / or end of string, so it will happily replace christopher with ~topher... In my .bashrc I use the following: local PWD2="" [[ "$PWD" == "$HOME" ]] && PWD2="~" [[ -z "$PWD2" ]] && [[ "$PWD" == "$HOME/" ]] && PWD2="~/" [[ -z "$PWD2" ]] && PWD2="${PWD/#$HOME\//~/}" ** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- gnome terminal ~ replacement https://bugs.launchpad.net/bugs/210405 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 146746] Re: bash crashes with infinitive recursion
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- bash crashes with infinitive recursion https://bugs.launchpad.net/bugs/146746 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 103929] Re: Bash prompt string looks for xterm-color, gnome terminal identifies as xterm
The bug is fixed in hardy ** Changed in: bash (Ubuntu) Status: Confirmed => Fix Released -- Bash prompt string looks for xterm-color, gnome terminal identifies as xterm https://bugs.launchpad.net/bugs/103929 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 98931] Re: Bash crash, with crash file, unreproducible
The inifinit recursion issue is already reported as #146746 -- Bash crash, with crash file, unreproducible https://bugs.launchpad.net/bugs/98931 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 80635] Re: Please disable flow-control by default
Maybe someone should write a spec about this and initiate a discussion? -- Please disable flow-control by default https://bugs.launchpad.net/bugs/80635 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 212413] Re: /root/.bashrc might be invoked without /usr/bin in PATH
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- /root/.bashrc might be invoked without /usr/bin in PATH https://bugs.launchpad.net/bugs/212413 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 53887] Re: Command completion should be enhanced
** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- Command completion should be enhanced https://bugs.launchpad.net/bugs/53887 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 151831] Re: password stealing via bashrc
Since there has not been any activity for a while and this should probably be a spec and/or mailinglist discussion anyway, I'm closing this bug for the reasons Colin mentioned above. ** Changed in: bash (Ubuntu) Status: Confirmed => Won't Fix -- password stealing via bashrc https://bugs.launchpad.net/bugs/151831 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 155899] Re: command_not_found_handle bash mechanism only passes single arg
This seems like a different use-case than what command-not-found was designed for. You may want to propose the idea to the bash developers at [EMAIL PROTECTED] . At seems like it could be useful, maybe they'll like it, too, and implement it :) ** Changed in: bash (Ubuntu) Status: Confirmed => Triaged -- command_not_found_handle bash mechanism only passes single arg https://bugs.launchpad.net/bugs/155899 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 238160] Re: missing apps cause exit
Also, I fail to see how bash-completion could be responsible. So reassigning to bash. ** Changed in: bash (Ubuntu) Sourcepackagename: bash-completion => bash Status: New => Incomplete -- missing apps cause exit https://bugs.launchpad.net/bugs/238160 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 103632] Re: [apport] bash crashed with SIGSEGV
** Tags added: need-i386-retrace -- [apport] bash crashed with SIGSEGV https://bugs.launchpad.net/bugs/103632 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 80635] Re: Please disable flow-control by default
** Bug watch added: Debian Bug tracker #383760 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383760 ** Also affects: bash (Debian) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383760 Importance: Unknown Status: Unknown ** Changed in: bash (Ubuntu) Status: New => Triaged -- Please disable flow-control by default https://bugs.launchpad.net/bugs/80635 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 80635] Re: Please disable flow-control by default
Micah, does CTRL-S work for you by default (i.e. search forward through shell history)? It sure doesn't for me. It does not completely block the terminal, either, though. It just consumes the next keypress... -- Please disable flow-control by default https://bugs.launchpad.net/bugs/80635 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 217495] Re: Password authetication failure - Hardy
pamindic, great to hear this! :) So I'll close this bug as fixed. Feel free to report any other issues you have with Ubuntu. Thanks, Mika ** Changed in: bash (Ubuntu) Status: Incomplete => Fix Released -- Password authetication failure - Hardy https://bugs.launchpad.net/bugs/217495 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 98931] Re: Bash crash, with crash file, unreproducible
Johan, the only thing that can be gathered from the crash report is that there is an inifnite recursion, most probably caused in the script that was running. Mathias Klose mentioned that on 2007-04-06. Since bash is interpreting the script the stack trace is not very useful. The script name is unfortunately not included in the crash report. I tried getting something out of the coredump but since the debug symbols for this old version of bash aren't available anymore I did not get much out of it... But if you're not experiencing this bug anymore I'm inclined to just mark it as a duplicate of bug#146746 since they seem related and the other one is easily reproducable. -- Bash crash, with crash file, unreproducible https://bugs.launchpad.net/bugs/98931 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 177779] Re: Bash causes problem with PWMconfig
Great! I'll close this then. :) ** Changed in: bash (Ubuntu) Status: Incomplete => Fix Released -- Bash causes problem with PWMconfig https://bugs.launchpad.net/bugs/19 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 238160] Re: missing apps cause exit
Great, thanks :) ** Changed in: bash (Ubuntu) Status: Incomplete => Fix Released -- missing apps cause exit https://bugs.launchpad.net/bugs/238160 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 194419] Re: error message when no completions and failglob is on
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- error message when no completions and failglob is on https://bugs.launchpad.net/bugs/194419 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 177243] Re: Bash command completion puts backslash in front of beginning dollar sign
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- Bash command completion puts backslash in front of beginning dollar sign https://bugs.launchpad.net/bugs/177243 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 219406] Re: bash autocomplete broken when a : is in the path
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- bash autocomplete broken when a : is in the path https://bugs.launchpad.net/bugs/219406 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 239080] Re: completion does not complete commands after 'gksudo'
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- completion does not complete commands after 'gksudo' https://bugs.launchpad.net/bugs/239080 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 219971] Re: Incorrect completion for mount with \040 in fstab
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- Incorrect completion for mount with \040 in fstab https://bugs.launchpad.net/bugs/219971 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 223882] Re: .configure script completion prints error messages when tried with insufficient permissions
** Changed in: bash-completion (Ubuntu) Assignee: Mika Fischer (zoop) => (unassigned) -- .configure script completion prints error messages when tried with insufficient permissions https://bugs.launchpad.net/bugs/223882 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 239080] Re: completion does not complete commands after 'gksudo'
Thanks for the patch. I'll include it in the next upload! ** Changed in: bash-completion (Ubuntu) Importance: Undecided => Low Assignee: (unassigned) => Mika Fischer (zoop) Status: Confirmed => In Progress -- completion does not complete commands after 'gksudo' https://bugs.launchpad.net/bugs/239080 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 239948] Re: typo in default user's ~/.bashrc file
*** This bug is a duplicate of bug 76807 *** https://bugs.launchpad.net/bugs/76807 Hi dominiko, thanks for reporting this issue. This has however already been reported and I'm marking this bug as a duplicate. I'll add the info about the typo to the other bug. Feel free to report further issues you have with Ubuntu! Regards, Mika ** This bug has been marked a duplicate of bug 76807 /etc/skel/.bashrc sets HISTCONTROL twice in succession. -- typo in default user's ~/.bashrc file https://bugs.launchpad.net/bugs/239948 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 76807] Re: /etc/skel/.bashrc sets HISTCONTROL twice in succession.
Also, there is a typo in the comments: sucessive -> successive, see bug 239948. -- /etc/skel/.bashrc sets HISTCONTROL twice in succession. https://bugs.launchpad.net/bugs/76807 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 51537] Re: Wrong handling of volume buttons on IBM Thinkpad notebooks
I can confirm this. I also find the behaviour iritating. As an additional bug I have the problem that the volume bar decreases faster than it should and increases slower than it should. That means that if you decrease the volume the bar is at 0% even when there is still sound to hear. Press "Volume Down" again a few times and the sound is *really* muted. Same thing about "Volume Up". When the voule is at its loudest the bar is only at 50%. I have an IBM ThinkPad R40 2722-CDG but I could also reproduce this problem on an R50 of a friend of mine. ** Changed in: Ubuntu Status: Unconfirmed => Confirmed -- Wrong handling of volume buttons on IBM Thinkpad notebooks https://launchpad.net/bugs/51537 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44616] Re: pressing Fn + F12 should hibernate the laptop but it does not
I can reproduce this bug. The keys for Hibernation (Fn+12) and Suspend- to-RAM (Fn+F4) don't work. This is an IBM Thinkpad R40 2722-CDG. The produce IBM-specific events, which are caught by /etc/acpi/events/ibm-hibernatebtn and /etc/acpi/events/ibm-sleepbtn. Those scripts in turn call /etc/acpi/hibernatebtn.sh and /etc/acpi/sleepbtn.sh. Those scripts call acpi_fakekey $KEY_SUSPEND or acpi_fakekey $KEY_SUSPEND where $KEY_SUSPEND = 205 and $KEY_SLEEP = 142 (from /usr/share/acpi-support/key-constants). The calls to acpi_fakekey do nothing, even when I issue them on the command line. That seems to be the problem here... If I call /etc/acpi/hibernate.sh or /etc/acpi/sleep.sh manually hibernation and STR work as expected. This is on Kubuntu Dapper. Regards, Mika ** Changed in: acpi-support (Ubuntu) Status: Needs Info => Confirmed -- pressing Fn + F12 should hibernate the laptop but it does not https://launchpad.net/bugs/44616 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 44616] Re: pressing Fn + F12 should hibernate the laptop but it does not
Hi, Paul! I can't give you the requested output at the moment but will do that soon. But please re-read my comment above. The problem is definitely *not* with ACPI. The ACPI-events are generated, and the right scripts are executed. The problem is with acpi_fakekey which generates fake input layer events (/dev/input/eventX). I can only assume that those events are then captured by hal or something else. Whatever it is that should be responding to these events in /dev/input/eventX is not working (at least in Kubuntu). I think in breezy the ACPI-scripts just called the hibernation script directly, and there it worked. And I think it also worked under *U*buntu Dapper. Regards, Mika -- pressing Fn + F12 should hibernate the laptop but it does not https://launchpad.net/bugs/44616 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56484] hal does not detect media change in USB-DVD-Drive
Public bug reported: I have connected a DVD burner to my laptop by USB. The burner is recognized and available as /dev/scd0 and /dev/sg0. However if I insert a medium in the burner (i.e. a disc with data on it or an audio CD) the disc is not automounted, no icon appears on the desktop. In fact exactly nothing happens. This is on an up-to-date edgy installation. Perhaps the root of the problem is that hal detects the drive as a "scsi generic" device. I can mount CDs by double clicking on CDROM1 in Places->Computer but I have no way of using for instance sound-juicer or banshee because I assume they only look at hal to find the CD drives (and don't find any in my case). I'll attach the lshal output. The relevant udis start with "/org/freedesktop/Hal/devices/usb_device_5e3_701_noserial_if0" Let me know if you need more info. ** Affects: hal (Ubuntu) Importance: Untriaged Status: Unconfirmed -- hal does not detect media change in USB-DVD-Drive https://launchpad.net/bugs/56484 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56484] Re: hal does not detect media change in USB-DVD-Drive
-- hal does not detect media change in USB-DVD-Drive https://launchpad.net/bugs/56484 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51893] Re: aptitude pegs cpu for extended period of time on "aptitude upgrade"
It is fixed for me as well. aptitude still feels more sluggish than in dapper (for example when selecting a package for installation) but at least it's usable now. Thanks a lot! -- aptitude pegs cpu for extended period of time on "aptitude upgrade" https://launchpad.net/bugs/51893 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56484] Re: hal does not detect media change in USB-DVD-Drive
An additional note: When I have mounted the disk by double clicking on CDROM1 in Places->Computer and then right-click on the disk icon on the desktop I have no option to eject the disk only to unmount. Clicking that unmounts the disk but the tray stays closed. -- hal does not detect media change in USB-DVD-Drive https://launchpad.net/bugs/56484 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56563] Can't mount partition using UUID= syntax
Public bug reported: Binary package hint: linux-source-2.6.17 I'm running a current edgy installation. The conversion of /etc/fstab to UUID syntax worked quite well overall, but one partition can't get mounted that way. Here is the relevant line: UUID=FEAC4C3EAC4BEFA7 /media/windows ntfs defaults,nls=utf8,umask=007,gid=46 0 0 When I try to mount it manually it gives me: mount: special device UUID=FEAC4C3EAC4BEFA7 does not exist It can be mounted when using /dev/hda1 in /etc/fstab. The UUID is the same as the one reported by hal-device-manager I'll attach my fstab. Please let me know if I can provide any further information. Also I don't really know if this is a kernel problem. Please feel free to reassign the bug. Thanks! ** Affects: linux-source-2.6.17 (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Can't mount partition using UUID= syntax https://launchpad.net/bugs/56563 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56563] Re: Can't mount partition using UUID= syntax
-- Can't mount partition using UUID= syntax https://launchpad.net/bugs/56563 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56271] Re: Won't resume from 2.6.17, worked with Dapper
I have the same problem on an IBM ThinkPad R40 2722-CDG. When resuming from hibernation the last thing that's written is "Mounting root file system" (the "OK" is not written). Then usplash quits and I have a blank text mode screen with the cursor blinking in the top left corner. No system activity from then on. My kernel is: Linux lt-mf 2.6.17-6-686 #2 SMP Fri Aug 11 22:09:15 UTC 2006 i686 GNU/Linux I have not tried any other kernels, but hibernation worked in dapper. Suspend-to-RAM works well. dmesg output attached. -- Won't resume from 2.6.17, worked with Dapper https://launchpad.net/bugs/56271 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56563] Re: libblkid can't extract uuid for ntfs partitions
The bug is really in libblkid. The functionality of extracting a uuid from an ntfs partition is just not implemented. hal somehow can extract a uuid, so it should be possible to fix it easily. ** Summary changed: - Can't mount partition using UUID= syntax + libblkid can't extract uuid for ntfs partitions ** Changed in: util-linux (Ubuntu) Sourcepackagename: util-linux => e2fsprogs -- libblkid can't extract uuid for ntfs partitions https://launchpad.net/bugs/56563 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56591] Re: Can't resume from hibernation
-- Can't resume from hibernation https://launchpad.net/bugs/56591 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56591] Can't resume from hibernation
Public bug reported: When resuming from hibernation the last thing that's written is "Mounting root file system" (the "OK" is not written). Then usplash quits and I have a blank text mode screen with the cursor blinking in the top left corner. No system activity from then on. My kernel is: Linux lt-mf 2.6.17-6-686 #2 SMP Fri Aug 11 22:09:15 UTC 2006 i686 GNU/Linux I have not tried any other kernels, but hibernation worked in dapper. Suspend-to-RAM works well. dmesg output attached. ** Affects: linux-source-2.6.17 (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Can't resume from hibernation https://launchpad.net/bugs/56591 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56271] Re: Won't resume from 2.6.17, worked with Dapper
Ah, i see. That wasn't obvious from the description. Thanks for clarifying. I've openend bug #56591 for my problem. -- Won't resume from 2.6.17, worked with Dapper https://launchpad.net/bugs/56271 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56591] Re: Can't resume from hibernation
I've now let it sit for over 10 minutes with no change. So it's really stuck. Isn't there a way to enable some debugging output? -- Can't resume from hibernation https://launchpad.net/bugs/56591 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56612] DRI modules not installed because libgl1-mesa-glx provides libgl1-mesa-dri
Public bug reported: Binary package hint: libgl1-mesa-glx On my edgy system that was upgraded from dapper the DRI modules are not installed. The xorg package depends on libgl1-mesa-dri but libgl1-mesa-glx provides that already so the real libgl1-mesa-dri doesn't get installed. >From Xorg.0.log: (EE) AIGLX error: dlopen of /usr/lib/dri/radeon_dri.so failed (/usr/lib/dri/radeon_dri.so: cannot open shared object file: No such file or directory) (EE) AIGLX: reverting to software rendering Manually installing libgl1-mesa-dri fixes this. ** Affects: mesa (Ubuntu) Importance: Untriaged Status: Unconfirmed -- DRI modules not installed because libgl1-mesa-glx provides libgl1-mesa-dri https://launchpad.net/bugs/56612 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 54299] Re: libGL.so can't find DRI modules
Same here. Just symlinking /usr/lib/dri/ to /usr/X11R6/lib/modules/dri/ fixes it too. -- libGL.so can't find DRI modules https://launchpad.net/bugs/54299 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 21025] Re: Irda: nsc-ircc needs module options to work correctly
This bug is fixed in dapper and can be closed. Thanks a lot. -- Irda: nsc-ircc needs module options to work correctly https://launchpad.net/bugs/21025 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56591] Re: Can't resume from hibernation
OK, I did that and - surprisingly - the machine resumed normally. I tried all combinations and the result is that the splash option breaks resume for me. So it seems the new high-res usplash is at least the trigger if not the culprit here... ** Also affects: usplash (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Can't resume from hibernation https://launchpad.net/bugs/56591 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 21028] Re: IBM Thinkpad hotkeys don't work immediately after installation
I did a fresh installation of dapper and the problem is fixed. The bug can be closed. -- IBM Thinkpad hotkeys don't work immediately after installation https://launchpad.net/bugs/21028 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 8159] Re: Power button acpi action is bad for gnome (powerbtn.sh)
This is fixed for me in dapper. -- Power button acpi action is bad for gnome (powerbtn.sh) https://launchpad.net/bugs/8159 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51893] Re: aptitude pegs cpu for extended period of time on startup
Set status to confirmed. ** Changed in: aptitude (Ubuntu) Status: Unconfirmed => Confirmed -- aptitude pegs cpu for extended period of time on startup https://launchpad.net/bugs/51893 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 51893] Re: aptitude pegs cpu for extended period of time on startup
Confirmed. It makes aptitude mostly unusable for me... -- aptitude pegs cpu for extended period of time on startup https://launchpad.net/bugs/51893 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 55235] Re: touchpad doesn't disable while typing
I don't agree. It is desirable behaviour to disable the touchpad while typing exactly because it's virtually impossible to type and use the touchpad at the same time. It is however very common that one accidentally touches the touchpad while typing which is very undesirable because it can reposition the cursor... See also: http://www.debuntu.org/2006/06/25/70-how-to-disabling-your- touchpad-while-typing/ ** Changed in: Ubuntu Status: Rejected => Confirmed ** Changed in: Ubuntu Sourcepackagename: None => xserver-xorg-input-synaptics -- touchpad doesn't disable while typing https://launchpad.net/bugs/55235 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56639] Thinkpad display switch key should switch active displays
Public bug reported: Binary package hint: acpi-support This is an IBM Thinkpad R40 2722-CDG running current edgy. See also: https://wiki.ubuntu.com/LaptopTestingTeam/ThinkpadR40-2722 When I press Fn+F7 nothing happens. It should at least cycle through the available displays: lcd, crt, both, or even start a program to manage display profiles. The first problem here is that the key does not even generate ACPI events because that is disabled in /etc/modprobe.d/ibm_acpi.modprobe. I assume that is because some Thinkpads do the right thing themselves when the key dosn't generate an event. Alas, mine doesn't and instead does nothing. The second problem is that the ACPI event then has to trigger some action. The obvious candidate would be "echo video_switch > /proc/acpi/ibm/video" and friends, but unfortunately those don't work for me. The best thing would be of course if all of this could be handled by X itself... ** Affects: acpi-support (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Thinkpad display switch key should switch active displays https://launchpad.net/bugs/56639 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56639] Re: Thinkpad R40 Fn-F7 should switch active display in software
Hi Paul, [EMAIL PROTECTED]:~$ cat /var/lib/acpi-support/*-* 1PET62WW (1.30 ) IBM 2722CDG Not Available All other keys work. See the mentioned page on the wiki for details. -- Thinkpad R40 Fn-F7 should switch active display in software https://launchpad.net/bugs/56639 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56692] Radeon Mobility 7500: poor 2D performance, abysmal 3D performance
Public bug reported: I have an IBM Thinkpad R40 2722-CDG with a Radeon Mobility 7500 graphics chip. See https://wiki.ubuntu.com/LaptopTestingTeam/ThinkpadR40-2722 for details. 2D performance is very sluggish overall (moving windows, resizing windows, etc.). Under Windows XP I have no such problems. The worst applications which show this effect extremely well are firefox and thunderbird where I can sometimes even watch it redraw the widgets one after the other... I'd be interested to know if there is a kind of benchmark for measuring 2D drawing performance of X... But the 3D perfomance is even worse than that. With flightgear I get only 3-4 frames per second, whereas on Windows i have about 50. And those 3-4 I get only if I add the following to my xorg.conf: Option "AGPMode" "4" Option "AGPFastWrite" "on" Option "EnablePageFlip" "true" Without those options I get only about 1 frame per second... Again I'd be interested to know if there's a real benchmark for 3D performance. I'll try to test this on Dapper, and Breezy Live CDs to see if it's a regression... ** Affects: xserver-xorg-video-ati (Ubuntu) Importance: Untriaged Status: Unconfirmed -- Radeon Mobility 7500: poor 2D performance, abysmal 3D performance https://launchpad.net/bugs/56692 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56692] Re: Radeon Mobility 7500: poor 2D performance, abysmal 3D performance
Hi Jeremy, I'm using the radeon driver of course. :) I've attached my xorg.conf for reference. It's the default with the addition of the Options mentioned above. Perhaps one could call the 2D performance "acceptable", it certainly is usable. But when I see what this card can do under Windows then the results on Linux are certainly disappointing, to say the least. On my girlfriend's computer which has a Geforce2 MX in it (using the closed-source nVidia drivers), half the RAM and a slower processor, working with Ubuntu is a lot more fun than on my laptop... -- Radeon Mobility 7500: poor 2D performance, abysmal 3D performance https://launchpad.net/bugs/56692 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56692] Re: Radeon Mobility 7500: poor 2D performance, abysmal 3D performance
Ah, and I removed the two or three input devices relating to graphics tablets, which I don't have and which generate spurious warnings which bugged me... -- Radeon Mobility 7500: poor 2D performance, abysmal 3D performance https://launchpad.net/bugs/56692 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53157] Re: Terminal resizes when changing tab
Interestingly the amount of the enlargement depends upon the amount of resizing done beforehand. Every tab switch adds the amount of rows and columns that the window has more than the default (80x24 for me). So if you resize to 81x25 every tab switch enlarges the window by one row and one column... -- Terminal resizes when changing tab https://launchpad.net/bugs/53157 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 53157] Re: Terminal resizes when changing tab
I also have this problem in edgy and it's much worse. I didn't even notice the problem in dapper. But now if I open a terminal, resize it and add two new tabs with CTRL- SHIFT-T, then the second tab will enlarge the window horizontally. Switch back to Tab 1 and the window is further enlarged horizontally and additionally enlarged vertically. This can be repeated until the window is as large as possible (it doesn't exceed the screen). In this shape gnome-terminal is unusable for me. Version is: 2.15.4-0ubuntu1 -- Terminal resizes when changing tab https://launchpad.net/bugs/53157 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56692] Re: Radeon Mobility 7500: poor 2D performance, abysmal 3D performance
Yeah, I did that too. Sorry for not attaching them in the first place... There are some warnings. I don't quite understand them but they seem to relate to DRI, so may be connected to the bad 3D performance... -- Radeon Mobility 7500: poor 2D performance, abysmal 3D performance https://launchpad.net/bugs/56692 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56090] Re: Problems with PWC for Logitech QuickCam Pro 4000
-- Regression: Webcams using pwc driver produce all-grey images https://launchpad.net/bugs/56090 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56090] Re: Problems with PWC for Logitech QuickCam Pro 4000
** Summary changed: - Problems with PWC for Logitech QuickCam Pro 4000 + Regression: Webcams using pwc driver produce all-grey images -- Regression: Webcams using pwc driver produce all-grey images https://launchpad.net/bugs/56090 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56090] Re: Problems with PWC for Logitech QuickCam Pro 4000
I can confirm this. I have a Philips Webcam which worked perfectly on dapper and now produces only gray images. This can is also using the pwc driver. Also if I switch to v4l2 in the ekiga options it can't even open the device. v4l2 in ekiga also worked in dapper. I'll attach dmesg outputs for 2.6.15-26-686 and 2.6.17-6-686. ** Changed in: Ubuntu Sourcepackagename: None => linux-source-2.6.17 Status: Unconfirmed => Confirmed -- Regression: Webcams using pwc driver produce all-grey images https://launchpad.net/bugs/56090 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56090] Re: Regression: Webcams using pwc driver produce all-grey images
See also: http://lists.saillard.org/pipermail/pwc/2005-August/000573.html The gist of it is: pwc driver v9 was working but had some patent issues. v10 in-kernel (since 2.6.12) is non-working (probably because they removed the problematic parts). v10 from http://www.saillard.org/linux/pwc/ partly-works (has color issues). So one solution would be to revert to the driver of the dapper kernel since there the cameras worked fine (the same issue must have been noticed for dapper, because the in-kernel driver of 2.6.15 should be broken too). Another option would be to check if the driver from saillard.org works OK. -- Regression: Webcams using pwc driver produce all-grey images https://launchpad.net/bugs/56090 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 56090] Re: Regression: Webcams using pwc driver produce all-grey images
OK. I checked out the driver version 10.0.12-rc1 from http://www.saillard.org/linux/pwc/ and that one works. The colors are a bit pale but I think it's tolerable. So using that would also be an option. The v4l2 issue mentioned above is fixed with this driver as well. Probably somone should look into this patent situation though... In the meantime for those who just want to get their camera working: 1) Install build-essential and the kernel-headers for your kernel (linux-headers-2.6.17-6-686 for me). 2) Download latest driver from http://www.saillard.org/linux/pwc/ (http://www.saillard.org/linux/pwc/files/pwc-10.0.12-rc1.tar.bz2 for me) 3) Unpack and go into extracted directory 4) make 5) modprobe -r pwc 6) sudo cp pwc.ko /lib/modules/2.6.17-6-686/kernel/drivers/media/video/pwc/pwc.ko.saillard 7) cd /lib/modules/2.6.17-6-686/kernel/drivers/media/video/pwc 8) sudo mv pwc.ko pwc.ko.ubuntu 9) sudo ln -s pwc.ko.saillard pwc.ko 10) sudo depmod -a 11) modprobe pwc 12) Enjoy! :) -- Regression: Webcams using pwc driver produce all-grey images https://launchpad.net/bugs/56090 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs