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

Thread: editting knoppix image with inside windows

  1. #1
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    11

    editting knoppix image with inside windows

    is there a way i can edit knoppix with inside windows?
    thanks
    ryan

  2. #2
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    What do you mean?
    Do you mean to edit the ISO image file in Windows? You can use a program like WinISO or ISOBuster to edit the ISO image.

    Do you mean to remaster a new customized Knoppix CD while running in Windows? As far as I can tell, it would be impossible unless you use a virtual machine like VMWare or QEMU.

  3. #3
    Administrator Site Admin-
    Join Date
    Apr 2003
    Location
    USA
    Posts
    5,441
    Quote Originally Posted by UnderScore
    You can use a program like WinISO or ISOBuster to edit the ISO image.
    James,
    I have no idea what he was asking either. I know you can use paid programs like ISOMagic and MagicISO (gotta love the originality of the competing names) to edit an iso, but as far as I know I can't edit an ISO with IOSBuster. I've been an long time user and advocate of the program, I think it's great for the many things it does. It's wonderful for extracting files from an ISO, as well as for recovering data from a CD when Windows can't. But if it can edit an iso then I'm really missing something. Can it (the free version) edit an iso and if so how?

    And, of course, you can edit an ISO with many of the hex file editors. Of course, this takes a lot of dedication and understanding of what you are trying to do, but it does answer his question.

  4. #4
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    Yeah you're right. ISOBuster is a sweet tool but not a ISO editor. heheh, I forgot about hexediting too.

  5. #5
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    11
    the "KNOPPIX" file image in the iso is there a way i can edit that with inside windows. so i can remaster it as Harry Kuhman saids. i`m a big fan of linux but i`m to lazy to use it from day to day so live CDs are great but there are a few things i would like on them at my figher tips at boot.
    thanks
    ryan

  6. #6
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    No. The Knoppix file inside the ISO is its own compressed ISO image. The technical term is compressed loopback or cloop image file. I not heard of any method of opening a cloop file in Windows. This not to say that it could never be done but it would require someone to take the existing e cloop filesystem code and translate that to Windows. See http://am.xs4all.nl/phpwiki/index.php/cloop for more info.

  7. #7
    Junior Member registered user
    Join Date
    Apr 2005
    Posts
    11
    thanks, what a/b editting when u boot knoppix is there a way to edit the image from inside knoppix or edit another knoppix image from knoppix using a cd-rw. i don`t really what to edit knoppix its self i want to edit DSL (Damn Small Linux) a diffenet version of knoppix but knoppix none the least.
    thanks
    ryan

  8. #8
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    To "edit" the ISO & making your own Knoppix CD is done through a process called remastering. I wrote a HOWTO document about it called HOWTO: Remaster the easy way using menu based scripts. There is the wiki based HOWTO http://www.knoppix.net/wiki/Knoppix_Remastering_Howto. There is also an alternative method here http://www.knoppix.net/forum/viewtopic.php?t=18222. If you intend to remaster Knoppix then I would recommend that you use Knoppix 3.8.2.

    As for remastering DSL, I am not postive that either of those methods will work for DSL. Have you asked around the DSL forums for help with remastering?

    I hope this helps.
    James

  9. #9

    How about...

    Actually, I can think of a way that should work. I have not tried it, so please do not attempt it without confirmation by someone else. THIS IS ONLY OFF THE TOP OF MY HEAD. I'm assuming you can boot Knoppix, but your only partitions are Windows, at least one of which is FAT32. If all of them are NTFS, then this will not work (insufficient RW support in Linux). I will assume that your Windows partition is /dev/hda1, mounted at /mnt/hda1.

    Boot Knoppix and mount your Windows partition RW (under KDE, rightclick the icon and click "Mount read-write".
    Open a console.
    Execute the following commands (root is required):
    Code:
    dd if=/dev/null of=/mnt/hda1/knoppix_remaster bs=1024 count=3M
    mke2fs /mnt/hda1/knoppix_remaster
    mkdir /mnt/knoppix_remaster
    mount -t ext2 /mnt/hda1/knoppix_remaster /mnt/knoppix_remaster -o loop,rw
    cp -pr /KNOPPIX/* /mnt/knoppix_remaster
    This should work, and then you can "chroot /mnt/knoppix_remaster" and modify your system. You have to create a permission-supporting filesystem (such as ext2, which is smaller than ext3 or reiserfs) on your hard drive without repartitioning. This filesystem will be stored as a file (knoppix_remaster) on your windows partition, and when mounted, will be available through /mnt/knoppix_remaster from Knoppix. First, let's review what the above commands do (make sure you have no typos, or you could destroy your Windows data):

    1. Create a 3-gig file to hold your ext2 filesystem (it must be sufficiently large to hold the largest, uncompressed, your filesystem could become at any point in time during remastering. Give yourself some breathing room, since APT .deb packages can use space if you don't clean them out periodically.
    2. Create the ext2 filesystem (journaling takes up space, ext2 supports permissions, is Linux-native, and doesn't journal).
    3. Create a directory to mount your temporary Knoppix remaster filesystem.
    4. Mount it, loopback, read-write. (loopback is necessary, read-write is if you intend to modify the data (probably)).
    5. Copy the KNOPPIX filesystem into that ext2 filesystem recursively, keeping permissions. (These options are necessary.)

    Once you're done, just compress the data into a KNOPPIX cloop iso image, like you normally would (outside of the chroot):

    Code:
    mkisofs -R -U -V "KNOPPIX.net filesystem" -publisher "KNOPPIX www.knoppix.net" -hide-rr-moved -cache-inodes -no-bak -pad /mnt/knoppix_remaster | nice -5 /usr/bin/create_compressed_fs - 65536 > /mnt/hda1/KNOPPIX
    That was copied from the Knoppix remastering howto, note the 2 changes. If you are using a different command to do it, make sure you apply the two changes to the paths.

    If you have to shutdown and return to your work, when you reenter Knoppix, all you will have to do is:

    Open a console.
    Execute, as root:
    Code:
    mkdir /mnt/knoppix_remaster
    mount -t ext2 /mnt/hda1/knoppix_remaster /mnt/knoppix_remaster -o loop,rw
    And then you can chroot into that filesystem again. The rest is mostly the same. Again, keep in mind and please do not attempt this unless someone else verifies it, I would hate to be responsible for loss of data on your part. BTW, you should always backup your data before doing something like this. Bye!

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Location
    Long Island, NY USA
    Posts
    1,510
    Your methods & theory sounds like it would work great if he wanted to RUN knoppix. In the original poster's case, he did NOT want to run knoppix. Thus, I fear it is impossible.

Page 1 of 2 12 LastLast

Similar Threads

  1. Knoppix to create Windows XP Image? DD or ntfsClone or what?
    By Mel_3 in forum MS Windows & New to Linux
    Replies: 1
    Last Post: 01-06-2008, 08:59 PM
  2. KNOPPIX IMAGE INSIDE WINDOWS NTFS PARTITION
    By CytoTech in forum MS Windows & New to Linux
    Replies: 5
    Last Post: 09-12-2005, 01:26 PM
  3. Looking to image an entire Windows machine using Knoppix
    By rbasting in forum MS Windows & New to Linux
    Replies: 5
    Last Post: 07-30-2005, 05:43 AM
  4. network boot knoppix iso image from a ms windows server
    By adrianmak in forum General Support
    Replies: 1
    Last Post: 11-09-2004, 04:27 AM
  5. Get VMware to run *inside* Knoppix?
    By probono in forum Ideas
    Replies: 1
    Last Post: 04-19-2003, 06:05 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
  •  


Cisco ASA5525-X 8-Port Firewall Adaptive Security Appliance  *USED* picture

Cisco ASA5525-X 8-Port Firewall Adaptive Security Appliance *USED*

$55.00



Fortinet Fortigate FG-61E Firewall Network Security Appliance ATP Bundle 1 years picture

Fortinet Fortigate FG-61E Firewall Network Security Appliance ATP Bundle 1 years

$263.99



Cisco ASA5506-K9 ASA 5506-X Network Security Firewall picture

Cisco ASA5506-K9 ASA 5506-X Network Security Firewall

$40.00



Cisco ASA 5506-X Network Security Firewall w/ AC Adapter picture

Cisco ASA 5506-X Network Security Firewall w/ AC Adapter

$39.99



Fortinet Fortigate-60E Network Security Firewall FG-60E *Registered picture

Fortinet Fortigate-60E Network Security Firewall FG-60E *Registered

$64.99



Fortinet Fortigate 61E FG-61E Network Security/Firewall Appliance *Registered* picture

Fortinet Fortigate 61E FG-61E Network Security/Firewall Appliance *Registered*

$79.99



pfSense Firewall VPN AES-NI Celeron N3350 1.10GHz 10GB RAM 80GB SSD 5x Intel NIC picture

pfSense Firewall VPN AES-NI Celeron N3350 1.10GHz 10GB RAM 80GB SSD 5x Intel NIC

$91.00



Fortinet FortiWiFi-60E Network Security Appliance - White picture

Fortinet FortiWiFi-60E Network Security Appliance - White

$38.40



Fortinet FortiGate 60F | 10 Gbps Firewall Network Security EXPIRED (FG-60F)- New picture

Fortinet FortiGate 60F | 10 Gbps Firewall Network Security EXPIRED (FG-60F)- New

$226.79



Palo Alto Networks PA-850 Firewall VPN Gateway w/ Rack Ears and Dual PSU picture

Palo Alto Networks PA-850 Firewall VPN Gateway w/ Rack Ears and Dual PSU

$194.99