cbagger01
Group: Members
Posts: 4264
Joined: Oct. 2003 |
|
Posted: Mar. 18 2006,17:53 |
|
You will need to rebuild the initial ramdisk image for DSL, stored on the CD as
minirt24.gz
Making this a larger filesystem will expand your "/" directory's capacity.
An alternative is to somehow create another, larger ramdisk, format it EXT2, copy the initial "/" files, directories and symlinks over and then chroot over to that ramdisk.
But if the files don't need to be inside "/" and instead only need to be inside a SUBDIRECTORY underneath the "/" tree, I would simply do this:
Boot DSL with this command:
dsl write
When booted, open up a terminal window and type:
sudo su mkdir /ramdisk/mynewdir cd / ln -s /ramdisk/mynewdir
Due to the symbolic link, the directory named /ramdisk/mynewdir will also appear in the top level subdirectory as /mynewdir and you can then store a huge amount of data in your newly created directory because you have a large ramdisk due to the 1GB of RAM in your PC.
|