Page 1 of 1

no savefile for remastered CD

Posted: Thu 29 Nov 2012, 08:40
by ashes
I have remastered the lupulibre-528.005-1.iso and burned it to CD. It runs nicely but it doesn't ask for the creation of a lupsave file at shutdown.
how can I make the system to ask for savefile creation at the end of the session?

thanks in advance

Posted: Thu 29 Nov 2012, 11:38
by ashes
... or how can I make a savefile manually?

Posted: Thu 29 Nov 2012, 11:56
by jamesbond
ashes wrote:... or how can I make a savefile manually?
1. Mount the partition that you want for your savefile. I will assume it will be your /dev/sda2 and it is mounted as /mnt/sda2; change all references in the next few steps to your chosen partition mount point.
2. Open terminal.
3. Type this in terminal, changing /mnt/sda2 to your correct mount point, and changing 1000 to the size of the savefile you want to create (in megabytes).

Code: Select all

cd /mnt/sda2
dd if=/dev/zero of=./lupusave.3fs count=0 bs=1M seek=1000
mkfs.ext3 -F ./lupusave.3fs
4. Reboot.

PS: backup your data first in case you make a typo. "dd" and "mkfs" commands are especially dangerous if you type them wrongly.

Good luck.

Posted: Thu 29 Nov 2012, 20:25
by ashes
thank you it works well

encrypted savefile

Posted: Fri 30 Nov 2012, 04:49
by ashes
how can I maually create an encrypted .2fs savefile?