Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Implementation

Authors: Edward Sciore

2nd Edition

3030338355, 978-3030338350

More Books

Students also viewed these Databases questions