Mounting Case Sensitive ISO
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I have an ISO whose file names and directories are case sensitive. When I mount this in CentOS 7.6 using the method I have always used:
sudo mount -t iso9660 -o loop /location/file.iso /mnt/iso
The ISO mounts in all lower case file names and directory names. If I mount using the following:
sudo mount -t iso9660 -o map=off /location/file.iso /mnt/iso
Then everything is upper case (as expected). How can I mount and get the mixed case file names and directory names? I am able to mount it with the expected output on a MacOS system so I suspect I'm missing something in CentOS.
centos mount iso
add a comment |
up vote
1
down vote
favorite
I have an ISO whose file names and directories are case sensitive. When I mount this in CentOS 7.6 using the method I have always used:
sudo mount -t iso9660 -o loop /location/file.iso /mnt/iso
The ISO mounts in all lower case file names and directory names. If I mount using the following:
sudo mount -t iso9660 -o map=off /location/file.iso /mnt/iso
Then everything is upper case (as expected). How can I mount and get the mixed case file names and directory names? I am able to mount it with the expected output on a MacOS system so I suspect I'm missing something in CentOS.
centos mount iso
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
3
Well ask this person how it was created.
– schily
Dec 5 at 18:21
1
Have you experimented with other values for-t
? E.g.,-t cdrom
or-t hsfs
(instead ofiso9660
)? How do you mount it on macOS? Can you run amount
command in macOS and see what options are used there?
– G-Man
Dec 5 at 21:50
2
In general, a properly created CD will display mixed-cased with-t iso9660
. For example, the distribution CDs do this.$ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then theTRANS.TBL
file is not present or incorrectly built.
– Stephen Harris
Dec 5 at 22:55
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have an ISO whose file names and directories are case sensitive. When I mount this in CentOS 7.6 using the method I have always used:
sudo mount -t iso9660 -o loop /location/file.iso /mnt/iso
The ISO mounts in all lower case file names and directory names. If I mount using the following:
sudo mount -t iso9660 -o map=off /location/file.iso /mnt/iso
Then everything is upper case (as expected). How can I mount and get the mixed case file names and directory names? I am able to mount it with the expected output on a MacOS system so I suspect I'm missing something in CentOS.
centos mount iso
I have an ISO whose file names and directories are case sensitive. When I mount this in CentOS 7.6 using the method I have always used:
sudo mount -t iso9660 -o loop /location/file.iso /mnt/iso
The ISO mounts in all lower case file names and directory names. If I mount using the following:
sudo mount -t iso9660 -o map=off /location/file.iso /mnt/iso
Then everything is upper case (as expected). How can I mount and get the mixed case file names and directory names? I am able to mount it with the expected output on a MacOS system so I suspect I'm missing something in CentOS.
centos mount iso
centos mount iso
asked Dec 5 at 18:13
Bogdan Janiszewski
1063
1063
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
3
Well ask this person how it was created.
– schily
Dec 5 at 18:21
1
Have you experimented with other values for-t
? E.g.,-t cdrom
or-t hsfs
(instead ofiso9660
)? How do you mount it on macOS? Can you run amount
command in macOS and see what options are used there?
– G-Man
Dec 5 at 21:50
2
In general, a properly created CD will display mixed-cased with-t iso9660
. For example, the distribution CDs do this.$ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then theTRANS.TBL
file is not present or incorrectly built.
– Stephen Harris
Dec 5 at 22:55
add a comment |
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
3
Well ask this person how it was created.
– schily
Dec 5 at 18:21
1
Have you experimented with other values for-t
? E.g.,-t cdrom
or-t hsfs
(instead ofiso9660
)? How do you mount it on macOS? Can you run amount
command in macOS and see what options are used there?
– G-Man
Dec 5 at 21:50
2
In general, a properly created CD will display mixed-cased with-t iso9660
. For example, the distribution CDs do this.$ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then theTRANS.TBL
file is not present or incorrectly built.
– Stephen Harris
Dec 5 at 22:55
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
3
3
Well ask this person how it was created.
– schily
Dec 5 at 18:21
Well ask this person how it was created.
– schily
Dec 5 at 18:21
1
1
Have you experimented with other values for
-t
? E.g., -t cdrom
or -t hsfs
(instead of iso9660
)? How do you mount it on macOS? Can you run a mount
command in macOS and see what options are used there?– G-Man
Dec 5 at 21:50
Have you experimented with other values for
-t
? E.g., -t cdrom
or -t hsfs
(instead of iso9660
)? How do you mount it on macOS? Can you run a mount
command in macOS and see what options are used there?– G-Man
Dec 5 at 21:50
2
2
In general, a properly created CD will display mixed-cased with
-t iso9660
. For example, the distribution CDs do this. $ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then the TRANS.TBL
file is not present or incorrectly built.– Stephen Harris
Dec 5 at 22:55
In general, a properly created CD will display mixed-cased with
-t iso9660
. For example, the distribution CDs do this. $ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then the TRANS.TBL
file is not present or incorrectly built.– Stephen Harris
Dec 5 at 22:55
add a comment |
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f486208%2fmounting-case-sensitive-iso%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f486208%2fmounting-case-sensitive-iso%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try to create a iso image with mixed case filenames?
– schily
Dec 5 at 18:15
It was created by someone else. I know the mixed case works on other OS though and the mixed case is important for a script to run.
– Bogdan Janiszewski
Dec 5 at 18:18
3
Well ask this person how it was created.
– schily
Dec 5 at 18:21
1
Have you experimented with other values for
-t
? E.g.,-t cdrom
or-t hsfs
(instead ofiso9660
)? How do you mount it on macOS? Can you run amount
command in macOS and see what options are used there?– G-Man
Dec 5 at 21:50
2
In general, a properly created CD will display mixed-cased with
-t iso9660
. For example, the distribution CDs do this.$ mount -r -o loop -t iso9660 CentOS-7-x86_64-Everything-1810.iso /mnt $ ls /mnt CentOS_BuildTag GPL RPM-GPG-KEY-CentOS-7 images/ EFI/ LiveOS/ RPM-GPG-KEY-CentOS-Testing-7 isolinux/ EULA Packages/ TRANS.TBL repodata/
If you are not seeing case properly then theTRANS.TBL
file is not present or incorrectly built.– Stephen Harris
Dec 5 at 22:55