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 ...

Windows10

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

更新内容:

fixed: ̶ ...

Windows10

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

AnyDVD は バックグラウンドで自動的に DVD ムービーを解析するドライバーです。 解析された DVD は全ての ...

IOS

1.Carクラス 
Car.m
#import “Car.h”
@implementation Car
+(Car *)initWithName:(NSString *)name ...

IOS

コード下記:

void sortArray3(){
NSArray *array = ;
NSArray *sortedArray = ;
return result;
}];
NS ...

IOS

1.compare:メソッド
void sortArray1(){
NSArray *array = ;
NSArray *sortedArray = ;
NSLog(@”ソート後:%@&# ...