Qingy

提供: ArchWiki
2015年2月14日 (土) 17:13時点におけるKusakata (トーク | 投稿記録)による版 (ページの作成:「Category:ディスプレイマネージャ en:Qingy tr:Qingy [http://qingy.sourceforge.net/ Qingy] は Getty を置き換える slim や kdm、gdm と同...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

QingyGetty を置き換える slim や kdm、gdm と同じようなログインマネージャです。DirectFB を使用することで、X Window System を使うことなく軽くて素晴らしい GUI を提供します。Qingy を使うことでユーザーはセッションを選択して起動することができるようになります (テキストコンソール, gnome, kde, wmaker など)。複数の X セッションを起動することも可能です。

Qingy の動かし方

まず DirectDB が動くようにする必要があります。Uvesafb を推奨しますが、vesafb を使用する場合にグラフィックに問題が起こります。Qingy は KMS では動作しません。

qingyAUR パッケージは AUR からインストールできます。qingy-themesAUR パッケージに様々なテーマが入っています。qingy-theme-archAUR は Arch のテーマです。

*getty を qingy で置き換える

Simply enable qingy@.service on the tty that you want it on and remove getty from that tty:

# systemctl enable qingy@ttyX
# systemctl disable getty@ttyX

where X is the tty you want qingy to be on. Do this as many times as needed.

Also, you need to mask the getty service with:

# systemctl mask getty@ttyX

for each of the ttys you enabled qingy on.

You may additionaly have to tweak/disable the autovt@.service. The latter spawns getty's on-the-fly when switching virtual-consoles and may interfere with an already spawned qingy. To disable automatic spawning of getty's altogether, modify /etc/systemd/logind.conf:

NAutoVTs=0

qingy の設定

You can configure qingy by editing /etc/qingy/settings.

The default settings for X are fine so only edit them if you really know what you are doing.

# Full path to the X server
#x_server = "/usr/bin/Xorg"
# Full path to the 'xinit' executable
xinit = "/usr/bin/xinit"
# Parameter we should pass to the X server
x_args = "-nolisten tcp -br"

I recommend to set

log_facilities = console, file

so you can look for errors in /var/log/qingy.log, too.

All other options are well explained.

You may need to set the path to the X server e.g.

# Full path to the X server
x_server = "/usr/bin/X"

X の起動

Please do note that .xinitrc is different from .xsession. The default login script, .xinitrc, works with startx, but graphical login managers generally do not look for .xinitrc. Instead, they look for a file named .xsession in your home directory.

If you want to start X with qingy you need to edit your .xsession.

Here a default .xsession for qingy.

#!/bin/sh
exec <login-shell command> <window manager starter>

An example:

#!/bin/sh
exec bash --login -c 'openbox-session'

The start of the window manager using a login shell is needed because qingy starts the X-session directly without the help of a shell. This causes issues like no umlauts in xterm and malfunction of control keys like "Home", "End", "Del" and so on in the terminal.

For more details, visit the Ubuntu CustomXSession wiki at [1]

If you want your X sessions to be started in an active state, you may need to add the following lines to the end of /etc/pam.d/qingy.

session    optional	/lib/security/pam_loginuid.so
session    optional	/lib/security/pam_ck_connector.so

Active sessions allow you to access network controles, shutdown/susspend/hibernate funtionality, and drives you wish to mount via your DE/WM.

セッションエントリの追加

If you've changed the variable x_sessions or text_session in the config file of qingy replace the following paths with the path you've set.

テキストモードセッション

Create a file /etc/qingy/sessions/<sessionname>.

The file name is shown as entry in the session list.

The file should be a shell script. For an example have a look into /etc/qingy/sessions/emacs.

X モードセッション

Create the folder /etc/X11/Sessions/ and save a new script file into it. (see Text mode session)

The name of the file is shown in the session list.

トラブルシューティング

Synaptic タッチパッドとキーボードの問題

Qingy (and quite possibly other DirectFB applications) has some issues using Synaptics touchpad. Also the keyboard can behave strangely (like if each keys were pressed twice).

This can be solved by adding:

  • If each keypress was doubled
disable-module=keyboard
  • If mouse acts funny
disable-module=ps2mouse
disable-module=serialmouse

to /etc/directfbrc. If the file does not exist, create it. This will enable you to use your touchpad, however some extra functionality like tapping or tap-dragging might not work.

On computers with several pointing devices, such as the Lenovo ThinkPad, it may be necessary to add the line:

disable-module=linux_input

to /etc/directfbrc. This should correct both the mouse and keyboard issues.