I'm new to Ubuntu. I installed it because i'm using it in my operating systems class in college. One thing needed to do is copy. This is the lecturers notes on how to do this:
Change to your home directory
cd
Display a listing of the files contained within it in long format
ls -al
Make a directory here called test
mkdir test
Below test create two directories x and y
cd test
mkdir x
mkdir y
Copy the file fstab from the /etc directory to the directory y
cd y
cp /etc/fstab .
But it's not working. Can anyone help me with this?
