X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=3faa8d3763fc3c2c70c283f344f29cd974f412a9;hb=763ef228c78d8d8c1d3aa70f978f23fe297a9168;hp=d53fa20d0b78a7e0dd3fc5bf230e0c237fe58129;hpb=17bd99efa9c1586bf6cb4048753ee32598ff72e2;p=grml-tips.git diff --git a/grml_tips b/grml_tips index d53fa20..3faa8d3 100644 --- a/grml_tips +++ b/grml_tips @@ -1715,7 +1715,7 @@ GET http://www.google.com HTTP/1.0 [press enter twice] Adjust system for use of qemu with kqemu: Make sure you have all you need: -# apt-get update ; apt-get install qemu grml-kerneladdons-$KERNELVERSION +# aptitude update ; aptitude install qemu kqemu-modules-$(uname -r) Then set up kqemu: @@ -2771,3 +2771,11 @@ On the client side you can use something like the following in /etc/fstab: 192.168.1.101:/backups /mnt/nfs nfs defaults,users,wsize=8192,rsize=8192 0 0 -- +Mount a cloop file: + +# aptitude install cloop-src +# m-a a-i cloop-src + +# modprobe cloop file=/path/to/cloop/file +# mount -r -t iso9660 /dev/cloop /mnt/test +--