У нас вы можете посмотреть бесплатно Let's Convert an Old Laptop to a NAS - What you should do или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, we're going to use the idea of an old laptop, which only has an internal hard drive. To get more space, we will add two more hard drives via USB connection. But we should not "Raid" between this HD to use all these HDS as just one HD because USB connection is not stable. So why not use MergerFs for that. After that, we will use “Fuse” to start MergerFS automatically. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To update your system, use the following command: $sudo apt update; sudo apt upgrade -y To install mergerfs, use the following command: $sudo apt install mergerfs To install Fuse, use the following command: $ sudo apt install fuse -y - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Check out my mergerfs.service configuration [Unit] Description= MergerFS Mount After=network-online.target [Service] Type=forking ExecStart=/usr/bin/mergerfs /absolute/path/local/HD1:/absolute/path/local/HD2 / /absolute/path/local/merger -o rw,use_ino,allow_other,func.getattr=newest,category.action=all,category.create=ff,cache.files=auto-full ExecStop=/bin/fusermount -uz /absolute/path/local/merger KillMode=none Restart=on-failure [Install] WantedBy=multi-user.target - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To place the service in the system folder, use the following command: sudo cp mergerfs.service /etc/systemd/system To activate the service, use the following command: sudo systemctl enable mergerfs.service To start the service, use the following command: sudo systemctl start mergerfs.service To check if the service is working, use the following command: sudo systemctl status mergerfs.service - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Leave your comment and share it with your network. It's always good to know what needs to be improved. Don't forget to subscribe to the channel to receive tips and help. To receive all notifications, tap the bell icon. It will change to a ringing bell to indicate that you have chosen to receive all notifications.