ErrorMsg
I have something to add to the method that is
mount /dev/hda1 /mnt/win_c -o umask=0,iocharset=utf8,codepage=864
and fstab line should look like this (it is one line)
/dev/hda1 /mnt/win_c vfat default,umask=0,iocharset=utf8,codepage=864 0 0
---------------
Why?
1) umask=0 means all users car read write to the windows partions
but the default is umask=022 which mean only root can write to the windows partion
2) codepage=864 is the arabic codepage (from) , I know it from the kernel source in /usr/src/linux/fs/nls there is a makefile just see it
3) iocharset=utf8 (to) so it's from arabic codepage to utf8 (universal code 8 )
--------------------
recall what were said before by uniball to add to /etc/profile
or ~/.profile or to any executabe in /etc/profile.d/
the following lines
export LC_ALL=ar_EG.UTF-8
(EG means EGYPT )or add (SA means Saudia Arabia)
export LC_ALL=ar_SA.UTF-8
and the line (for both cases)
export CHARSET=ISO_8859-6
export G_BROKEN_FILENAMES=1
note there is no space in SOMETHING = VALUE the true is SOMETHING=VALUE
thanx uniball
mount /dev/hda1 /mnt/win_c -o umask=0,iocharset=utf8,codepage=864
and fstab line should look like this (it is one line)
/dev/hda1 /mnt/win_c vfat default,umask=0,iocharset=utf8,codepage=864 0 0
---------------
Why?
1) umask=0 means all users car read write to the windows partions
but the default is umask=022 which mean only root can write to the windows partion
2) codepage=864 is the arabic codepage (from) , I know it from the kernel source in /usr/src/linux/fs/nls there is a makefile just see it
3) iocharset=utf8 (to) so it's from arabic codepage to utf8 (universal code 8 )
--------------------
recall what were said before by uniball to add to /etc/profile
or ~/.profile or to any executabe in /etc/profile.d/
the following lines
export LC_ALL=ar_EG.UTF-8
(EG means EGYPT )or add (SA means Saudia Arabia)
export LC_ALL=ar_SA.UTF-8
and the line (for both cases)
export CHARSET=ISO_8859-6
export G_BROKEN_FILENAMES=1
note there is no space in SOMETHING = VALUE the true is SOMETHING=VALUE
thanx uniball