- 论坛徽章:
- 0
|
1关于分区加在问题:
// 此部分为网上查得,仍然存在文件名乱码的问题,由于我使用UTF8字符集:
使挂载的fat32和ntfs分区正常显示中文名
自动加载方式:
编辑/etc/fstab文件,把原来的
/dev/hda2 /mnt/hda2 vfat auto,users,exec 0 0
/dev/hda5 /mnt/hda5 ntfs auto,users,exec,ro,umask=000 0 0
改成
/dev/hda2 /mnt/hda2 vfat iocharset=gb2312,users,exec 0 0
/dev/hda5 /mnt/hda5 ntfs iocharset=gb2312,users,exec,ro,umask=000 0 0
手工加模式:
在shell下输入以下命令
# mount /dev/hda2 /mnt/hda2/ -t vfat -o iocharset=gb2312
# mount /dev/hda5 /mnt/hda5/ -t ntfs -o iocharset=gb2312
如果你要挂接的Windows分区是ntfs分区,而Linux系统采用的locale是 zh_CN.GB2312或zh_CN.GBK,分区成功挂接后,
会出现一些中文文件名的文件不能识别文件类型的情况。解决办法是把Linux的 locale换成zh_CN.UTF-8。在挂接分区时把iocharset参数的值由gb2312换成utf8即可。
//自己更改之后,达到要求
***!!! 重要!
/dev/hda1 /media/winC ntfs nls=utf8,users,exec,ro,umask=000 0 0
/dev/hda9 /media/winI ntfs nls=utf8,users,exec,ro,umask=000 0 0
/dev/hda5 /media/winD vfat iocharset=cp936,codepage=936,users,gid=users,umask=0002,utf8=true 0 0
/dev/hda8 /media/winF vfat iocharset=cp936,codepage=936,users,gid=users,umask=0002,utf8=true 0 0
针对UTF8的系统, NTFS分区加在 设置nls=utf8 就OK了;
但对FAT32的分区,有些不同,需要设置iocharset=cp936,codepage=936之外,还需要添加utf8=true这项,如果没有,文件名在UTF8系统下仍然会显示乱码;
man mount,utf8=true的意思是Use UTF-8 for converting file names.
2 ATI 驱动:
ATI Installer HOWTO for SUSE/Novell users
openSUSE 10.2
If you want or need to use the latest and greatest ATI driver, continue here .
Use
YaST -> Software -> Change installation Source -> Add
Protocol: http
Server Name: : www2.ati.com
Directory on Server: suse/10.2
to add the ATI http server as additional installation source.
Now use
YaST -> Software -> Install and Delete Software
to install the ATI/fglrx driver. Select the following packages:
x11-video-fglrxG01
ati-fglrxG01-kmp-
depends on your installed kernel. Check with
"uname -r" for installed default/smp/bigsmp kernel. Use "sax2 -r"
for X.Org configuration.
3 路由问题:
route add -net 10.0.0.0 netmask 255.0.0.0 dev eth0
route add default gw 10.214.48.1
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/916/showart_264528.html |
|