Archive for the ‘linux’ Tag
Install Ubuntu (9.10) via Floppy
Introduction
If you are in hurry you can skip this section. ![]()
I had an old laptop with no capabilities of booting via USB and with a broken cd-rom, but a working floppy. So the main goal was to boot the computer from a floppy then tell the computer to boot via the ubuntu live installed on an USB key.
What you need.
- A computer that can boot from cd and a USB port.
- A computer with a running floppy drive.
- An empty USB key (>=1Gb).
- An empty Floppy (1.44Mb).
Create the bootable USB
Boot the pc with the desktop live cd-rom. Plug-in the empty usb key and make it bootable. From Applications menu there’s a voice like create USB key. Otherwise you can have a look at the Installation from USB stick on ubuntu official site.
Create the bootable floppy
I’ve tried many way to have a bootable floppy, that can recognize the USB key for booting (dsl, sbm, …) but the only one that had worked was: plop bootmanager. As advised me on the TiLUG Mailing List (Italian).
Download the latest version of plop boot manager (at the time of writing: 5.0.5), expand the obtained zip wherever you like and write the image on the floppy: dd if=plpbt.img of=/dev/fd0.
Booting
Now insert floppy, plug the usb key into the computer with broken cd-rom and boot it via floppy. When asked, select USB from the menu and that’s all folks!
Epson perfection 1650 on Debian etch (4.0)
The scanner epson perfection 1650 (via USB) on a Debian stable (4.0) is fully supported. All you need in order to use it is to run the following packages and the use Gimp for acquiring images.
aptitude install -P xsane libsane-extras sane-utils
Also remember to add required users to the scanner group
adduser <your_user> scanner
Make an ISO image
Here is how to create an ISO image (file .iso) on your hard disk. Useful when needed to make multiple copy of a CD. The following example starts create it directly from CD but since in Linux everything is a file…
mkisofs -D -o ~/my-cool-cd.iso /cdrom
the -D option allow the deep ISO9660 directory nesting.
You can easily use this command even from windows by installing the cygwin with the mkisofs package.
UPDATE
The command above it’s a bit strict. In order to create a more “relaxed” cd-rom you could use the following command
mkisofs -l -D -N -relaxed-filenames -V “Volume Label” -o ~/my-cool-cd.iso /cdrom
Here the options:
- -l: Allow full 31-character filenames. Normally the ISO9660
file-name will be in an 8.3 format which is compatible with MS-DOS,
even though the ISO9660 standard allows filenames of up to 31
characters. If you use this option, the disc may be difficult to
use on a MS-DOS system, but will work on most other systems. Use
with caution. - -D: Do not use deep directory relocation, and instead just pack them in
the way we see them. If ISO9660:1999 has not been selected, this
violates the ISO9660 standard, but it happens to work on many
systems. Use with cau- tion. - -N: Omit version numbers from ISO9660 filenames. This violates the
ISO9660 standard, but no one really uses the version numbers anyway.
Use with caution. - -relaxed-filenames: Allows ISO9660 filenames to include all 7-bit
ASCII characters except lowercase letters. This violates the ISO9660
standard, but it happens to work on many systems. Use with
caution.
Leave a Comment
Leave a Comment
Comments (2)