201-450 · Question #175
What command is used to create an ISO9660 filesystem that can be properly accessed from a Windows 95/98 machine?
The correct answer is B. mkisofs -J -T -r -o backup.iso /home/joe. Option B is correct because it includes -J, which enables Joliet extensions - the filesystem extensions Microsoft developed specifically for Windows 9x to support long filenames and deep directory structures on CD-ROMs. Without -J, Windows 95/98 falls back to plain ISO9660…
Question
Options
- Amkisofs -l -o backup.iso /home/joe
- Bmkisofs -J -T -r -o backup.iso /home/joe
- Cmkisofs -D -T -o backup.iso /home/joe
- Dmkisofs -j -T -o backup.iso /home/joe
- Emkisofs -d -T -o backup.iso /home/joe
How the community answered
(51 responses)- A2% (1)
- B78% (40)
- C6% (3)
- D2% (1)
- E12% (6)
Explanation
Option B is correct because it includes -J, which enables Joliet extensions - the filesystem extensions Microsoft developed specifically for Windows 9x to support long filenames and deep directory structures on CD-ROMs. Without -J, Windows 95/98 falls back to plain ISO9660, which limits filenames to 8.3 format and may not properly display directory contents. The -r flag adds Rock Ridge extensions (Unix compatibility), and -T generates translation tables, making the disc readable across multiple platforms.
Why the distractors fail:
- A (
-l): Allows 31-character ISO9660 filenames (Level 2), but no Joliet - Windows 95/98 still won't handle it correctly. - C (
-D): Disables deep directory relocation - a structural tweak with no Windows compatibility benefit;-Jis absent. - D (
-j): Lowercase-jperforms filename case conversion, not Joliet; it's easy to confuse with uppercase-Jbut does something entirely different. - E (
-d): Omits trailing periods from filenames - a minor formatting option, not a Windows compatibility solution.
Memory tip: Think J for Joliet, J for just-what-Windows-needs. Whenever a question mentions Windows 9x ISO compatibility, look for the uppercase -J flag - its absence means the answer is wrong.
Topics
Community Discussion
No community discussion yet for this question.