Difference between revisions of "Tutorial6: File Transfer / Sending Email Messages"

From CDOT Wiki
Jump to: navigation, search
(LINUX PRACTICE QUESTIONS)
(LINUX PRACTICE QUESTIONS)
Line 164: Line 164:
 
# Write a Linux command similar to the previous question, but rename the file on the remote Linux server to '''yourtext.txt'''  
 
# Write a Linux command similar to the previous question, but rename the file on the remote Linux server to '''yourtext.txt'''  
 
# Write a Linux command to copy a file called '''~/project/linux.txt''' to the remote server called '''linux.techie.org''' (your username for this remote server is the same username for your local server).
 
# Write a Linux command to copy a file called '''~/project/linux.txt''' to the remote server called '''linux.techie.org''' (your username for this remote server is the same username for your local server).
# x
+
# Write a Linux command to connect to the username saulm for the server domain name tux.senecac.on.ca to transfer files between Linux servers.
# x
+
# Assuming that you are connected to that server in question #4. What is the sftp command to display your current working directory on your local server?
 +
 
 
# x
 
# x
 
# x
 
# x

Revision as of 16:34, 27 January 2020

TRANSFERRING FILES / USING THE MAIL COMMAND


Main Objectives of this Practice Tutorial

  • List common utilities combined with the ssh suite of utilities
  • Securely copy files between Unix/Linux servers using the scp command
  • Securely transfer copies of files between Unix/Linux servers using the sftp command
  • Use the mail command to send email messages to your Seneca email account
  • Use the mail command to send email with file attachments to your Seneca email account


Tutorial Reference Material

Course Notes
Definitions / Commands
YouTube Videos
Course Notes: Definitions: File Transfer Commands: Instructional Videos:

KEY CONCEPTS

The ssh Linux command is actually a suite of tools to allow the user to not only issue commands securely between Unix / Linux servers, but also securely copy and transfer files among Unix/Linux servers via the commands scp and sftp.

In this tutorial, you will learn several different methods to securely transfer files from your Matrix Linux account to other computers
using Linux commands including scp, sftp and mail.

Secure Copy (scp)

The scp Unix/Linux command is used to securely copy files between Unix/Linux servers.

Secure copy protocol (scp) is a means of securely transferring computer files between a local host and a remote host or between two remote hosts. It is based on the Secure Shell (SSH) protocol. "SCP" commonly refers to both the Secure Copy Protocol and the program itself.

Reference: https://en.wikipedia.org/wiki/Secure_copy


The usage for the scp command is similar to the cp command with the addition of host names, for example:

scp local.file user@host:destination-pathname

scp local.file user@host:

scp local.file host:


The most common mistake that students make is forgetting to add the colon character ":" after the remote hostname.

The user name in the command can be omitted if it's the same as on the local host.

Multiple file and recursive directory copy (i.e. option -R) is supported

Secure File Transmission Control Protocol (sftp)

The sftp Unix/Linux command is used to securely transfer (copy) files between Unix/Linux servers.

sftp is a file transfer program, similar to ftp, which performs all operations over an encrypted ssh transport. It may also use many features of ssh, such as public key authentication and compression.

Reference: http://man7.org/linux/man-pages/man1/sftp.1.html

FTP is an acronym for File Transfer Protocol which provides a framework of rules on how to convert data that is transferred between computer servers (both identical and different).


When you login via the sftp command, you are in the sftp prompt (like a Bash shell prompt, but with a limited number of commands). When issuing sftp commands it is important to understand that the local server relates to the server where you first issues the sftp command.

Below is a table that provides sftp commands to perform basic transfer and file management commands. Some of those commands loosely resemble Unix/Linux commands.


Operationsftp Command
(Local Server)
sftp Command
(Remote Server)
Display current working directory!pwdpwd
Display directory contents!lsls
Change directory locationlcdcd
Upload file to remote serverput-
Download file to local serverget-



Sending Emails with File Attachment (mail)

mail is a command-line email client for Unix and Unix-like operating systems.

Reference: https://en.wikipedia.org/wiki/Mail_(Unix)


Steps when sending email (Method 1):

  1. Type: mail recipient@hostname and press ENTER
  2. Enter subject line and press ENTER
  3. Type the body of the message and then when finished, press ctrl+d to send message

    NOTE: You can use the mail command with the -a option to specify a file.

    Example:
    mail recipient@hostname -a filename


Steps when sending email (Method 2):

  1. Use the -s option in the command to specify the subject line of the command and use stdin redirection to send a text file as the body of the message.

    NOTE: The advantage of using this method is that you can send an email message without being prompted for the subject line or body of text message.

    Example:
    mail -s "your subject line" recipient@hostname < filename



INVESTIGATION 1: USING SECURE COPY


In this section, you will learn how to ...



Perform the Following Steps:

  1. x

In the next investigation, you will ...

INVESTIGATION 2: USING SECURE TRANSMISSION CONTROL PROTOCOL

In this section, you will learn how to ...


Perform the Following Steps:

  1. x

In the next investigation, you will ...

INVESTIGATION 3: USING THE MAIL COMMAND

In this section, you will learn how to ...


Perform the Following Steps:

  1. x

LINUX PRACTICE QUESTIONS

The purpose of this section is to obtain extra practice to help with quizzes, your midterm, and your final exam.

Here is a link to the MS Word Document of ALL of the questions displayed below but with extra room to answer on the document to simulate a quiz:

https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week6_practice.docx

Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).


Review Questions:

  1. Write a Linux command to copy a file in the current directory called mytext.txt from your Matrix account to your account called user1 on the Linux server domain name called tech.myserver.com to that user’s home directory.
  2. Write a Linux command similar to the previous question, but rename the file on the remote Linux server to yourtext.txt
  3. Write a Linux command to copy a file called ~/project/linux.txt to the remote server called linux.techie.org (your username for this remote server is the same username for your local server).
  4. Write a Linux command to connect to the username saulm for the server domain name tux.senecac.on.ca to transfer files between Linux servers.
  5. Assuming that you are connected to that server in question #4. What is the sftp command to display your current working directory on your local server?
  1. x
  2. x
  3. x
  4. Create a table listing each Linux command, useful options that were mentioned in the online assignment #1 and command purpose for the following Linux commands: scp , sftp , mail.