Article Title: Solve the Problem of garbled Ubuntu system CD. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
Generally, when a CD is attached to ubuntu, the Chinese characters are all clear question marks. The solution is as follows:
Run sudo gedit/etc/fstab on the terminal and find this line:
/Dev/cd0/media/cdrom0 udf, iso9660 user, noauto 0 0 0
Add iocharset = utf8 in options, as shown below:
/Dev/cd0/media/cdrom0 udf, iso9660 user, noauto, iocharset = utf80 0
In the future, no Garbled text or question marks will appear on a CD with Chinese characters. (For more information, see OceanBoo's blog)
Tip:
1. UDF (Universal Disc Format) is developed by OSTA. UDF enables cross-platform use of files.
2. ISO9660 is an international standard used to describe the computer file structure suitable for CD disks.