スカイ・エス・エイッチ

menu

ORCAレセコンをご利用中のお客様

TOP > ORCA よくある質問・回答集 > 技術 > Linux・Ubuntu・Debian

よくある質問・回答集 ORCAレセコン

ユーザごとにSSH接続できるIPアドレスを制限する方法

A:
sudo vi /etc/pam.d/sshd
account required pam_access.so

sudo vi /etc/ssh/sshd_config
UsePAM yes

sudo vi /etc/security/access.conf
一例
---------------------
+ : hasegawa : 192.168.1.
+ : orca : 192.168.1.2
- : ALL : ALL
---------------------

hasegawaユーザには192.168.1.0/24のどのコンピュータからでもSSH接続できるが、orcaユーザには192.168.1.2からしかできない。

Ubuntu14.04になってからデスクトップの共有ができません

Q:
Ubuntu14.04になってからデスクトップの共有ができません
A:
デスクトップの共有を行いたいユーザの画面で以下を実行。
gsettings set org.gnome.Vino require-encryption false
再起動を行うと設定が消えるので「.profile」などに書くと良い。

古いカーネルを消す方法


古いカーネルを消す方法

A
sudo apt-get remove --purge linux-image-3.2.0-29-generic \
linux-image-3.2.0-34-generic \
linux-image-3.2.0-60-generic \
linux-image-3.2.0-61-generic \
linux-image-3.2.0-64-generic \
linux-image-3.2.0-65-generic \
linux-image-3.2.0-67-generic \
linux-image-3.2.0-68-generic \
linux-image-3.2.0-70-generic \
linux-image-3.2.0-72-generic \
linux-image-3.2.0-74-generic \
linux-image-3.2.0-75-generic
sudo apt-get remove --purge linux-image-3.11.0-23-generic \
linux-image-3.13.0-32-generic \
linux-image-3.13.0-33-generic \
linux-image-3.13.0-34-generic \
linux-image-3.13.0-35-generic \
linux-image-3.13.0-37-generic \
linux-image-3.13.0-39-generic \
linux-image-3.13.0-40-generic \
linux-image-3.13.0-43-generic
sudo apt-get autoremove

サスペンドを無効化する方法

Q:
サスペンドを無効化する方法 ubuntu12.04
A:
/etc/polkit-1/localauthority/50-local.d/com.ubuntu.disable-suspend.pkla
[Disable suspend (upower)]
Identity=unix-user:*
Action=org.freedesktop.upower.suspend
ResultActive=no
ResultInactive=no
ResultAny=no
[Disable suspend (logind)]
Identity=unix-user:*
Action=org.freedesktop.login1.suspend
ResultActive=no
ResultInactive=no
ResultAny=no
[Disable suspend when others are logged in (logind)]
Identity=unix-user:*
Action=org.freedesktop.login1.suspend-multiple-sessions
ResultActive=no
ResultInactive=no
ResultAny=no

ubuntu12.04新しいユーザがGUIログインできない

Q:
ubuntu12.04新しいユーザがGUIログインできない
A:
当社はgnome classicだけにしているので、右上のアイコンを足跡アイコンに
変更してから、ログインする。

ubuntu12.04自動ログイン方法

Q:
ubuntu12.04の自動ログイン方法は
A:
システムツール システム設定 ユーザーアカウント 右上ロック解除
対象ユーザーをクリックし、自動ログインをクリックしてオンにしてくだい。

ubuntu12.04-4へのアップグレード方法

A
sudo apt-get install linux-generic-lts-saucy xserver-xorg-lts-saucy

Ubuntu12.04サスペンドにならないようにする

Q:
Ubuntu12.04でサスペンドにならないようにするには。
A:
/usr/share/polkit-1/actions/org.freedesktop.upower.policy
<action id=”org.freedesktop.upower.suspend”>
<description>Suspend the system</description>
・省略
 ・
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>yes</allow_active> →noにしてください。
</defaults>
</action>

モニタの垂直同期を75Hzにするには(Ubuntu12.04)

Q
モニタの垂直同期を75Hzにするには。Ubuntu12.04においてです。

ログイン後、「xrandr -r 75」を実行する。
もっとスマートな方法はあると思います。

実行しているSQL文を見たい

Q
日レセが実行しているSQL文を見る方法はありますか。

その1
「postgresql.conf」の「log_min_duration_statement」を0にしてください。本来はSQL文の実行されるのに○○ミリ秒単位を越えた場合、そのSQL文と実行時間をログにするものです。
その2
こちらの方がログはコンパクトになります。
postgresql.conf
logging_collector = on
log_statement = ‘mod’
この場合ログの保存先は、/var/lib/postgresql/9.3/main/pg_log/postgresql-yyyy-mm-dd_hhmmss.logになります。

test