Linux

Thumbnail of post image 010

マウントポイントを作成。
#mkdir/mnt/samba

マウント
#mount -t cifs -o username=ユーザ名,password=パスワード//ファイルサーバのIPアドレス/共有ディレ ...

Linux

Thumbnail of post image 196

Apache2.4のconfigure実行時に
configure: error: pcre-config for libpcre not found. PCRE is required and available from ...

Linux

Thumbnail of post image 089

Apache2.4のcounfigure実行時に「configure: error: APR not found.」と表示された場合、
Apach Portable Runtime Projectから、apr-1.5.0.ta ...

Linux

Thumbnail of post image 123

CentOSでconfigureを実行した際にconfigure: error: a working C++ compiler is requiredと
表示されて場合、gccがc++に対応していないので、gcc-c++をイン ...

Linux

Thumbnail of post image 119

bzip2形式のファイルを解凍するには以下のコマンドを使用する。
#tar jxzf ファイル名.tar.bz2

Linux

Thumbnail of post image 075

mod_sslのインストール
#yum install mod_ssl

サーバー用秘密鍵、証明書作成
#cd/etc/pki/tls/certs
#make server.crt
#vi/e ...

Linux

Thumbnail of post image 028

自分がよく使うyumのコマンドをまとめます。

コマンド概要yum check-updateアップデート可能なパッケージの一覧を表示yum list available利用可能なパッケージの一覧を表示yum list instal ...