Цитата:
i esche RH9 ne mountit moi HDD, tolko razdelq UNIX-a, a mandrake 9 mountit.
какая файловая система?
i esche RH9 ne mountit moi HDD, tolko razdelq UNIX-a, a mandrake 9 mountit.
какая файловая система?, а ты так и не ответил. Как выучишь - поговорим
какая файловая система?, а ты так и не ответил. Как выучишь - поговорим
какая файловая система?
локали
Компания "Инвента" объявила о подписании первого в России партнерского договора с Red Hat - лидером мирового рынка Linux-систем для бизнеса. Отныне "Инвента" предлагает своим клиентам программные продукты, авторизованные курсы и экзамены Red Hat, а также открывает сайт www.redhat.ru с информацией о продуктах и услугах Red Hat, предлагаемых в России партнерами компании
пишет кучу строк вроде
plus before thorn ignored
plus before Thorn ignored
plus before blabalah ignored
plus before Blababah ignored
plus before gigigi ignored
plus before Gigigi ignored
Где может быть архиватор, подскажите пожалуйста ............
у приложений не из KDE (GIMP, Galleon, Ximian Evolution ....и т.д.)
There has been some confusion regarding font-related issues under the X Window System in recent versions of Red Hat Linux. At the present time, there are two font subsystems, each with different characteristics:
- The original (15+ year old) subsystem is referred to as the "core X font subsystem". Fonts rendered by this subsystem are not anti-aliased, are handled by the X server, and have names like:
-misc-fixed-medium-r-normal--10-100-75-75-c-60-iso8859-1
The newer font subsystem is known as "fontconfig", and allows applications direct access to the font files. Fontconfig is often used along with the "Xft" library, which allows applications to render fontconfig fonts to the screen with antialiasing. Fontconfig uses more human-friendly names like:
Luxi Sans-10
Over time, fontconfig/Xft will replace the core X font subsystem. At the present time, applications using the Qt 3 or GTK 2 toolkits (which would include KDE and GNOME applications) use the fontconfig and Xft font subsystem; most everything else uses the core X fonts.
In the future, Red Hat may support only fontconfig/Xft in place of the XFS font server as the default local font access method.
NOTE: Two exceptions to the font subsystem usage outlined above are OpenOffice.org (which uses its own font rendering technology), and Mozilla (which uses fontconfig, but not GTK 2).
If you wish to add new fonts to your Red Hat Linux 9 system, you must be aware that the steps necessary depend on which font subsystem is to use the new fonts. For the core X font subsystem, you must:
1. Create the /usr/share/fonts/local/ directory (if it doesn't already exist):
mkdir /usr/share/fonts/local/
If you had to create /usr/share/fonts/local/, you must then add it to the X font server (xfs) path:
chkfontpath --add /usr/share/fonts/local/
2. Copy the new font file into /usr/share/fonts/local/
3. Update the font information by issuing the following command:
ttmkfdir -d /usr/share/fonts/local/ -o /usr/share/fonts/local/fonts.scale
4. Reload the xfs font server using the following command:
service xfs reload
Adding new fonts to the fontconfig font subsystem is more straightforward; the new font file only needs to be copied into the /usr/share/fonts/ directory (individual users can modify their personal font configuration by copying the font file into the ~/.fonts/ directory).
After the new font has been copied, use fc-cache to update the font information cache:
fc-cache <directory>
(Where <directory> would be either the /usr/share/fonts/ or ~/.fonts/ directories.)
Individual users may also install fonts graphically, by browsing fonts:/// in Nautilus, and dragging the new font files there.
NOTE: If the font filename ends with ".gz", it has been compressed with gzip, and must be decompressed (with the gunzip command) before the fontconfig font subsystem can use the font.
Due to the transition to the new font system based on fontconfig/Xft, GTK+ 1.2 applications are not affected by any changes made via the Font Preferences dialog. For these applications, a font can be configured by adding the following lines to the file ~/.gtkrc.mine:
style "user-font" {
fontset = "<font-specification>"
}
widget_class "*" style "user-font"
(Where <font-specification> represents a font specification in the style used by traditional X applications, such as "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*".)
opera-7.11-20030515.4-shared-qt.i386.rpm
Вам нужно либо выкачать TTF-шрифты (файлы с расширением .ttf) из интернета, либо скопировать их с какого-нибудь диска, либо если рядом есть Windows-машина, взять шрифты из нее. Допустим, что вы поместили эти шрифты в директорию /tmp/ttf/ (название директории взято для примера. вы можете назвать директорию по своему). Вам необходимо скопировать (не переместить! они нам еще понадобятся) все эти шрифты в директорию /usr/X11R6/lib/X11/fonts/TTF/:
[root@developer root]# cd /tmp/ttf/
[root@developer ttf]# cp *.ttf /usr/X11R6/lib/X11/fonts/TTF/
[root@developer ttf]# cp *.TTF /usr/X11R6/lib/X11/fonts/TTF/
[root@developer ttf]# cd /usr/X11R6/lib/X11/fonts/TTF/
[root@developer TTF]# mkfontdir
[root@developer TTF]# mkfontscale
Couldn't get family name for ./marlett.ttf
[root@developer TTF]#
Отлично. Теперь нужно каким-либо способом подключится к Internet и скачать файл: http://www.linuxshop.ru/redhat/files/XFree86-75dpi-fonts-4.2.0-73.i386.rpm. После того как вы скачаете его, вам нужно будет установить его:
[root@developer root]# cd /tmp/
[root@developer ttf]# wget http://www.linuxshop.ru/redhat/files/XFree86-75dpi-fonts-4.2.0-73.i386.rpm
[root@developer ttf]# rpm -e --nodeps XFree86-75dpi-fonts
[root@developer ttf]# rpm -ihv XFree86-75dpi-fonts-4.2.0-73.i386.rpm
На самом деле, теперь у нас уже заработали GTK1-приложения. Но мы не будем останавливаться на достигнутом и продолжим тотальную русификацию.
Теперь нам опять понадобится папка, в которой лежат наши TTF-шрифты. Теперь мы снова скопируем их, но на этот раз в другую папку:
[root@developer root]# cd /tmp/ttf
[root@developer ttf]# mkdir /usr/share/fonts/ttf
[root@developer ttf]# cp *.ttf usr/share/fonts/ttf
[root@developer ttf]# cp *.TTF usr/share/fonts/ttf
[root@developer ttf]# cd /usr/share/fonts/ttf
[root@developer ttf]# mkfontdir
[root@developer ttf]# mkfontscale
Вот и вся русификация. Теперь нужно только удалить шрифтовый кэш, перезапустить сервер шрифтов:
[root@developer root]# fc-cache
[root@developer root]# service xfs restart
Страницы: 123456789101112131415161718192021222324252627282930
Предыдущая тема: Общие вопросы по Linux