FTP: Difference between revisions
From Variscite Wiki
No edit summary |
(migrate instructions to sftp) |
||
Line 3: | Line 3: | ||
__toc__ | __toc__ | ||
= Variscite's | = Variscite's SFTP server credentials = | ||
Server address: ftp.variscite.com | Server address: ftp.variscite.com | ||
Username: customerv | Username: customerv | ||
Password: Variscite1 | Password: Variscite1 | ||
Port: 2222 | |||
For example, using sftp client: | |||
$ sftp -P 2222 sftp://customerv@ftp.variscite.com/ | |||
= Downloading from an | = Downloading from an SFTP server = | ||
== Using a dedicated FTP client == | |||
== Using | === Using FileZilla === | ||
There are many FTP client applications and you can use any of them.<br> | There are many FTP client applications and you can use any of them.<br> | ||
One of the most popular FTP clients is [https://filezilla-project.org/ FileZilla], which is also a graphical, multi-platform and open source software.<br> | One of the most popular FTP clients is [https://filezilla-project.org/ FileZilla], which is also a graphical, multi-platform and open source software.<br> | ||
Line 32: | Line 23: | ||
$ sudo apt install filezilla | $ sudo apt install filezilla | ||
=== Using sftp === | |||
Connect to server: | |||
$ sftp -P 2222 sftp://customerv@ftp.variscite.com/ | |||
Download a file: | |||
sftp> get /Public/VAR-SOM-MX8/Hardware/Symphony-Board/Hardware_reference.txt | |||
Download a directory: | |||
sftp> get -r /Public/VAR-SOM-MX8/Hardware/Symphony-Board | |||
<!-- No longer supported | |||
== Downloading files from an FTP server using wget == | == Downloading files from an FTP server using wget == | ||
Line 41: | Line 45: | ||
$ wget ftp://customerv:Variscite1@ftp.variscite.com/VAR-SOM-MX8X/Software/b2qt/b2qt-dunfell-var-som-mx8x-v1.0.img.gz | $ wget ftp://customerv:Variscite1@ftp.variscite.com/VAR-SOM-MX8X/Software/b2qt/b2qt-dunfell-var-som-mx8x-v1.0.img.gz | ||
--> |
Revision as of 17:17, 27 October 2023
FTP
Variscite's SFTP server credentials
Server address: ftp.variscite.com Username: customerv Password: Variscite1 Port: 2222
For example, using sftp client:
$ sftp -P 2222 sftp://customerv@ftp.variscite.com/
Downloading from an SFTP server
Using a dedicated FTP client
Using FileZilla
There are many FTP client applications and you can use any of them.
One of the most popular FTP clients is FileZilla, which is also a graphical, multi-platform and open source software.
To download it you can use the web link above, or in Ubuntu you can run the following:
$ sudo apt install filezilla
Using sftp
Connect to server:
$ sftp -P 2222 sftp://customerv@ftp.variscite.com/
Download a file:
sftp> get /Public/VAR-SOM-MX8/Hardware/Symphony-Board/Hardware_reference.txt
Download a directory:
sftp> get -r /Public/VAR-SOM-MX8/Hardware/Symphony-Board