Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Help with a script

  1. #1
    Junior Member
    Join Date
    Jul 2003
    Posts
    6

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

  2. #2
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    USA, IL
    Posts
    1,041

    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.

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

  3. #3
    Junior Member
    Join Date
    Jul 2003
    Posts
    6
    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.

  4. #4
    Junior Member
    Join Date
    Jul 2003
    Posts
    6
    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

  5. #5
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    12
    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?

  6. #6
    Junior Member
    Join Date
    Jul 2003
    Posts
    7
    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"???

  7. #7
    Junior Member registered user
    Join Date
    Jul 2003
    Posts
    12
    Are you sure this is the right post?

  8. #8
    Senior Member registered user
    Join Date
    Apr 2003
    Location
    Iowa U.S.A.
    Posts
    226
    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

  9. #9
    Junior Member
    Join Date
    Jul 2003
    Posts
    6
    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.)

  10. #10
    Senior Member registered user
    Join Date
    Apr 2003
    Location
    Iowa U.S.A.
    Posts
    226
    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

Page 1 of 2 12 LastLast

Similar Threads

  1. how do I write a script?
    By jehan60188 in forum MS Windows & New to Linux
    Replies: 1
    Last Post: 05-25-2005, 08:40 PM
  2. cannot run a script on bootup
    By digDug in forum General Support
    Replies: 5
    Last Post: 01-14-2005, 11:50 AM
  3. help with writing script
    By bob58 in forum General Support
    Replies: 24
    Last Post: 10-13-2004, 10:08 PM
  4. Startup Script doesn't run
    By orcslayer in forum General Support
    Replies: 1
    Last Post: 01-03-2004, 02:04 AM
  5. script
    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
  •  


AMD EPYC 7282 CPU Processor 16 Cores 32 Threads 2.8GHZ up to 3.2GHZ 120W no lock picture

AMD EPYC 7282 CPU Processor 16 Cores 32 Threads 2.8GHZ up to 3.2GHZ 120W no lock

$76.00



Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc... picture

Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc...

$419.99



Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc... picture

Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc...

$619.99



Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1 picture

Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1

$39.99



Intel Core i7-8700 Desktop CPU Processor 3.20 GHz SR3QS picture

Intel Core i7-8700 Desktop CPU Processor 3.20 GHz SR3QS

$87.00



Intel Core i5-12600KF Desktop Processor 10 (6P+4E) Cores up to 4.9 GHz Unlocked. picture

Intel Core i5-12600KF Desktop Processor 10 (6P+4E) Cores up to 4.9 GHz Unlocked.

$139.59



AMD Ryzen 5 4500 6-Core 3.6GHz Socket AM4 65W CPU Desktop Processor picture

AMD Ryzen 5 4500 6-Core 3.6GHz Socket AM4 65W CPU Desktop Processor

$79.00



Intel Quad Core i3-12100 3.3GHz 12MB LGA1700 12th Gen. CPU Processor SRL62 picture

Intel Quad Core i3-12100 3.3GHz 12MB LGA1700 12th Gen. CPU Processor SRL62

$45.93



Intel 16 Core i7-13700T DESKTOP processor TURBO Boost 4.90Ghz CM8071504820903 picture

Intel 16 Core i7-13700T DESKTOP processor TURBO Boost 4.90Ghz CM8071504820903

$269.00



AMD Ryzen 2nd Gen 5 2600 - 3.9 GHz Six Core (YD2600BBM6IAF) Processor w/ Decal picture

AMD Ryzen 2nd Gen 5 2600 - 3.9 GHz Six Core (YD2600BBM6IAF) Processor w/ Decal

$69.99