mkubcd.sh issues

Report new bugs here, or look at known issues of current and previous releases of UBCD.

Moderators: Icecube, StopSpazzing

Locked
Message
Author
BeteNoire
Posts: 2
Joined: Mon Feb 20, 2006 4:21 pm

mkubcd.sh issues

#1 Post by BeteNoire » Mon Feb 20, 2006 4:42 pm

I wanted to patch UBCD 3.4 with a new Arachne so I've followed up instructions. But when I want to recreate iso image I get:

Code: Select all

Warning: creating filesystem that does not conform to ISO-9660.
Warning: creating filesystem with (nonstandard) Joliet extensions
         but without (standard) Rock Ridge extensions.
         It is highly recommended to add Rock Ridge
INFO:   UTF-8 character encoding detected by locale settings.
        Assuming UTF-8 encoded filenames on source filesystem,
        use -input-charset to override.
mkisofs: No such file or directory. Invalid node - o
One thing is obvious to me: there's no such argument like "o" in mkisofs command, but there is: -o ;)
Another issue is a path of filename. Shouldn't it be ../ubcd34.iso instead /ubcd34.iso ? Second one tries to write image in the root filesystem and this is not what I want :)
With those slight changes I was able to create iso image.

But what about those extension warnings? Why not to add Rock Ridge?

Victor Chew
Posts: 1368
Joined: Mon Feb 21, 2005 10:59 pm
Contact:

#2 Post by Victor Chew » Mon Feb 20, 2006 11:31 pm

Does anyone else have this problem? It seems to work for me:

Code: Select all

c:\ubcd>mkubcd.bat

c:\ubcd>mkisofs -N -J -joliet-long -D -V "UBCD" -o /ubcd34.iso -b boot/loader.bin -no-emul-b

Warning: creating filesystem that does not conform to ISO-9660.
Warning: creating filesystem with (nonstandard) Joliet extensions
         but without (standard) Rock Ridge extensions.
         It is highly recommended to add Rock Ridge
Using UBCD_000.HTM for  ./docs/ubcd-index.html (ubcd-index-table.html)
Using GET_U000.PL for  ./docs/get-ubcd-docs.pl (get-ubcd-docs-orig.pl)
Using GET_U001.PL for  ./docs/get-ubcd-docs-orig.pl (get-ubcd-docs-curr.pl)

...

BeteNoire
Posts: 2
Joined: Mon Feb 20, 2006 4:21 pm

#3 Post by BeteNoire » Tue Feb 21, 2006 3:21 am

Yep, I think this is due to Joliet-only. But iso is created properly.

Victor Chew
Posts: 1368
Joined: Mon Feb 21, 2005 10:59 pm
Contact:

#4 Post by Victor Chew » Tue Feb 21, 2006 8:26 pm

Check out Version History, first item under V3.4:
Disable RockRidge extension during mkisofs. Thanks to Eric for the suggestion.
Follow the link to the forum discussion that led to the change.

Locked