मैं बूट पर sshfs कैसे माउंट करूं?


12

24/7 फ़ाइल सर्वर के रूप में NAS बॉक्स का उपयोग करते हुए, मैं इसे Ubuntu 9.04 डेस्कटॉप से ​​कनेक्ट करने के लिए sshfs का उपयोग करना चाहूंगा। वर्तमान में, मैं डेस्कटॉप 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। स्टार्टअप पर इसे बढ़ाने के लिए मुझे कुछ आवश्यक है, लेकिन नेटवर्क कनेक्शन स्थापित होने के बाद।


आपके पास प्रमाणीकरण सेटअप कैसे है? जब आप मैन्युअल रूप से माउंट करते हैं तो क्या आपको पासवर्ड के लिए कहा जाता है?
दोपहर

कीपेयर ऑर्ट। सबसे सुरक्षित नहीं है, लेकिन संभावना पर्याप्त है।

जवाबों:


8

वर्तमान में, उबंटू में अपस्टार्ट नेटवर्क घटनाओं को उत्पन्न नहीं करता है। इसके बजाय यह पारंपरिक sysvinit कहता है। डिफ़ॉल्ट रूप से NetworkManager स्थापित और चल रहा है; नेटवर्क इवेंट्स को अपस्टार्ट करने के बजाय, इसमें एक रन-पार्ट्स डिस्पैचर (/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

यदि आपके पास कोई वाईफाई या अन्यथा अविश्वसनीय कनेक्शन है, तो निम्नलिखित को /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; }

2
यह मेरे लिए बहुत अच्छा काम किया। मैं ध्यान दूंगा कि मैंने echoउन कमांड्स को बदल दिया है logger -t mountsshfsजो आउटपुट को कमांड के बजाय stdout कर रहे थे ताकि आउटपुट syslog में जाए।
मैथ्यू

3

अपस्टार्ट अब उबंटू में स्टार्टअप स्क्रिप्ट या सेवाओं को जारी करने का पसंदीदा तरीका है, हालांकि संपादन /etc/rc.localअभी भी काम करता है। उपस्टार्ट आपको सेवा चलाने के दौरान नियंत्रित करने की अनुमति देता है, यह सुनिश्चित करते हुए कि यह आपके नेटवर्क कनेक्शन को शुरू करने के बाद होता है।

यह सीधे /etc/rc.Xd में सीमलिंक को संपादित करना भी संभव है, (रन-लेवल का उपयोग करने के लिए स्थानापन्न X) और S99mount जैसे नाम जोड़ें ताकि यह सुनिश्चित हो सके कि यह नेटवर्क सेटअप के बाद चलाया गया है। यह एक स्क्रिप्ट फ़ाइल को इंगित करने की आवश्यकता होगी जो आपके द्वारा अनुरोधित sshfs को माउंट करता है।


3

माउंट विकल्प के रूप में _netdev को इसे हल करना चाहिए, मुझे विश्वास है


मुझे पता है, उबंटु और सेंटोस समान नहीं हैं ... लेकिन सेंटो में वैसे भी, यह /etc/init.d/netfs sshfs mounts को संभालने का सही तरीका है। जिसे नेटवर्क लाने के बाद कॉल किया जाएगा।
अनाम-एक

1

बस एक विचार है, लेकिन अगर आप इसे एक फ़ाइल सर्वर के रूप में उपयोग कर रहे हैं, तो शायद NFS या सांबा ssh से बेहतर समाधान होगा।


0

यदि आपके पास अपने दूरस्थ होस्ट से प्रमाण पत्र नहीं है और इसके बजाय लॉगिन / पासवर्ड का उपयोग करना है, तो यहां एक और समाधान दिया गया है। मैं इस उदाहरण में उसी उपयोगकर्ता नाम और निर्देशिका का उपयोग कर रहा हूं जो भ्रम को जोड़ने से बचने के लिए jldugger द्वारा उपयोग किया जाता है।

  1. अपने घर निर्देशिका में अपना पासवर्ड युक्त एक फ़ाइल बनाएँ, और इसे सुरक्षित करें:

    echo 'YourRemoteUserPassword' > ~jldugger/.credentials
    chmod 600 ~jldugger/.credentials
    
  2. अपनी /etc/rc.localफ़ाइल को संपादित करें और नीचे दिए गए कमांड को डालें, लेकिन "बाहर निकलें 0" से पहले:

    sshfs -o password_stdin -o nonempty jldugger@storage:/mnt/HD_a2/ /mnt/storage < ~jldugger/.credentials
    
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.