Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
user:codemasterboom [2023/01/16 20:17] – [That is a child subtask of project BtcRelax] stgodjahuser:codemasterboom [2023/07/05 23:47] – added must have section codemasterboom
Line 11: Line 11:
 Allowing for remote SFTP connection: Allowing for remote SFTP connection:
 <code bash> <code bash>
-opkg update +opkg update && opkg install openssh-sftp-server 
-opkg install openssh-sftp-server announce mc nano usbutils +</code> 
 +Must have: 
 +<code bash> 
 +opkg update && opkg install announce  
 +opkg update && opkg install nano  
 +opkg update && opkg install usbutils  
 +opkg update && opkg install mc
 </code> </code>
  
Line 28: Line 34:
  
 Configuring network filesystems: Configuring network filesystems:
 +
 +<tabbox FTP>
 + The smallest of the three popular FTP servers
 +
 +  - Install from web-interface or command-line: “**opkg install vsftpd**”
 +  -     You might want to start and enable the vsftpd service in web-interface “System/Startup”
 +  -     Configuration file is located in “**/etc/vsftpd.conf**”
 +  -     To set the default FTP folder add the following to the config file: “**local_root=/srv**”
 +  -     To enable PASSIVE mode, add the following to the config file: “pasv_enable=YES”, “pasv_min_port=10090”, and “pasv_max_port=10100”
 +    The vsftpd service can be controlled with the usual commands:
 +
 +<code>
 +   /etc/init.d/vsftpd start     (Start the service)
 +   /etc/init.d/vsftpd stop      (Stop the service)
 +   /etc/init.d/vsftpd restart   (Restart the service)
 +   /etc/init.d/vsftpd reload    (Reload configuration files (or restart if that fails))
 +   /etc/init.d/vsftpd enable    (Enable service autostart)
 +   /etc/init.d/vsftpd disable   (Disable service autostart)
 +</code>
 +
 <tabbox Windows Shares (SAMBA)> <tabbox Windows Shares (SAMBA)>
  
  • Last modified: 2023/07/17 23:45
  • by codemasterboom