Question: All actions (commands) should be performed on a CSE Linux lab machine remotely via ssh or client such as MobaXTerm. Your work will be graded

All actions (commands) should be performed on a CSE Linux lab machine remotely via ssh or client such as MobaXTerm. Your work will be graded via a Linux Lab machine, it must work there.

Part 1.)

  • Open up a connection to the Linux labs (ssh or through a client like MobaXTerm).

  • Create a workspace for this course by running the commands below in the

    terminal.

     mkdir 300 mkdir 300/assignment1 mkdir 300/assignment2 mkdir 300/assignment3 mkdir 300/assignment4 mkdir 300/finalProject 
  • Check and see what you just created by running the following: ls -R ~/215 meaning list recursively all files and directories in `$HOME/215`

  • You now have a workspace that you can use to keep your work for this course organized, go ahead and navigate to the ~/215 directory using the 'cd' command discussed in class.

  • Now we will create a header file that will be used on all of your assignment submissions

  • Create the file using touch header.txt

  • Populate the file with necessary contents

     echo "# Your full name here" >> header.txt 
    echo "# CSCE215.yourSectionHere" >> header.txt echo "# Assignment 1" >> header.txt echo "#############" >> header.txt echo " " >> header.txt 

    echo " " >> header.txt You can check your work by using cat header.txt and verifying the output looks

    similar to the following:

     # Mike Jones # CSCE300.801 # Assignment 1 ############# (empty white space) (empty white space) 
     I need this for Mac using Macs terminal. 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!