How to mount loop files in Slax 

http://www.slax.org/documentation_loop_mount.php

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

Size of tmpfs and ram 

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?

Size of tmpfs and ram 

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

Size of tmpfs and ram 

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

Size of tmpfs and ram 

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?)

— turner

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

Size of tmpfs and ram 

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

Size of tmpfs and ram 

> 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

Size of tmpfs and ram 

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.

— turner

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

How modules are built 

http://www.slax.org/forum/viewtopic.php?t=17816

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?

How modules are built 

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

modules building example 

  1. Download tcl related packages from ftp://ftp.slackware.no/linux/slackware/slackware-current/slackware/tcl/

  2. Create temp dir

    mkdir /tmp/tcl
  3. Install tcl-8.4.14-i486-1.tgz

    installpkg -root /tmp/tcl tcl-8.4.14-i486-1.tgz
  4. Install tk-8.4.14-i486-1.tgz, following the same procedure.

    installpkg -root /tmp/tcl tk-8.4.14-i486-1.tgz
  5. Another example following the same procedure, installing expect.

    installpkg -root /tmp/tcl expect-5.43.0-i486-1.tgz
  6. 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

  1. Check the built lzm module.

    unsquashfs -ls !$ | less
  2. 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
  3. 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

How Slax modules are built 

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.

— xpt

Kind of … Slax is built a little bit differently:

  1. setup /mnt/union

  2. add a writeble branch to the union so all new files will go to 001-core/ directory

  3. install all packages for 001-core to /mnt/union

  4. add another writable branch, so all new files and all modifications of existing files goes to 002-apps directory

  5. install all packages for 002-apps to /mnt/union again

  6. add third writable branch to the union, make it store all new and modified files to 003-network directory

  7. 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?

— xpt

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

unsquashfs on debian linux 

http://www.slax.org/forum.php?action=view&parentID=12030

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.

unsquashfs on debian linux 

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

generating fstab 

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 ?

generating fstab 

> 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.

  1. copy initrd.gz (e.g. in /tmp

  2. gunzip /tmp/initrd.gz

  3. mkdir /mnt/initrd

  4. mount -o loop /tmp/initrd /mnt/initrd

  5. cd to /mnt/initrd and change liblinuxlive as needed

  6. umount /mnt/initrd

  7. cd /tmp && gzip —best initrd

  8. copy changed initrd back to cd/usb

  9. 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

generating fstab 

Great !

Many thanks for those informations, it worked just fine. If anyone is interested :

documented on: 2008-03-24, merindol

cmd:pkgtool2 

*Tags*: convert between RedHat/Fedora rpm or Debian deb packages and Slackware tgz format

Info 

pkgtool2 - a supplement to pkgtool with six options.

Source 

http://www.tux.org/pub/people/kent-robotti/looplinux/pkgtool2.readme

Description 

You can convert x.rpm or x.deb packages to Slackware x.tgz format.

Features 

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

Releases 

pkgtool2-2.2.3.tgz 49Kb Aug 7 2005

documented on: 2007.06.13