-
Help with a script
hey.. pretty new to knoppix and i have to write a little script for my class. I am booting off the knoppix cd on my laptop.
Script project: To take pics from multiple floppy disks, and burn them to a cd.
I can picture the script in my head, but tell me if im on the right track.
I would need to first have the script ask user to insert floppy, then read it somehow, then save it in a temporary file.
Ask if user has another floppy, insert, read, save to temp. file. [repeat until user says No more floppies]
then take that temp file and burn it to cd
then delete the temp file as i wouldnt need it anymore
Question is, what command would i use to pull the files from the floppy?
And also.. im going to be using an external usb cd burner, will it work? and how would i point to the burner to burn the pics?
Thanks, if any more info is needed, just tell me.. im a noob
I'm not looking for the script written for me.. just some basic tools and commands i could use..
-
Senior Member
registered user
Re: Help with a script
1st you have to mount the floppy ( mount /dev/fd0 /mnt/floppy ) and then use ' cp ' to copy the files (' man cp '). DON'T FORGET to umount the floppy drive before asking for another disk.
' cdrecord -scanbus ' should detect your burner, use ' man cdrecord ' for more help. And BTW, you are better off storing the copied files in a temp *directory*, not a file.
--Best of luck w/ your assignment.
Originally Posted by
lindros
hey.. pretty new to knoppix and i have to write a little script for my class. I am booting off the knoppix cd on my laptop.
Script project: To take pics from multiple floppy disks, and burn them to a cd.
I can picture the script in my head, but tell me if im on the right track.
I would need to first have the script ask user to insert floppy, then read it somehow, then save it in a temporary file.
Ask if user has another floppy, insert, read, save to temp. file. [repeat until user says No more floppies]
then take that temp file and burn it to cd
then delete the temp file as i wouldnt need it anymore
Question is, what command would i use to pull the files from the floppy?
And also.. im going to be using an external usb cd burner, will it work? and how would i point to the burner to burn the pics?
Thanks, if any more info is needed, just tell me.. im a noob
I'm not looking for the script written for me.. just some basic tools and commands i could use..
-
thanks man, that is some of the info i was looking for right now. I know the structure of the script in my head, just need/needed some commands and such like you provided, especially the directory insted of a file , didnt even think about that. Thanks again, I will ask if i run into any problems.
-
how come when i try to mount the floppy drive.. it says that it is already mounted?
Part of script:
echo insert floppy and press enter...
read var
mkdir tempfloppy
mount /dev/fd0
cp /dev/fd0 tempfloppy
umount /dev/fd0
Should it be this?
echo insert floppy and press enter...
read var
mkdir tempfloppy
cd tempfloppy
mount /dev/fd0
cp /dev/fd0 tempfloppy
umount /dev/fd0
im basically having troubles mounting the floppy... and is that the right command to copy the contents of the floppy disk to the tempfloppy directory?
Thanks... uber noob here
-
Junior Member
registered user
When using mount, you have to mount a device to a directory in order to access this file. here's an example:
mkdir /mnt/floppy (it should laready be created though)
mkdir /tmp/fl2cd
mount /dev/fd0 /mnt/floppy
cp /mnt/floppy/*.* /tmp/fl2cd
...
(You get the point)
BTW, is this for a college course?
-
OK guys,
after some testing with other operatingsystems (hpux) I have found out, the problem resides on the serverside.
I've checked the ftpd-manualpage:
...
Ftpd authenticates users according to five rules.
...
3. The user must have a standard shell
BINGO!
After adding /bin/bash everything works fine with ftp.
bad joke caused by command
"useradd username"
on the serverside kx-2003-06-06 (ftpd).
This command was used by me for configuring my "non-root"-user after knoppix-install.
The sideeffekt of the above command is, the added user has no shellentry in the passwd and ftpd exits with
"login incorrect"
It's really simple!
What I didn't understood is, why "ftpd -d" doesn't report the cause for failure - in this case "no shell entry in the passwd"???
-
Junior Member
registered user
Are you sure this is the right post?
-
Senior Member
registered user
Hello lindros
When you get to the part of the script to burn
the files onto a cd look at the scripts I have
posted to burn_home. My project is very
preliminary but this may give you some
http://www.knoppix.net/forum/viewtopic.php?t=2705
you will need
cdrecord -scanbus (to get dev=?,?,? to define your burner location)
cdrecord
mkisofs (for long file name support add after mkisofs
-joliet-long yes no space in that option)
and most fun of all
eject cdrom1 (my cd burner is the second cd so it's cdrom1)
for the thrill of seeing it pop out when all is done.
Best Wishes
paradocs
edit 1 made the link url tag.
edit 2 fixed typo burn
-
here is the final script that i wrote:
#!/bin/bash
killall automount
echo Insert floppy and press Enter to continue…
read var
mkdir tempfloppy
mount /mnt/auto/floppy
cp /mnt/auto/floppy/*.* tempfloppy
umount /mnt/auto/floppy
continue=y
while [ “$continue” == y –o “$continue” = Y];do
mount /mnt/auto/floppy
cp /mnt/auto/floppy/*.* tempfloppy
umount /mnt/auto/floppy
echo “Do you have another floppy (y/n)?”
read continue
done
mkisofs –R –J –l –o pics.img tempfloppy
cdrecord –eject –v speed=2 dev=1,0,0 pics.img
it works good and the reason i wrote this was to either back up floppies i have laying around, and my digi came saves to floppy discs, so now i can burn them to a cd when i get enough (easier to carry around one cd then a stack of floppy disks.)
-
Senior Member
registered user
Hi lindros,
Good work. I may even use your script.
I so happens that I have taken over
6,000 photos on floppies with a Mavaca
fd91 camera. Perhaps yours is similar.
Did you know that KNOPPIX even has a
program for the camera called 411toppm ?
KNOPPIX sure beats M$ with scripting
tools for the motavated user. You
don't have to wait for some program
to come along to purchase.
Best Wishes
paradocs
Similar Threads
-
By jehan60188 in forum MS Windows & New to Linux
Replies: 1
Last Post: 05-25-2005, 08:40 PM
-
By digDug in forum General Support
Replies: 5
Last Post: 01-14-2005, 11:50 AM
-
By bob58 in forum General Support
Replies: 24
Last Post: 10-13-2004, 10:08 PM
-
By orcslayer in forum General Support
Replies: 1
Last Post: 01-03-2004, 02:04 AM
-
By punk000 in forum General Support
Replies: 3
Last Post: 02-26-2003, 07:02 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
SQL Server 2019 Standard (10 CAL) - Windows and Linux, Physical License NEW
$178.45
Microsoft SQL Server 2019 Standard (10 CAL) Windows, Linux Physical License, NEW
$178.99
1U BareMetal pfsense opnsense Router Firewall DNS Server 6x 10GB Ethernet Ports
$169.00
IBM X3200 M3 Tower Server Intel Xeon X3450 2.67GHz 2GB 2*500 Gb Hdd Linux AS IS
$60.00
NEW Redhat Enterprise Linux 7 Server Edition (Factory Sealed)
$25.00
Custom Laptop, Desktop or Server Badge - Set of 12 (Select your Linux distro)
$5.45
IBM E850 Power8 2x 12C 3.02GHz 512Gb 1.8Tb SAS 10GbE 16Gb Linux Server 8408-E8E
$699.95
1U Server 15" Depth X11SSH-F E3-1270 V6 3.8Ghz 4 Core 32GB RAM 240G SSD
$250.00
Linux Multi-Boot USB Installer 13-in-1 | Dual USB-A & USB-C | Ubuntu, Mint, Etc
$19.99
1U Open Source Router Firewall X10SLH-N6- E3-1270 V3 6x 10GB Ethernet 16GB RAM
$449.00