Friday, May 6, 2011

Первые сложности

Как оказалось, Линукс на Экзадате был поставлен с минимальным набором пакетов.
Screen - нет, vnc - нет, yum - чтобы поставить предыдущие два - тоже нет.
Пришлось качать образ и устанавливать пакеты с него.

Со screen все было очень легко :
# rpm -qa|grep screen
# rpm -i screen-4.0.3-1.el5_4.1.x86_64.rpm
warning: screen-4.0.3-1.el5_4.1.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
# rpm -qa|grep screen
screen-4.0.3-1.el5_4.1
А вот с vnc - начались проблемы с зависимостями. Говоришь ему rpm -i vnc-server* а тебе в ответ - не хватает ... пакетов, и вывод на пол-экрана. Добавляешь перечисленные названия пакетов - а тебе в ответ - не хватает, и еще - еще два экрана. В общем, дальше 4 итерации я не продвинулся.

Поэтому  правильный ответ:

# rpm -Uvh --nodeps                            \
> chkfontpath-1.10.1-1.1.x86_64.rpm            \
> libfontenc-1.0.2-2.2.el5.x86_64.rpm          \
> libXfont-1.2.2-1.0.3.el5_1.x86_64.rpm        \
> libXfontcache-1.0.2-3.1.x86_64.rpm           \
> libXTrap-1.0.0-3.1.x86_64.rpm                \
> xorg-x11-fonts-base-7.1-2.1.el5.noarch.rpm   \
> xorg-x11-font-utils-7.1-2.x86_64.rpm         \
> xorg-x11-server-utils-7.1-4.fc6.x86_64.rpm   \
> xorg-x11-twm-1.0.1-3.1.x86_64.rpm            \
> xterm-215-8.el5_4.1.x86_64.rpm               \
> vnc-server-4.1.2-14.el5_3.1.x86_64.rpm
warning: chkfontpath-1.10.1-1.1.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
Preparing...                ########################################### [100%]
   1:libfontenc             ########################################### [  9%]
   2:libXfont               ########################################### [ 18%]
   3:xorg-x11-font-utils    ########################################### [ 27%]
   4:libXTrap               ########################################### [ 36%]
   5:libXfontcache          ########################################### [ 45%]
   6:chkfontpath            ########################################### [ 55%]
   7:xorg-x11-server-utils  ########################################### [ 64%]
   8:xterm                  ########################################### [ 73%]
   9:xorg-x11-twm           ########################################### [ 82%]
  10:xorg-x11-fonts-base    ########################################### [ 91%]
  11:vnc-server             ########################################### [100%]

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Does DEALLOCATE UNUSED or SHRINK SPACE will free space occupied by LOB segment?

Lets check how it works. My env is DB 19.20@Linux-x64 1) I created the table with 4 LOB columns of 4 different LOB types: BASICFILE BLOB, BA...