FTP: Difference between revisions

From Variscite Wiki
No edit summary
Tag: Manual revert
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
__toc__
__toc__


= Variscite's FTP server credentials =
= Variscite's SFTP server credentials =
ftp://customerv:Variscite1@ftp.variscite.com/
<br>
Or, written differently:<br>
  Server address: ftp.variscite.com
  Server address: ftp.variscite.com
  Username: customerv
  Username: customerv
  Password: Variscite1
  Password: Variscite1
Port: 2222


= Downloading from an FTP server =
For example, using sftp client:


Variscite uses an FTP server to deliver software releases and other files to customers. Recently, [https://developers.google.com/web/updates/2020/12/chrome-88-deps-rems Google Chrome], [https://blog.mozilla.org/addons/2021/04/15/built-in-ftp-implementation-to-be-removed-in-firefox-90/ Firefox] and possibly other browsers have started to remove FTP support.<br>
$ sftp -P 2222 sftp://customerv@ftp.variscite.com/
If you were using one of these browsers to access our FTP server, please choose one of the following solutions.
 
= Downloading from an SFTP server =


== Using a dedicated FTP client ==
== Using a dedicated FTP client ==
=== 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 22: 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 31: 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
-->

Latest revision as of 21:20, 22 August 2024

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