Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Dec 2003 01:30:31 +0800
From:      Ariff Abdullah <skywizard@time.net.my>
To:        Charles Howse <chowse@charter.net>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: mkisofs options question
Message-ID:  <20031225013031.3c0d98f2.skywizard@time.net.my>
In-Reply-To: <200312241030.36006.chowse@charter.net>
References:  <200312240933.44534.chowse@charter.net> <44ekuuqjlp.fsf@be-well.ilk.org> <200312241030.36006.chowse@charter.net>

next in thread | previous in thread | raw e-mail | index | archive | help


On Wed, 24 Dec 2003 10:30:35 -0600
Charles Howse <chowse@charter.net> wrote:
> [root@moe ~]# mkisofs -U -R -o /tmp/cdimg.iso /disk2/curly
> /disk2/larry Warning: creating filesystem that does not conform to
> ISO-9660. Using CUSTOM000 for  /CUSTOM (CUSTOM)
> mkisofs: Error: '/disk2/larry/CUSTOM' and '/disk2/curly/CUSTOM' have
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> the same Rock Ridge name 'CUSTOM'.
> mkisofs: Error: '/disk2/larry/CUSTOM' and '/disk2/curly/CUSTOM' have
> the same Rock Ridge name 'CUSTOM'.
> mkisofs: Unable to sort directory
>

It's obvious, you have two 'CUSTOM' files. mkisofs will pack all the
files in a single root directory, hence, causing that error. Probably
what you realy need is '-graft-points' to separate each directory into
it's own container directory.

mkisofs -U -R -o /tmp/cdimg.iso -graft-points \
  curly/=/disk2/curly larry/=/disk2/larry

--

Ariff Abdullah
MyBSD
http://www.MyBSD.org.my (IPv4)
http://staff.MyBSD.org.my (IPv6/IPv4)
http://tomoyo.MyBSD.org.my (IPv6/IPv4)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031225013031.3c0d98f2.skywizard>