[Bug 1482810] [NEW] dropbear DEVICE variable is ignored when sourced from conf.d

2015-08-07 Thread Andrei Pozolotin
Public bug reported: 1) this is what "/usr/share/initramfs-tools/init" does: ``` . /conf/initramfs.conf for conf in conf/conf.d/*; do  [ -f ${conf} ] && . ${conf} done . /scripts/functions ``` 2) this is what "/usr/share/initramfs-tools/scripts/init-premount/dropbear" does: ``` . /scripts/funct

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2012-01-25 Thread Andrei Pozolotin
re: "go with 32 bit" - yes, I also recommend this. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776999 Title: [Lenovo W520] laptop freezes on ACPI-related actions To manage notifications about thi

[Bug 769274] Re: Phonon default capture device preferences are not saved

2011-08-07 Thread Andrei Pozolotin
problem is still present: Linux wks002 2.6.38-10-generic-pae #46-Ubuntu SMP Tue Jun 28 16:54:49 UTC 2011 i686 i686 i386 GNU/Linux and pavucontrol workaround works: start skype test call, go to pavucontrol -> recording, associate skype with your capture device. -- You received this bug notifica

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2011-08-04 Thread Andrei Pozolotin
@ Charles Profitt: my config info, that works: http://ubuntuforums.org/showpost.php?p=6461&postcount=68 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776999 Title: [Lenovo W520] laptop freezes o

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2011-08-03 Thread Andrei Pozolotin
@ Charles Profitt: what is your hardware / os details? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776999 Title: [Lenovo W520] laptop freezes on ACPI-related actions To manage notifications about

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2011-07-19 Thread Andrei Pozolotin
gentoo people have same problems; they are just smarter then us :-) http://forums.gentoo.org/viewtopic-t-883277-start-0.html this: Option "RegistryDwords" "EnableBrightnessControl=1" resolves Kubuntu 11.04 32-bit brightness problem -- You received this bug notification because you are a member

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2011-07-19 Thread Andrei Pozolotin
Kubuntu 11.04 32-bit brightness workaround confirmed: alt+ctrl+F1, Fn+brightness, alt+ctrl+F7 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/776999 Title: [Lenovo W520] laptop freezes on ACPI-related

[Bug 776999] Re: [Lenovo W520] laptop freezes on ACPI-related actions

2011-07-17 Thread Andrei Pozolotin
w520, i7-2820QM, 16GB RAM, nvidia 275.19: more acpi mess ups: KUbuntu 11.04 32-bit: Fn + brightness up / down does not work (no hangs) KUbuntu 11.04 64-bit: Fn + brightness up / down works, but hangs as people reported above -- You received this bug notification because you are a member of Ubunt

[Bug 344878] Re: file name to long when creating new file

2009-12-15 Thread Andrei Pozolotin
this is my current work around: truncate before copy into ecryptfs folder: #!/bin/bash # # Bash Script to truncate file names # ROOT="/path/to/your/files/with/long/names" SIZE=110 find "$ROOT" -type f | \ while read filepath1; do path=$(dirname "$filepath1") file1=$(basename "$filepath1"

[Bug 344878] Re: file name to long when creating new file

2009-12-15 Thread Andrei Pozolotin
Dustin, Tyler: my 2 cents: can we do zlib compression before you mangle it into the POSIX lower name? most long file names are human-readable, which mostly means redundant; I did a zlib compression test with some 1K of my files with name size > 100 chars; result: about 4.0 compression ratio :