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

Thread: Old IDE tape drives / streamers on contemporary Ubuntu?

  1. #1
    Join Date
    Aug 2006
    Beans
    92
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Question Old IDE tape drives / streamers on contemporary Ubuntu?

    I've got an old "iomega tape 420" Floppy cable connected (similar to IDE) tape drive, a Ditto drive, for QIC80 tapes, connected to my floppy disk IDE connector. Now, where to go from here?

    The drive powers up bgut Ubuntu doesn't show any references to it upon bootup or any tape-resembling entries in /dev.
    (In case the drive is only mounted when a tape is inserted, I inserted one, the motors spun up, shuttling the tape and then rested - still no change and no activity in syslog, is that normal, what should it do?)

    Additionally all tape-related stuff seems to have vanished from the repos, no ftape driver, no ztape driver, no ide-tape driver.

    How can I get this thing working? Can I??

    Also: I'm unsure if I hooked it up correctly, no markings there. Is there a way to debug if my Floppy cable is connected correctly, in the right direction etc., even when there's no way to operate the actual tape drive with proper drivers?

    Back then I filled the tapes with the Windows (proprietary?) software for the IoMega devices, problably using some compression.
    Would be geeky fun to look into my old collection of Sony 2120 tapes and waste some time...
    Last edited by isync; March 29th, 2013 at 07:50 PM.

  2. #2
    Join Date
    Jan 2007
    Location
    Location: Location:
    Beans
    1,246
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    what does the command

    mt status

    give you?
    clear && echo paste url and press enter; read paste; (youtube-dl $paste) | zenity --progress --title="" --text "Downloading, please wait" --auto-close --pulsate && ans=$(zenity --file-selection); gnome-terminal -x mplayer "$ans"

  3. #3
    Join Date
    Aug 2006
    Beans
    92
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Question Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    Aha! First pointer: the command mt (for 'magnetic tape')!

    After reading the man, I did (a stupid) mt status which resulted in "mt: /dev/tape: rmtopen failed: File or Device not found"
    But that was the second pointer: the default mount point for a tape device for contemporary Debian/Ubuntu seems to be /dev/tape, right?
    And, well, that mountpoint is missing! With or without tape doesn't seem to make a difference.

  4. #4
    Join Date
    Jan 2010
    Location
    Hyperborea
    Beans
    2,045
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    I have a hazy memory of some IDE cables that had a twist in them. I think that the middle section of the cable was reversed from end to end.
    I could go and search the loft in the shed, I probably still have some!

  5. #5
    Join Date
    Aug 2006
    Beans
    92
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    No need to... But thank your for offering it. Let's not focus on the cabling stuff, I will use this page here to make sure I've got it connected properly...

    But how should Ubuntu react to it, how can I mount it, how can I make sure the system is able to talk to it??

  6. #6
    Join Date
    Jan 2007
    Location
    Location: Location:
    Beans
    1,246
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    well, you can try this:

    sudo mkdir /media/tape

    mount /media/tape /dev/tape

    Now open the /media/tape folder, is your data showing up?

    If that actually mounted, follow the rest of these instructions

    http://www.cyberciti.biz/faq/mount-d...-ubuntu-linux/
    clear && echo paste url and press enter; read paste; (youtube-dl $paste) | zenity --progress --title="" --text "Downloading, please wait" --auto-close --pulsate && ans=$(zenity --file-selection); gnome-terminal -x mplayer "$ans"

  7. #7
    Join Date
    Jan 2007
    Location
    Location: Location:
    Beans
    1,246
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    You'll be able to find the /dev/ mountpoint with either the mount command or poking around dmesg | tail
    clear && echo paste url and press enter; read paste; (youtube-dl $paste) | zenity --progress --title="" --text "Downloading, please wait" --auto-close --pulsate && ans=$(zenity --file-selection); gnome-terminal -x mplayer "$ans"

  8. #8
    Join Date
    Aug 2006
    Beans
    92
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    I know, I know... Mounting isn't the problem. The problem is that there's no entry in /dev for the device, at all! It seems the system is completely unaware of the tape-drive being connected. Nothing on bootup, nothing in syslog or dmesg. All activity the iomega shows is hardware stuff from powering it up thorugh the molex connector. But the system completely ignores it.

    Would lspci show devices connected via floppy cable?

    Any more hints? Anyone??

  9. #9
    Join Date
    Jun 2007
    Location
    K-o-T,
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    Try some of these commands

    Code:
    Tape Drive Commands
    Rewind tape drive:
    # mt -f /dev/st0 rewind
    
    Find out what block you are at with mt command:
    # mt -f /dev/st0 tell
    
    Display list of files on tape drive:
    # tar -tzf /dev/st0
    
    Restore /www directory:
    # cd /
    # mt -f /dev/st0 rewind
    # tar -xzf /dev/st0 www
    
    Unload the tape:
    # mt -f /dev/st0 offline
    
    Display status information about the tape unit:
    # mt -f /dev/st0 status
    
    Erase the tape:
    # mt -f /dev/st0 erase
    
    You can go BACKWARD or FORWARD on tape with mt command itself:
    (a) Go to end of data:
    # mt -f /dev/st0 eod
    (b) Goto previous record:
    # mt -f /dev/st0 bsfm 1
    (c) Forward record:
    # mt -f /dev/st0 fsf 1
    I cannot remember where I got them,but they used to work on and old backup tape system I used to play with.
    Got bored on how slow it worked.

    Good Luck
    Hypertension = Take with a pinch of salt
    | Psychocats | Ubuntu Documentation | Howto [Solved] | BBcode list | Brother Website |

  10. #10
    Join Date
    Aug 2006
    Beans
    92
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Re: Old IDE tape drives / streamers on contemporary Ubuntu?

    Neither lspci -vv nor hwinfo --block --short show any trace of the device when connected.

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •