Error message "couldn't find any free loop device"
Since Slax 6 is using Linux Kernel 2.6.24 and newer, the limit is not there anymore and you can use as much loop devices as you need. On the other hand, there was a need to retain backward compatibility with all the broken tools (like modprobe, losetup, etc.), which still refuse to work on a loop devices with minor number bigger than 255. So the following approach has been negotiated:
If a max_loop=n boot parameter is specified, it behaves like before, the 'n' becomes a new limit and udev creates 'n' files in /dev/loop/. If the parameter is not specified (it is not in Slax), a loop device per module is created (with a minimum of 8) and you have to mknod more manually, if you need them.
Error message "couldn't find any free loop device"
If you see this error after an attempt to mount -o loop, simply see /dev/loop/* and create a next loop device number using
mknod /dev/loop/100 b 7 100
If you reach the limit of 256, you'll need to loop-mount in two steps:
# first create a new loop device mknod /dev/loop/300 b 7 300
# then assign your loop file to new loop device losetup /dev/loop/300 your_loop_file.dat
# and finally mount the loop device insetad of the file mount /dev/loop/300 /your_mount_directory/
# if you then need to unmount, use umount /your_mount_directory/ losetup -d /dev/loop/300
If you wish to create a new loop device automatically in your script, include /usr/lib/liblinuxlive in it and call mknod_next_loop_dev function:
NEW_LOOP=$(mknod_next_loop_dev) losetup $NEW_LOOP your_file mount $NEW_LOOP /your/mount/directory
Tomas M
documented on: 2008-03-30
Subject: tmpfs, ramdisk_size, root and development Date: 2007-05-30
I've come to this point where I fill the tmpfs often and i would like to increase its capacity or modify its behavior.
this is my current lilo append: ramdisk_size=6666 root=/dev/ram0 rw noauto
Is there a relationship between ramdisk_size and the tmpfs size?
no relationship
tmpfs consist of swap + ram.
By default the limit is 60% in slax. There is a cheatcode for increasing this.
Take a look at the cheatcode section
documented on: 2007-05-30, Guest
here you go. You may need both. The 60% is of ram. Check if your swap partition is detected aswell
cat /proc/meminfo | grep Swap
If not on, then
swapon /dev/hdswap
Cheatcodes for SLAX
boot: slax changes=/dev/device
all changes you made in SLAX are kept in memory until you reboot. But with this boot parameter, you tell SLAX to use different device then memory for storing changes. You can, for example, format your disk partition /dev/hda1 with some Linux filesystem (eg. ext2) and then use changes=/dev/hda1 to store all changes to that disk. This way you won't loose your changes after reboot.
boot: slax ramsize=60%
documented on: 2007-05-30, Guest
Ok, i'll check that out, but i guess the problem is: I add swap after system is loaded. Would there be a way to "increase" the tmpfs after is is created? (just like a swapon command would increase amount of ram?)
They way I understood tmpfs, after a short read through, was that it is a filesystem that coordinates both your ram and swap (short storage if you like). So in that case i will assume yes. In my case (runing on a 1GB) I have so far only seen 5-10 mb of swap being used. But it is in use at least. (I will check how much is used in my low mem running qemu)
documented on: 2007-05-30, Guest
You were right. Using the cheatcode:
ramsize=100M
it actually changes the tmpfs size to 100M (makes sense) and I got heavily misleaded by the ramdisk_size keyword already present.
I have one more question.
Let say I had 10Gb of swap available at the end of my rc.local (fictional example). Would I be able to boot with a ramsize=5G, if i only have a couple hundred megs of ram?
documented on: 2007-05-30, turner
> I have one more question.
I honestly have no idea, apart from a feeling that it is based on ram and not swap. tmpfs just happens to coordinate whatever swap it may find, but I think the base is ram. So i would guess it would have tried to use all your ram, which again renders your system unstable.
I know there is also a remount possiblity for tmpfs while in system (becuase I have done it several times myself, but a while since last). You in/decrease the amount with the parameter -o size=
I guess you can play a bit with the remount command to try it out.
documented on: 2007-05-30, Guest
Yup ok!
My laptop has 128Mb ram (+256Mb swap setup at end of rc.local) and i set the ramsize=200M and it worked fine.
I believe it doesn't care, but might lead you into trouble if you come out of memory.
You will get a "out of ram" message for programs when you filled close to 128mb. But you CAN have 200m ramsize IF you make at least 200M swap file somewhere, in which case, all changes will get swapped into the swapfile and you can still have your 128mb ram, hence the reason why it doesnt care what size you set ramsize to.
The memory management is up to the kernel (and its quite good as far as i know). Because its a live cd, ram is shared by both programs AND the changes you make during a session. The idea is you should always have the same amount of swap as tmpfs (which for all intents and purposes is the total amount of changes you can make in a session before you have to delete some files or get out of memory). So you can make 1024M of tmpfs as long as you have 1024M of swap, which allows you to utilize the entire swap area for your changes and at the same time, programs wont run out of memory (unless they use more than your physical ram --->which means need larger swap file but bad performance).
an aside:
ramdisk_size is the size the system should reserve for initrd used during boot ( uncompressed ). Usually there is no good reason to touch this as it is already set for you by the live cd.
documented on: 2007-05-30, Guest
I'm just curious, how collective modules are build?
Intrinsically and naively, I'm thinking that you just keep a list of apps that you should put into it, and all the dependent libs, then do tgz2dir on each package into the same directory, then dir2lzm to build the module. I think over 90% of the modules could be build this way, again intrinsically and naively thinking. Is that so?
you got the concept right, tho' I would bet that
installpkg -root /otherroot
is probably used, "ROOT=/otherroot removepkg" help maintain and upgrade modules ….
the "list" to include into a "collective module" is probably based on the author's specific knowledge and experience … which is more often above and beyond the basics of module/package dependencies.
IMHO, the squashfs compressed linux filesystem is better than the .tgz or .zip package distributions as it is "ready to use" with a mount command and does not require the extra room to decompress …. I archive everything into modules these days (many years ago I used LZH, then ZIP, now squashfs) … no need for my data to be in tar or zip files …. as I will ALWAYS have a linux cd with me!
documented on: Jun 09, 2007, Guest
Download tcl related packages from ftp://ftp.slackware.no/linux/slackware/slackware-current/slackware/tcl/
Create temp dir
mkdir /tmp/tcl
Install tcl-8.4.14-i486-1.tgz
installpkg -root /tmp/tcl tcl-8.4.14-i486-1.tgz
Install tk-8.4.14-i486-1.tgz, following the same procedure.
installpkg -root /tmp/tcl tk-8.4.14-i486-1.tgz
Another example following the same procedure, installing expect.
installpkg -root /tmp/tcl expect-5.43.0-i486-1.tgz
Build the lzm module.
dir2lzm /tmp/tcl 996_devel_tcl-8.4.14-i486-1_tk-8.4.14-i486-1_expect-5.43.0-i486-1.lzm
Check the built lzm module.
unsquashfs -ls !$ | less
Test the built lzm module.
uselivemod 996_devel_tcl-8.4.14-i486-1_tk-8.4.14-i486-1_expect-5.43.0-i486-1.lzm
Done testing, or start anther build-and-test loop again. Use the unuselivemod from http://www.slax.org/forum/viewtopic.php?p=82429#82429
unuselivemod !$
documented on: 2007.06.14, xpt
Intrinsically and naively, I'm thinking that you just keep a list of apps that you should put into it, and all the dependent libs, then do tgz2dir on each package into the same directory, then dir2lzm to build the module.
Kind of … Slax is built a little bit differently:
setup /mnt/union
add a writeble branch to the union so all new files will go to 001-core/ directory
install all packages for 001-core to /mnt/union
add another writable branch, so all new files and all modifications of existing files goes to 002-apps directory
install all packages for 002-apps to /mnt/union again
add third writable branch to the union, make it store all new and modified files to 003-network directory
install all the mentioned packages (I keep list of packages needed for every 'branch') into /mnt/union again.
etc…
Finally the union is unmounted and all the distinct directories like 001-core etc are mksquashfsed.
I think over 90% of the modules could be build this way, again intrinsically and naively thinking. Is that so?
Maybe 90%, but never 100%. The problem is that many TGZ packages require to 'chroot' the virtual root directory, so if you install the package to /tmp/your_package_root/ then the package may expect there is already something installed (which is not). An example of this are all the fonts packages from Slackware-current - they require mkfontdir and mkfontscale binary to exist in the target destination where you install them. This is perfectly OK if you install the package to your ROOT (/), but will not work if you do tgz2dir.
documented on: Jun 09, 2007, Tomas
I wanted to use some of my local files in my local-WHATEVer.lzm on my debian based system as well and therefore installed "squasghfs-tools" V1:3.2r2-2b
Using it on a lzm it says
Can't find a SQUASHFS superblock
http://www.squashfs-lzma.org/ says the following sourcecode is needed:
# squashfs 3.3 # LZMA SDK 4.57 # SquashFS-LZMA 3.3-457-2 # Squashfs CVS fixes # linux kernel 2.6.24 or higher
But it also says
Make sure to use a supported Linux Kernel, as only version 2.6.24.3 is supported. My Linux uses Kernel 2.6.22.14. OK, I might upgrade, but then 2.6.24.3 is not even the newest kernel version. Is there really no .deb package available?
It would be enough to use some kind of "lzm2dir", I do not need to include the real fs.
Quax wrote:
> installing the latest linux live tools from > ftp://ftp.linux-live.org/Linux-Live/linux-live-6.2.4.tar.gz[] is all you need
You are right that's all it tales, precisely copying the tools/ folder to /usr/bin (or anything else from $PATH) is enough …
Thanks
I want to modify some options in my fstab (umask parameter for vfat disks, for instance). It seems that fstab is generated at boot time by linuxlive scripts. Putting my modified fstab in rootcopy doesn't work (and is not a good solution imo). So, who can I change the way fstab is generated ? Where to add the tweaked parameters ?
> thats handled in the initrd. You actually want to mount the initrd, open it > up, fiddle with it and repack it up?
as markds wrote, it is located in initrd.gz.
copy initrd.gz (e.g. in /tmp
gunzip /tmp/initrd.gz
mkdir /mnt/initrd
mount -o loop /tmp/initrd /mnt/initrd
cd to /mnt/initrd and change liblinuxlive as needed
umount /mnt/initrd
cd /tmp && gzip —best initrd
copy changed initrd back to cd/usb
remember that liblinuxlive gets copied from initrd into the system during boot, thus changing /usr/lib/liblinuxlive is senseless.
documented on: 2008-03-24, Quax
Great !
Many thanks for those informations, it worked just fine. If anyone is interested :
I couldn't mount initrd (error message -> mount: could not find any free loop device) so I did :
# mknod -m 0600 /dev/loop255 b 7 255 # mount -o loop=/dev/loop255 /tmp/initrd /mnt/loop
The changes I made is because it bugs me to have all files/directories in vfat drive to be chmod 777 and thus appear green with ls —color. So, on line 276 of liblinuxlive file I removed "umask=0" and replaced by "fmask=0133,dmask=0022"
I had to close the shell where I did the "mount" because I couldn't "umount" (error message -> unmount loop device is busy). A "lsof /mnt/loop" showed me that zsh used the file. I closed the shell and did the "umount" from an other shell.
documented on: 2008-03-24, merindol
*Tags*: convert between RedHat/Fedora rpm or Debian deb packages and Slackware tgz format
pkgtool2 - a supplement to pkgtool with six options.
You can convert x.rpm or x.deb packages to Slackware x.tgz format.
Convert rpm or deb package to Slackware tgz package List contents of rpm/deb/tar.gz/tgz/tar.bz2/zip package Configure & make rules for packages (run/create/read/edit/url) Monitor make install and create record of install Restore backup for /var/log/packages/package_name Create tgz/rpm/deb package from contents of file or directory
pkgtool2-2.2.3.tgz 49Kb Aug 7 2005
documented on: 2007.06.13