В качестве оного использую пока что links запущенного в twm. До этого все в текстовом режиме было. В данный момент ставится gnome. Русификация консоли и X11 сделана под UTF-8. Браузер даже некоторые письмена читал с тестовой страницы, не все правда. Это, как я понимаю, связано с шрифтами, который он использует: не всё потрудились нарисовать.
GLX все же не работает пока что, как и раньше 


# mount -t ntfs -o utf8,umask=0,ro /dev/hda5 /mnt/win1
mount: mount point /mnt/win1 does not exist. Странно, если я верно разобрался с монтированием, то точка подключения может иметь любое название. Также, если я в fstab пропишу /dev/hda5 /mnt/win2 ntfs auto,utf8,umask=0,user 0 0, то при загрузке этот раздел также не подключится.mount /dev/hda5 /boot/, с учетом того, что в fstab написано /dev/hda1 /boot ext3 noauto,noatime 1 2
и соответственно, при загрузке этот раздел не смонтирован, то hda5 монтируется как /boot спокойно.
Спасибо.
Решение этой проблемы написано тут 404 Not Found..After re-emerging several times the nvidia drivers, it may happen that the glx module fails to load without any apparent reason, with the error "libnvidia-tls.so.1: cannot handle TLS data". This issue is caused by two files being inverted, /usr/lib/opengl/nvidia/tls/libnvidia-tls.so.1.0.8762 and /usr/lib/opengl/nvidia/no-tls/libnvidia-tls.so.1.0.8762. The fix is quite simple: swap the two files. Before trying this, check to see if the libnvidia-tls.so.1.0.8762 file in the no-tls folder is smaller than the one in the tls folder. If it is the case, then the files are already in the correct folder, so do not swap them. If it is not the case, then you can swap them with this command:mv /usr/lib/opengl/nvidia/tls/libnvidia-tls.so.1.0.8762 /usr/lib/opengl/nvidia/tls/libnvidia-tls.so.1.0.8762.bak && mv /usr/lib/opengl/nvidia/no-tls/libnvidia-tls.so.1.0.8762 /usr/lib/opengl/nvidia/tls/libnvidia-tls.so.1.0.8762 && mv /usr/lib/opengl/nvidia/tls/libnvidia-tls.so.1.0.8762.bak /usr/lib/opengl/nvidia/no-tls/libnvidia-tls.so.1.0.8762

Попытка сгенирировать Modeline и вставить в xorg.conf ни к чему не привела: localhost ~ # gtf 1024 768 100
# 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
Modeline "1024x768_100.00" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
. Ковыряние в документации Нвидии показало, что надо еще добавить в xorg.conf строчку типа Option "MetaModes" "1024x768_100.00". Оказалось, что это то что надо. Правда, я не понял, как надо настроить этот xorg.conf, чтобы в Gnome можно было динамически менять разрешение-частоту, причем, чтобы частота и разрешение были жестко связаны друг с другом или не связаны, в зависимости от того, как я захочу. Ну а пока привожу свой xorg.conf:Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/ttf-bitstream-vera/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/cyrillic/"
FontPath "/usr/share/fonts/arphicfonts/"
FontPath "/usr/share/fonts/baekmuk-fonts/"
FontPath "/usr/share/fonts/freefonts/"
FontPath "/usr/share/fonts/kochi-substitute/"
FontPath "/usr/share/fonts/intlfonts/"
FontPath "/usr/share/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/corefonts/"
FontPath "/usr/share/fonts/terminus/"
EndSection
Section "Module"
Load "extmod"
Load "dbe"
Load "record"
Load "xtrap"
Load "glx"
Load "freetype"
Load "type1"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us,ru(winkeys)"
Option "XkbOptions" "grp:ctrl_shift_toggle, grp_led:scroll"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mouse0"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Modeline "1024x768_100.00" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
EndSection
Section "Device"
Identifier "Card0"
Driver "nvidia"
Option "NoLogo" "true"
VendorName "nVidia Corporation"
BoardName "NV36 [GeForce FX 5700LE]"
BusID "PCI:3:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
Option "MetaModes" "1024x768_100.00"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
