Linux

システム:
# uname -a #カーネル/OS/CPU情報を表示する
# cat/etc/issue
# cat/etc/redhat-release # OSのバージョンを表示
# cat/pro ...

Linux

1.操作コマンド
tail -f/var/log/messages
more/var/log/messages
grep interface/var/log/messages

lastlog

Linux

1.nampのインストール
# yum -y install nmap
URL:

2.使い方
2.1 ネットワークのポートを調べる
# nmap -sP 192.168.32.0/24 ...

Linux

コマンド:

# netstat -antp
# netstat -anup
# netstat -s
# netstat -st
# netstat -su
# netstat -s ...

Linux

操作コマンド:
バックアップ
# sudo iptables-save >/etc/iptables.up.rules

リストア
方法1
sudo echo “pre-up ...

Linux

1.topを実行して 次のコマンドをする
shift+m メモリ使用量が多いもの順
shift+t 実行時間が長い順
shift+n プロセスID順
shift+a  新しいタスク順
shift ...

Apache

1.yumでhttpdをインストール
yum install httpd

構成ファイルを設定
vim/etc/httpd/conf/httpd.conf
ServerName ホスト名:80 ...

Linux

1.エラーメッセージ:
Warning: The package type’s allow_virtual parameter will be changing its default value from fal ...

Linux

1.swap領域の使用状況を確認
# free -m
total used free shared buffers cached
Mem: 6081 4465 1616 0 33 4199
-/+ bu ...

Apache

1.エラーメッセージ:
httpd: Syntax error on line 54 of/usr/local/apache2/conf/httpd.conf: Cannot load/usr/local/apache2/mo ...

Linux

1.yumでダウンロードしたrpmパッケージを設定
vim/etc/yum.conf
修正前
keepcache=0
修正後
keepcache=1

2./var/cache/yum ...

Nginx

ファイル名:
nginx.conf

コード下記:
user www www;
worker_processes 8;
worker_cpu_affinity 00000001 0000001 ...

Nginx

エラーメッセージ:

404 Not Found  nginx/1.0.14

 

修正ファイル:
nginx.conf
追加内容:
if (!-e $request_ ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

更新内容:

Fixed a performance issue with ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

Far Manager is a program for managing f ...

Cmd

操作方法
1.現在のカレントディレクトリを開く
操作コマンド
>explorer .

2.一つ上位ディレクトリを開く
>explorer ..

3.指定ディレクトリを ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

更新内容:
New Detections:
Generic.t ...

CSS

構文
セレクタ:not(適用しないセレクタ1):not(適用しないセレクタ2){//CSSコード}
使用例

<style>/* div:cftA cftC特定の要素にCSSを適用しない */div:n ...