No GUI just text, Starting out with terminal can be confusing and daunting. Looking past the black console commands are actually fairly simple. Here are the basics in navigation and file & folder handling.
To print your current directory use
pwd
To print out the files and folders in your current directory
ls
To move into a directory
cd directoryname
To go back (up)
cd ..
Create a folder with
mkdir newfoldername
Delete a folder with
rm -d foldername
Print file contents with
cat filename
Move a file
mv currentfolder movehere
Copy a file
cp file copytohere
Rename a file with mv
mv oldname renameto
Delete a file
rm -d filename
To edit a file
nano filename
Ctrl + x
Then
y
To confirm saving the file.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…