Full name: Nathan Dsouza
ID: 20112895
Email: [email protected]
2 | 0 | 1 | 1 | 2 | 8 | 9 | 5 |
ASCII | Hexadecimal | Binary |
---|---|---|
N | 0x4E | 01001110 |
a | 0x61 | 01100001 |
t | 0x74 | 01110100 |
h | 0x68 | 01101000 |
a | 0x61 | 01100001 |
n | 0x6E | 01101110 |
0x20 | 00100000 | |
D | 0x44 | 01000100 |
s | 0x73 | 01110011 |
o | 0x6F | 01101111 |
u | 0x75 | 01110101 |
z | 0x7A | 01111010 |
a | 0x61 | 01100001 |
VM Creation | Disk Selection | Final Installation | |
---|---|---|---|
Kali Linux |
|||
Manjaro Linux |
|||
Hannah Montana Linux |
Instruction | Command | Terminal |
---|---|---|
Perform a command that displays the absolute path of your home directory (your current location). |
pwd |
|
Create a new directory inside your home directory and name it "XXX" |
mkdir Nathan |
|
Now navigate to the XXX directory and create directory XXX-HOMEWORK and change your current working directory to XXX-HOMEWORK. |
cd Nathan mkdir Nathan-HOMEWORK cd Nathan-HOMEWORK |
|
"Create three new subdirectories called Part1, Part2, and Part3 in XXX-HOMEWORK directory." |
mkdir Part1 mkdir Part2 mkdir Part3 |
|
Create a new file called "MyFave.txt" using the touch command and insert three lines into the file (you may use echo command and >> command). |
touch MyFave.txt |
|
The first line should contain your name and ID number. |
"echo "Nathan Dsouza 20112895" >> MyFave.txt" |
|
The second line should be the first sentence of your favourite song. |
echo "Vai minha tristeza e diz a ela que sem ela nao pode ser." >> MyFave.txt" |
|
The third line should be the name of your favourite movie. |
echo "Cars 2" >> MyFave.txt |
|
And display the contents of the file "MyFave.txt" to the standard output screen (you may use cat command). |
cat MyFave.txt |
|
Display the number of words in the file "MyFave.txt" (you may use wc command). |
wc -w MyFave.txt |
|
Copy the file "MyFave.txt" to directory "Part1" and rename it to "MyFaveCopy.txt". |
cp MyFave.txt Part1/MyFaveCopy.txt |
|
Make another copy of "MyFaveCopy.txt" just made in directory "Part1" and name it "MyFaveCopyCopy.txt" (also store in the same directory "Part1"). |
cp Part1/MyFaveCopy.txt Part1/MyFaveCopyCopy.txt |
|
"Then, display the contents of the directory "Part1" using the long format." |
ls -l Part1/ |
|
Copy all the contents of directory "Part1" to directory "Part2". |
cp Part1/* Part2/ |
|
Display the contents of the directory "Part2". |
ls Part2/ |
|
"Assume that you are now at the current working directory XXX-HOMEWORK create 15 new files (in directory XXX-HOMEWORK) named as follows: FICT.bak, unix.txt, thistest.bak, wumbo.file, wumbology.txt, moreThings.woot, FundaIT.txt, doodad.text, coursetxt, Test-1-2.xtxt, Test-2-2.xtxt, Test-1-1.bak, Test-1.txt, File-1.bat, Assignment1.file" |
touch FICT.bak unix.txt thistest.bak wumbo.file wumbology.txt moreThings.woot FundaIT.txt doodad.text coursetxt Test-1-2.xtxt Test-2-2.xtxt Test-1-1.bak Test-1.txt File-1.bat Assignment1.file |
|
And display a listing of all the files and directories in long format in the current working directory XXX-HOMEWORK. |
ls -l |
|
"Display a listing of all the files in the current working directory ending with letter "t" using one command, e.g. unix.txt or doodad.text. " |
ls -d t* |
|
"Display a listing of all the files in the current working directory starting with "T" and ending with "t" using one command, e.g. Test-1.txt." |
ls -d T*t |
|
Move everything (files/directories) containing letter "t" to the directory Part3 using one command. |
mv *t* Part3/ |
|
Display a listing of the contents of the current directory XXX-HOMEWORK. All files that contain letter "t" should now be gone. |
ls |
Model | Accuracy | Frames Per Second |
---|---|---|
yolov3_416 | 57.52 | 35 |
yolov3_tiny | 55.69 | 220 |
Raw Images | ||
---|---|---|
416 | 416-Accuracy | Tiny | Tiny-Accuracy |
---|---|---|---|
100% | 0% | ||
100% | 100% | ||
100% | 0% | ||
0% | 0% | ||
100% | 0% | ||
66.67% | 100% | ||
100% | 100% | ||
0% | 0% | ||
0% | 0% | ||
100% | 0% | ||
416-Average: | 60.1% | Tiny-Average | 30% |