started tracking my website with git
This commit is contained in:
25
sshfs.html
Normal file
25
sshfs.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="styles.css">
|
||||
<title>SSHFS utility</title>
|
||||
</head>
|
||||
<body>
|
||||
<a href="index.html">Back Home</a>
|
||||
|
||||
<h2>Using the sshfs utility</h2>
|
||||
<section>
|
||||
<a href="https://github.com/libfuse/sshfs">sshfs on github</a>
|
||||
<p id="blogtext">I installed it by doing</p>
|
||||
<em id="blogtext">$ sudo apt install sshfs</em>
|
||||
<p id="blogtext">this installed version 3.7.3 . Then I mounted my $HOME on tilde.club using</p>
|
||||
<em id="blogtext">$ mkdir -p /tmp/tcfs/ && sshfs delgnam@tilde.club:/home/delgnam/ /tmp/tcfs/</em>
|
||||
<p id="blogtext">It'd be helpful if you set up ~/.ssh/config on your box :p</p>
|
||||
<p id="blogtext">Syntax as given on sshfs' github page:</p>
|
||||
<em id="blogtext">sshfs [user@]hostname:[directory] mountpoint</em>
|
||||
<p id="blogtext">Will write more once I explore the utility more</p>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user