SILS iSchool

week of 23 January 2020



Value Added | daily

Class Schedule

Basics | sessions 01-03
  1. 09 Jan intro and clients | lecture | labs
  2. 16 Jan servers and command line | lecture | labs
  3. 23 Jan networks and protocols | lecture | labs
Web Development | sessions 04-07

  1. 30 Jan structural layer | lecture | labs
  2. 06 Feb presentational layer | lecture | labs
  3. 13 Feb using a structure | lecture | labs
  4. 20 Feb behavioral layer | lecture | labs
Document Markup | sessions 08-09
  1. 27 Feb control objects and display | lecture | labs
  2. 05 Mar tools that read markup | lecture | labs
Working with Data | sessions 10-13
  1.  26 Mar  formulas, functions, vectors | lecture | labs
  2.  02 Apr  data display | lecture | labs
  3.  09 Apr  manipulate data sets | lecture | labs
  4.  16 Apr  relational data bases | lecture | labs
Presentation | session 14
  1. 16 Apr designing a presentation | lecture | labs
  2.  23 Apr  designing and delivering a presentation | lecture | labs


Use a File Transfer Protocol tool to move files
from your client to a server and from a server to your client.

Task 01.05: Install an SFTP tool

Using the Secure File Transfer Protocol (SFTP) to manage your files

SFTP requires two computers, one running an SFTP server, the other running an SFTP client. The exchange is initiated by the client which logs in under an accepted user name and password. Once this occurs, a session is opened and stays open until closed by either the client or the server, or until it times out. While the session is open, the client may execute numerous SFTP commands on the server. These include commands to change directories, list files, get files and put files.

You have access to servers which provide storage space for some of your data. These may be, among others, normal data files or HTML files that support web pages.

You may hear both the terms FTP and SFTP.
The difference is in the level of security each type of connection affords.

We will be using the SFTP capability exclusively.

If you are associated with SILS,
you can use your Onyen login to access storage on SILS servers.

Use of these servers will necessitate your instructor arranging for you to obtain a SILS account. But to use them, you must have an SFTP client on your personal computer.

back to top

Mac users

You have many choices. Cyberduck, or Filezilla are good SFTP clients to use in a Mac to server environment.

back to top

Linux users

You can use one of several SFTP tools to manage your files. Note that Filezilla is also recommended for Linux users.

back to top

Windows users

Filezilla and Cyberduck are both also players here, but you may also use the SSH/SFTP Secure Shell Client. This tool provides you both a terminal (we'll discuss it in the next session) as well as an SFTP capability.

back to top

We will use SSH/SFTP for in-class examples.

If you need to transfer files from the client computer you are using to the server, or from the server to the client computer, you will need to use an FTP client. Assuming you use SSH/SFTP, start the program and connect to opal.ils.unc.edu.

ssh terminal window with log-in prompt

The resultant window displays a telnet connection, but you will want to select the File Transfer Window. ssh ftp window

Fetch behaves nearly the same

If you need to transfer files from the client computer you are using to the server, or from the server to the client computer, you will need to use an SFTP client. Assuming you use Fetch, start the program and connect to opal.ils.unc.edu using your Onyen and password. It is important that you select SFTP (Secure FTP) during this step.

Fetch terminal window with log-in prompt

In the following window, open the folder marked public_html. From here, you can click and drag files and folders into the Fetch window to transfer them onto the ITS server. (Alternatively, you can use the "Put" button in the menu bar.)

Fetch menu bar

If you choose to use Cyberduck, the protocol is very similar: Choose "Open Connection" from the menu bar, select SFTP, and connect to opal.ils.unc.edu

Remember that when you upload to or download from the server,
you are only transferring copies of the original files.
This is an excellent way to manage files on your remote site.

back to top