2004-12-14 [長年日記]

_ [Linux] リニアアドレスの情報

/proc/PID/mapsにそのプロセスのリニアアドレスマップが書いてある。知らなかった(^^; ちなみに/sbin/initのmapsは下のような感じ。c0000000以降はカーネル空間。
08048000-0804e000 r-xp 00000000 03:02 4538444    /sbin/init
0804e000-0804f000 rw-p 00006000 03:02 4538444    /sbin/init
0804f000-08070000 rwxp 00000000 00:00 0
40000000-40014000 r-xp 00000000 03:02 5390344    /lib/ld-2.3.3.so
40014000-40015000 rw-p 00013000 03:02 5390344    /lib/ld-2.3.3.so
40015000-40016000 rw-p 00000000 00:00 0
4001e000-40152000 r-xp 00000000 03:02 2441225    /lib/i686/libc-2.3.3.so
40152000-40155000 rw-p 00134000 03:02 2441225    /lib/i686/libc-2.3.3.so
40155000-40158000 rw-p 00000000 00:00 0
bffff000-c0000000 rwxp 00000000 00:00 0

_ [Linux] NFSサーバの設定

備忘録ね(^^;

  1. /etc/exports の編集
    directory  IP address(option)
    [option]
    ro: 読み込みのみ
    rw: 読み書き許可
    no_root_squash: root権限で動作
    sync: 同期書き込み(デフォルトはasync(非同期))
    例) /share    192.168.0.0/24(rw,no_root_squash)
    
  2. /etc/hosts.deny の編集
    service: host or IP address
    例) portmap: ALL
        lockd:   ALL
        rquotad: ALL
        mountd:  ALL
        statd:   ALL
    
  3. /etc/hosts.allow の編集
    service: host or IP address
    例) portmap: 192.168.0.0/24
        lockd:   192.168.0.0/24
        rquotad: 192.168.0.0/24
        mountd:  192.168.0.0/24
        statd:   192.168.0.0/24
    
  4. portmapperの起動
    # /sbin/portmap
    
    あるいは、Redhat系なら
    # /etc/init.d/portmap start
    
    でもいいのかな?

  5. 各種デーモンの起動
    # /usr/sbin/rpc.mountd
    # /usr/sbin/rpc.nfsd
    # /sbin/rpc.lockd
    # /sbin/rpc.statd
    # /usr/sbin/rpc.rquotad
    
    あるいは、Redhat系なら
    # /etc/init.d/nfslock start
    # /etc/init.d/nfs start
    でいいのかな?

  6. 確認
    $ /usr/sbin/rpcinfo -p
      プログラム バージョン プロトコル ポート
        100000       2           tcp    111  portmapper
        100000       2           udp    111  portmapper
        100011       1           udp   1014  rquotad
        100011       2           udp   1014  rquotad
        100011       1           tcp   1017  rquotad
        100011       2           tcp   1017  rquotad
        100005       1           udp  32769  mountd
        100005       1           tcp  32781  mountd
        100005       2           udp  32769  mountd
        100005       2           tcp  32781  mountd
        100005       3           udp  32769  mountd
        100005       3           tcp  32781  mountd
        100003       2           udp   2049  nfs
        100003       3           udp   2049  nfs
        100021       1           udp  32770  nlockmgr
        100021       3           udp  32770  nlockmgr
        100021       4           udp  32770  nlockmgr
    

_ [Linux] NFSクライアントの設定

こちらも備忘録(^^;;

  • exportされたディレクトリをマウント
    # mount -t nfs -o option host or IP Address:directory
    例) # mount -t nfs -o rw,hard,intr,rsize=8192,wsize=8192 192.168.0.1:/share /mnt/share
    みたいな感じですかね。
    
  • ブート時にマウント(/etc/fstabを編集)
    host:directory   mountpoint  fs-type    options    dump fsckord
    例) 192.168.0.1:/share  /mnt/share nfs rw,hard,intr,rsize=8192,wsize=8192 0 0
    

本日のツッコミ(全6件) [ツッコミを入れる]
_ Johna115 (2019-06-02 08:12)

I do consider all the ideas you've presented on your post. They're really convincing and can certainly work. Still, the posts are very brief for novices. May just you please extend them a little from next time? Thanks for the post. egcfeaeagkde

_ Pharme7 (2019-06-03 01:31)

Hello!

_ Pharmg578 (2019-06-04 07:38)

Hello!

_ Pharme916 (2019-06-05 13:42)

Hello!

_ Pharmb438 (2019-06-06 19:40)

Hello!

_ Pharmb27 (2019-06-08 01:40)

Hello!


«前の日記(2004-12-13) 最新 次の日記(2004-12-15)»