Configure SSHFS: Difference between revisions

From ALT Linux Wiki
m (Created page with 'In order to get SSHFS and FUSE working on a default install of Alt Linux Desktop 4.1, you need to do a few minor changes to your systems configuration. For these steps, you need...')
 
m (add an example of the SSHFS command)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
In order to get SSHFS and FUSE working on a default install of Alt Linux Desktop 4.1, you need to do a few minor changes to your systems configuration.
In order to get SSHFS and FUSE working on a default install of Alt Linux Desktop, you need to do a few minor changes to your systems configuration.


For these steps, you need to open a terminal window (Konsole) and log-in as the Root (or Super User) and, of course, install the SSHFS Fuse package from the ALT repositories.
For these steps, you need to open a terminal window (Konsole) and log-in as the Root (or Super User) and, of course, install the SSHFS Fuse package from the ALT repositories.
Line 15: Line 15:
== 3) Configure Fuse to run when booting-up the system ==
== 3) Configure Fuse to run when booting-up the system ==


* Open up a console session by typing '''ALT-F2''' and then type '''konsole''' in the command line.  Press <ENTER>.
* Type '''vi /etc/modules''' and press <ENTER>.
* Type '''vi /etc/modules''' and press <ENTER>.
* Type '''i''' to enter Edit mode and add the word '''fuse''' to a blank line within the file.
* Type '''i''' to enter Edit mode and add the word '''fuse''' to a blank line within the file.
* Press <ESC> to exit edit mode and then type ''':wq''' and press <ENETR>.  This will save the changes you've made.
* Press <ESC> to exit edit mode and then type ''':wq''' and press <ENETR>.  This will save the changes you've made.


You will now be able to map network drives via SSHFS on your ALT Linux desktop.
You will now be able to map network drives via SSHFS on your ALT Linux desktop. An SSHFS connection command is like this:
 
  sshfs [user@]host:[remote_directory] mountpoint [options]


[[Category:Networking]]
[[Category:Networking]]
[[category:filesystems]]

Latest revision as of 03:53, 19 January 2022

In order to get SSHFS and FUSE working on a default install of Alt Linux Desktop, you need to do a few minor changes to your systems configuration.

For these steps, you need to open a terminal window (Konsole) and log-in as the Root (or Super User) and, of course, install the SSHFS Fuse package from the ALT repositories.

Once you have installed the Fuse module and are logged in as Root, follow these steps:

1) Add /sbin to your command PATH

  • Type: PATH=$PATH:/sbin and press <ENTER>.

2) Probe for the Fuse module

  • Type modprobe fuse and press <ENTER>.

3) Configure Fuse to run when booting-up the system

  • Open up a console session by typing ALT-F2 and then type konsole in the command line. Press <ENTER>.
  • Type vi /etc/modules and press <ENTER>.
  • Type i to enter Edit mode and add the word fuse to a blank line within the file.
  • Press <ESC> to exit edit mode and then type :wq and press <ENETR>. This will save the changes you've made.

You will now be able to map network drives via SSHFS on your ALT Linux desktop. An SSHFS connection command is like this:

 sshfs [user@]host:[remote_directory] mountpoint [options]