[Bug 221213] Re: Regression: hibernate freezes the system

2008-06-04 Thread 5tan
HP nx7400 EY508ES. 2.6.24-18-generic not resume from suspend (to RAM). 
2.6.24-16-generic resume from suspend to RAM correct. Resume from hibernate 
works, but after while (1-2 min.)  freezes the system (8.04 hardy heron).

-- 
Regression: hibernate freezes the system
https://bugs.launchpad.net/bugs/221213
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 188699] Re: [hardy] psi ssl/tsl plugin

2008-05-01 Thread 5tan
Note: if you need ssl/tls support for psi, there's no need to install  
"qca-tls" anymore... 
Title of this bug should be ". tLs ..." - not "... tSl..."

-- 
[hardy] psi ssl/tsl plugin
https://bugs.launchpad.net/bugs/188699
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 434232] Re: cryptsetup prompt is overriden by upstart and xsplash in Karmic

2009-10-31 Thread 5tan
Cédric Dufour,
You right! In my testing system target is /dev/mapper/cryptroot and it was OK. 
But when I try change it to anything else... device path is still 
/dev/mapper/cryptroot

source=/dev/SOMETHING (where SOMETHING means something like hda2, sda1,
sda2, ...) should also work, but your way is probably better for almost
all cases.

"best practices": with not encrypted libraries, executables, etc. any
person with usb-live or cd-live and access to your computer can replace
your libraries and executables with "extended" functionality (it can
write on disk or send by network your files and/or passwords) Anyway: I
can see benefits not encrypted libraries, executables... And YES, not
encrypting of root in some cases may be reasonable. :)

-- 
cryptsetup prompt is overriden by upstart and xsplash in Karmic
https://bugs.launchpad.net/bugs/434232
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 472820] Re: Alternate Install Hang up by partitioner

2009-11-10 Thread 5tan
Hi.
Installation (from 9.10 alternate CD) is stopped after choosing manual 
partitioning (progress bar stop on 50%).
I've reboot, and before choosing manual partitioning:
1. switch to console (Alt+F2), 
2. activate shell (enter) and activate LVM (vgscan; vgchange -ay) 
3. decrypt logical volumes (cryptsetup luksOpen 
/dev/mapper/#NAME_OF_VG-NAME_OF_LOGICAL_VOLUME#)

After step 3: switching to console with debian-installer running
(Alt+F1), choosing manual partitioning... And again - progress bar is
stop on 50%.

Workaround: 
1. Start computer with LiveCD
2. Add repositories (e.g. in synaptic)
3. Install lvm2 and cryptsetup and dependencies (apt-get install lvm2 
cryptsetup)
4. Setup LVM and cryptosetup (e.g. vgscan, vgchange -ay, cryptsetup luksOpen 
/dev/mapper/#VG-LV# #DECRYPTED_LV#)
5. Run "normal" installation
6. Choose manual partitioning in set-up partitions screen, and choose your 
/dev/mapper/#DECRYPTED_LV# (e.g. /dev/mapper/cryptroot)
7. Continue system installation - when it success please DON'T REBOOT!
8. Mount your fresh installed system in /mnt or what you want (remember mount 
your /usr/ LV - if any - on /mnt/usr/ and esspecialy /boot partition - if you 
have boot partition. Check your /etc/fstab  )

STEPS TO DO IN CHROOTED ENVIRONMENT###
9. Chroot into your fresh installed system (chroot /mnt)
10. You should mount /proc /sys/ and maybe /dev/ and /dev/pts (mount -t proc 
proc /proc; mount -t sysfs sysfs /sys; mount -t tmpfs udev /dev; mount -t 
devpts devpts /dev/pts)
11. apt-get install lvm2 cryptsetup
12. Edit /etc/initramfs-tools/conf.d/cryptroot (echo 
"target=#CRYPTROOT#,source=/dev/mapper/#DECRYPTED_LV#" > 
/etc/initramfs-tools/conf.d/cryptroot )
13. Edit /etc/crypttab (if you want other encrypted volumes to mount on 
boot-time)
14. Update initrd with update-initramfs -u -k `uname -r`
15. umount what you before mount in chroot environment
16. exit from chroot
### END OF CHROOTED ENVIRONMENT STEPS ###
17. Umount everything you mounted before you chroot (probably you can safely 
skip this step - LiveCD umount it for you on restart)
18. Restart system

If everything is OK after reboot you should see grub menu, and after few
seconds "Enter passphrase":   :)

Good luck!

-- 
Alternate Install Hang up by partitioner
https://bugs.launchpad.net/bugs/472820
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 434232] Re: cryptsetup prompt is overriden by upstart and xsplash in Karmic

2009-10-29 Thread 5tan
First, I'm sorry for my bad english, but I want help with this
cryptsetup problem :)

Saïvann Carignan: according to:
> My /etc/crypttab file contains this :
> X /dev/sda7 none luks
> 
> My /etc/fstab file contains this :
> /dev/mapper/X /media/X ext4 defaults,relatime 0 0

echo 'CRYPTROOT=target=pvcrypt,source=/dev/sda1' > 
/etc/initramfs-tools/conf.d/cryptroot
should be:
echo 'CRYPTROOT=target=X,source=/dev/sda7' > 
/etc/initramfs-tools/conf.d/cryptroot

And I advice to make copy of initrd - for kernel 2.6.31-14-generic it should be:
cp /boot/initrd.img-2.6.31-14-generic /boot/initrd.img-2.6.31-14-generic.copy

*For other currently running kernel number 
cp /boot/initrd.img-`uname -r` /boot/initrd.img-`uname -r`.copy


AND call update-initramfs with -k option
update-initramfs -u -k `uname -r`

For what? If initrd.img won't boot system then in grub start menu we
need edit line with copy of initrd.img

And again: I'm very sorry for my english

-- 
cryptsetup prompt is overriden by upstart and xsplash in Karmic
https://bugs.launchpad.net/bugs/434232
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