Changes between Version 1 and Version 2 of FreeBSD


Ignore:
Timestamp:
06/15/06 20:30:27 (18 years ago)
Author:
atzm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FreeBSD

    v1 v2  
    11= FreeBSD = 
    2 適当なメモ. 
     2[[PageOutline]] 
     3 
     4適当メモ. 
     5 
     6== パーティション == 
     7 * Linux と違ってスライスの概念がある.スライスを 1 つ作って,その中に複数のパーティションを作る感じ. 
    38 
    49== パケットをカーネルレベルで叩き落す == 
     
    914 
    1015Internet: 
    11 Destination        Gateway            Flags    Refs      Use  Netif Expire 
    12 10.10.100.6        0.0.0.0            UGHS        0        0   fxp0 
     16Destination   Gateway    Flags  Refs   Use   Netif Expire 
     1710.10.100.6   0.0.0.0    UGHS      0     0    fxp0 
    1318}}} 
    1419 
    1520 * 10.10.100.6 からのパケットは叩き落される. 
     21 
     22== 初期設定 == 
     23 * sysinstall コマンドで初期設定の大抵のことはできる 
     24 * /etc/rc.conf に大抵の設定が書かれる (インタフェースのアドレス等も) 
     25 
     26== ports == 
     27 * 落としてきたソースアーカイブは /usr/ports/distfiles に溜められる 
     28 * ports の検索は whereis コマンド 
     29 * /usr/ports/CATEGORY/PACKAGE に移動して make install が基本.アンインストールは make deinstall 
     30 
     31== サービス == 
     32 * /etc/rc.d/XXXXX や,/usr/local/etc/rc.d/XXXXX.sh が起動スクリプト 
     33 * /etc/rc.conf に enable_XXXXX="YES" を書かなければ起動すらしない 
     34 
     35== カーネルモジュール == 
     36 * /boot/loader.conf に XXXXX_load="YES" と書くと起動時にカーネルモジュール読み込み 
     37 
     38== シリアルコンソール == 
     39 * /etc/ttys を編集して以下の行を書く 
     40{{{ 
     41ttyd0 "/usr/libexec/getty std.9600" vt100 on secure 
     42}}} 
     43 
     44 * /boot.config を編集して以下を書く 
     45{{{ 
     46-P 
     47}}} 
     48 
     49後はキーボードを引っこ抜いてリブートすれば良い.