PDA

View Full Version : Help with a script



lindros
07-18-2003, 08:19 PM
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..

Dave_Bechtel
07-19-2003, 02:43 AM
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.


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

lindros
07-19-2003, 04:48 AM
:D 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 :wink: , didnt even think about that. Thanks again, I will ask if i run into any problems.

lindros
07-22-2003, 05:04 AM
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

oreo
07-22-2003, 05:51 AM
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?

kx14386
07-22-2003, 02:40 PM
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"???

oreo
07-22-2003, 10:35 PM
Are you sure this is the right post?

paradocs
07-23-2003, 04:31 AM
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. :o

Best Wishes
paradocs

edit 1 made the link url tag.
edit 2 fixed typo burn

lindros
07-24-2003, 03:40 AM
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.)

paradocs
07-24-2003, 05:46 AM
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

lindros
07-24-2003, 08:26 PM
yeah man.. i have a Mavaca camera also.. that is how i came up with this project to do for my class. That, and you can also use it just to back up files that u have stored on tons of floppies. I am going to work on it more to make it more advanced, but it does the job for now.

Feel free to use it, that is why i posted it here.