Results 1 to 8 of 8

Thread: Knoppix, how can I get data off it?

  1. #1
    Flower Child stytagm's Avatar
    Join Date
    Aug 2004
    Location
    London
    Posts
    754
    Thanks
    47
    Thanked
    23 times in 18 posts

    Knoppix, how can I get data off it?

    I've been using knoppix a bit lately on both my own comp and my parents and have come up with the following problem, how the hell do I get data off it, specifically by burning a CD?

    Knoppix doesn't let you write to the local disks, presumably for security / safety, and while it offered to make a permanent knoppix home directory I assumed that windose wouldn't be able to read it, so I didn't bother.

    The first few times I was at home and so I emailed things to myself, but when I was at my folks last week that wasn't an option (nasty dialup), so I spent an hour looking through man pages for CDRecord and getting nowhere. I can use a command line, Just, in Linux so this was a little beyond me. I only wanted to write one or two files to a disk.

    So, anyone got an easy guide to using CDrecord, or an alternative?
    They told me I was gullible ... and I believed them.

  2. #2
    Agent of the System ikonia's Avatar
    Join Date
    May 2004
    Location
    South West UK (Bath)
    Posts
    3,736
    Thanks
    39
    Thanked
    75 times in 56 posts
    ok - here we go.

    on live CD's you can write to certain areas which are contained in RAM. eg: /var/tmp

    put your data in a dir in /var/tmp

    then use mkisofs to create an iso image of your data dir

    mkisofs -o /var/tmp/myiso.iso /var/tmp/data_dir

    then use cdrecord -scanbus

    you'll get a load of info like this

    0,0,0
    0,0,1
    0,0,2
    0,0,3 SOME CD BURNING DEVICE

    the 0,0,0 represent the position of the device on the bus, and your probably using an IDE burner so that will mean your using SCSI emulation to burn this

    "SOME CD BURNING DEVICE" represents the name of your device such as "Sony CD Writer"

    Now use

    cdrecord dev=0,0,3 -speed 8 myiso.iso

    this will burn the data from myiso.iso onto the burner at 0,0,3 at 8 speed

    You may need to check the syntax of these commands as I'm on my laptop with no writer at the moment, but you'll be ok with that basis.
    It is Inevitable.....


  3. #3
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS
    or use k3b, if it's supplied, it's a decent easy cd creator clone

  4. #4
    Member
    Join Date
    Sep 2003
    Location
    Peterborough
    Posts
    147
    Thanks
    0
    Thanked
    0 times in 0 posts
    Quote Originally Posted by directhex
    or use k3b, if it's supplied, it's a decent easy cd creator clone
    Surely if something was to be a clone of Easy CD Creator, it would have to be buggy, slow, create lots of useless cd-shaped coasters and be generally the crappiest piece of software ever?

    Whereas K3B is actually quite good.


  5. #5
    Flower Child stytagm's Avatar
    Join Date
    Aug 2004
    Location
    London
    Posts
    754
    Thanks
    47
    Thanked
    23 times in 18 posts
    Thanks for the info guys, I'll let you know how I get on.
    They told me I was gullible ... and I believed them.

  6. #6
    Senior Member chrestomanci's Avatar
    Join Date
    Sep 2004
    Location
    Reading
    Posts
    1,614
    Thanks
    94
    Thanked
    96 times in 80 posts
    • chrestomanci's system
      • Motherboard:
      • Asus AMD AM4 Ryzen PRIME B350M
      • CPU:
      • AMD Ryzen 1600 @ stock clocks
      • Memory:
      • 16Gb DDR4 2666MHz
      • Storage:
      • 250Gb Samsung 960 Evo M.2 + 3Tb Western Digital Red
      • Graphics card(s):
      • Basic AMD GPU (OSS linux drivers)
      • PSU:
      • Novatech 500W
      • Case:
      • Silverstone Sugo SG02
      • Operating System:
      • Linux - Latest Xubuntu
      • Monitor(s):
      • BenQ 24" LCD (Thanks: DDY)
      • Internet:
      • Zen FTTC
    You can write to the hard disc by remounting it as read/write.

    Once you have found out which partion you want to write to, type into a console window:

    sudo mount /dev/hda5 /mnt/hda5 -o remount,rw

    where 'hda5' is the partion you want to write to.

    The sang is, that will not work with NTFS partions, so if you are using XP, then you are probably out of luck.

  7. #7
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,027 times in 678 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS
    the above assumes

    1) you already have an empty folder called /mnt/hda5
    2) the disk is already mounted read-only in this location (hence the -o remount to change an existing mount)

    whether these apply by default on knoppix, no idea

  8. #8
    Agent of the System ikonia's Avatar
    Join Date
    May 2004
    Location
    South West UK (Bath)
    Posts
    3,736
    Thanks
    39
    Thanked
    75 times in 56 posts
    people who use knoppix are 9 times out of 10 booting linux on a windows box.

    this means chances there will be no partitions defined other than a windows partition which is NTFS and therefore not wirte supported in knoppix
    It is Inevitable.....


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. networking knoppix 3.4 and windows xp
    By megah0 in forum Software
    Replies: 11
    Last Post: 14-09-2004, 10:44 PM
  2. Replies: 4
    Last Post: 11-06-2004, 07:39 PM
  3. VB6 - accessing array data publically
    By Steve in forum Software
    Replies: 4
    Last Post: 26-04-2004, 10:02 PM
  4. DMI Pool Data
    By AndyL in forum Software
    Replies: 4
    Last Post: 07-11-2003, 11:13 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
  •