AboutWelcome to Free Software Daily (FSD). FSD is a hub for news and articles by and for the free and open source community. FSD is a community driven site where members of the community submit and vote for the stories that they think are important and interesting to them. Click the "About" link to read more...
This tutorial explains how you can mount a directory from a remote server on the local server securely using SSHFS. SSHFS (Secure SHell FileSystem) is a filesystem that serves files/directories securely over SSH, and local users can use them just as if the were local files/directories. On the local computer, the remote share is mounted via FUSE (Filesystem in Userspace).
This tutorial explains how you can mount a directory from a remote server on the local server securely using SSHFS. SSHFS (Secure SHell FileSystem) is a filesystem that serves files/directories securely over SSH, and local users can use them just as if the were local files/directories. On the local computer, the remote share is mounted via FUSE (Filesystem in Userspace).
Filesystem in Userspace (FUSE) has long been one of my favorite features on Linux systems. Using FUSE modules, you can mount all sorts of innovative resources -- Gmail, your Flickr photos, a remote SSH server -- directly into your local machine's filesystem and use their contents exactly as if they were normal files. Now you can do the same thing on Mac OS X, courtesy of MacFUSE.
You can convert your existing Ext3 filesystem to Ext4 with an easy procedure.Things to remember
* Unmount the filesystem before convert
* Filesystem must be non-root
This way you can improve the performance, storage limits and features of your existing filesystem without reformatting and/or reinstalling your OS and softwares.
"The Linux filesystem is a complex and the first thing that most new users shifting from Windows will find confusing is navigating the Linux filesystem. The second thing is that not too many people are familiar with how the filesystem works or know how to troubleshoot if any problems arise."
The filesystem used in the vast majority of Linux (and to a lesser extent on other Unix) distributions is the ext3 filesystem, which stands for extended filesystem. Slashdot recently pointed to an article on IBM DeveloperWorks discussing the new ext4 filesystem currently in development, and some of its new features. So what is a filesystem really?
There might be the situation, that your root filesystem runs out of space, so it has to be expanded. With filesystems other than the root filesystem this could easily be done for instance with gparted. With the root filesystem this is not possible, as gparted could only expand filesystems that are not mounted, which is impossible with the root filesystem.
With MySQLfs you can store a filesystem inside a MySQL relational database. MySQLfs breaks up the byte content of files that you store in its filesystem into tuples in the database, which allows you to store large files in the filesystem without requiring the database to support extremely large BLOB fields. With MySQLfs you can throw a filesystem into a MySQL database and take advantage of whatever database backup, clustering, and replication setup you have to protect your MySQLfs filesystem.