NASボックスを24時間年中無休のファイルサーバーとして使用して、sshfsを使用してUbuntu 9.04デスクトップから接続します。現在、デスクトップのfstabに次の行があります。
sshfs#jldugger@storage:/mnt/HD_a2/ /mnt/storage Fuse comment=sshfs,auto,users,exec,uid=1000,gid=1000,allow_other,reconnect,transform_symlinks,BatchMode=yes,fsname=sshfs#jldugger@storage/mnt/HD_a2/ 0 0
マウントで動作することを確認できます/mnt/storage
。起動時に、ネットワーク接続が確立された後でマウントする方法が必要です。
現在、UbuntuのUpstartはネットワークイベントを生成しません。代わりに、従来のsysvinitを呼び出します。デフォルトでNetworkManagerがインストールされ、実行されています。ネットワークイベントをupstartに発行するのではなく、実行パーツディスパッチャ(/etc/NetworkManager/dispatcher.d/)が含まれています。これは、ifupdownの実行パーツディスパッチャ(/etc/network/*.d/)に依存しています。特に、/ etc/network/if-up.d /と/etc/network/if-down.d/に関心があります。
最初に、暗号化されていないsshキーペアを設定して、プロンプトなしでポイントをマウントできるようにします。スクリプトを記述し、/ etc/network/if-up.d /に配置して実行可能にします。以下はUbuntuForumsで発見され、私には十分でした:
#!/bin/sh
## http://ubuntuforums.org/showthread.php?t=430312
## The script will attempt to mount any fstab entry with an option
## "...,comment=$SELECTED_STRING,..."
## Use this to select specific sshfs mounts rather than all of them.
SELECTED_STRING="sshfs"
# Not for loopback
[ "$IFACE" != "lo" ] || exit 0
## define a number of useful functions
## returns true if input contains nothing but the digits 0-9, false otherwise
## so realy, more like isa_positive_integer
isa_number () {
! echo $1 | egrep -q '[^0-9]'
return $?
}
## returns true if the given uid or username is that of the current user
am_i () {
[ "$1" = "`id -u`" ] || [ "$1" = "`id -un`" ]
}
## takes a username or uid and finds it in /etc/passwd
## echoes the name and returns true on success
## echoes nothing and returns false on failure
user_from_uid () {
if isa_number "$1"
then
# look for the corresponding name in /etc/passwd
local IFS=":"
while read name x uid the_rest
do
if [ "$1" = "$uid" ]
then
echo "$name"
return 0
fi
done </etc/passwd
else
# look for the username in /etc/passwd
if grep -q "^${1}:" /etc/passwd
then
echo "$1"
return 0
fi
fi
# if nothing was found, return false
return 1
}
## Parses a string of comma-separated fstab options and finds out the
## username/uid assigned within them.
## echoes the found username/uid and returns true if found
## echoes "root" and returns false if none found
uid_from_fs_opts () {
local uid=`echo $1 | egrep -o 'uid=[^,]+'`
if [ -z "$uid" ]; then
# no uid was specified, so default is root
echo "root"
return 1
else
# delete the "uid=" at the beginning
uid_length=`expr length $uid - 3`
uid=`expr substr $uid 5 $uid_length`
echo $uid
return 0
fi
}
# unmount all shares first
sh "/etc/network/if-down.d/umountsshfs"
while read fs mp type opts dump pass extra
do
# check validity of line
if [ -z "$pass" -o -n "$extra" -o "`expr substr ${fs}x 1 1`" = "#" ];
then
# line is invalid or a comment, so skip it
continue
# check if the line is a selected line
Elif echo $opts | grep -q "comment=$SELECTED_STRING"; then
# get the uid of the mount
mp_uid=`uid_from_fs_opts $opts`
if am_i "$mp_uid"; then
# current user owns the mount, so mount it normally
{ sh -c "mount $mp" &&
echo "$mp mounted as current user (`id -un`)" ||
echo "$mp failed to mount as current user (`id -un`)";
} &
Elif am_i root; then
# running as root, so Sudo mount as user
if isa_number "$mp_uid"; then
# Sudo wants a "#" sign icon front of a numeric uid
mp_uid="#$mp_uid"
fi
{ Sudo -u "$mp_uid" sh -c "mount $mp" &&
echo "$mp mounted as $mp_uid" ||
echo "$mp failed to mount as $mp_uid";
} &
else
# otherwise, don't try to mount another user's mount point
echo "Not attempting to mount $mp as other user $mp_uid"
:
echo "Not attempting to mount $mp as other user $mp_uid"
fi
fi
# if not an sshfs line, do nothing
done </etc/fstab
wait
Wifiまたはその他の信頼性の低い接続がある場合は、/ etc/network/if-down.d /に以下を配置します。
#!/bin/bash
# Not for loopback!
[ "$IFACE" != "lo" ] || exit 0
# comment this for testing
exec 1>/dev/null # squelch output for non-interactive
# umount all sshfs mounts
mounted=`grep 'Fuse.sshfs\|sshfs#' /etc/mtab | awk '{ print $2 }'`
[ -n "$mounted" ] && { for mount in $mounted; do umount -l $mount; done; }
マウントオプションとしての_netdevはこれを解決するはずです。
pstart は現在、Ubuntuでスタートアップスクリプトまたはサービスを発行するための推奨される方法ですが、/etc/rc.local
は引き続き機能します。 Upstartを使用すると、サービスをいつ実行するかを制御でき、ネットワーク接続を開始した後にサービスが実行されるようにします。
/etc/rc.X.dのシンボリックリンクを直接編集し(使用している実行レベルをXに置き換え)、S99mountなどの名前を追加して、ネットワークのセットアップ後に確実に実行されるようにすることもできます。これは、要求しているsshfsをマウントするスクリプトファイルを指す必要があります。
ただの考えですが、これをファイルサーバーとして使用している場合は、おそらくNFSまたはSambaがsshよりも優れたソリューションになります。
リモートホストからの証明書がなく、代わりにログイン/パスワードを使用する必要がある場合の別の解決策を次に示します。この例では、混乱を避けるためにjlduggerが使用するのと同じユーザー名とディレクトリを使用しています。
パスワードを含むファイルをホームディレクトリに作成し、保護します。
echo 'YourRemoteUserPassword' > ~jldugger/.credentials
chmod 600 ~jldugger/.credentials
/etc/rc.local
ファイルを作成し、下部の次のコマンドを「exit 0」の前に挿入します。
sshfs -o password_stdin -o nonempty jldugger@storage:/mnt/HD_a2/ /mnt/storage < ~jldugger/.credentials