diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/articals/linux/info/00LinuxFileHierarchy (renamed from public/articals/linux/2LinuxFileHierarchy) | 17 | ||||
-rw-r--r-- | public/articals/linux/info/01Terminal | 42 | ||||
-rw-r--r-- | public/articals/linuxlist | 3 |
3 files changed, 54 insertions, 8 deletions
diff --git a/public/articals/linux/2LinuxFileHierarchy b/public/articals/linux/info/00LinuxFileHierarchy index 96514db..66cdc23 100644 --- a/public/articals/linux/2LinuxFileHierarchy +++ b/public/articals/linux/info/00LinuxFileHierarchy @@ -4,17 +4,17 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Linuxx file hierarchy</title> - <link rel="stylesheet" href="../../styles.css"> - <link rel="icon" href="../../Images/favi.png" type="image/x-icon"> + <link rel="stylesheet" href="../../../styles.css"> + <link rel="icon" href="../../../Images/favi.png" type="image/x-icon"> </head> <body> <header> <nav> <ul> - <li><a href="../../index.html">Home</a></li> - <li><a href="../../links.html">Links</a></li> - <li><a href="../../projects.html">Projects</a></li> - <li><a href="../../contact.html">Contact</a></li> + <li><a href="../../../index.html">Home</a></li> + <li><a href="../../../links.html">Links</a></li> + <li><a href="../../../projects.html">Projects</a></li> + <li><a href="../../../contact.html">Contact</a></li> </ul> </nav> </header> @@ -79,7 +79,10 @@ <p>The /var directory is used to store variable data that changes all the time while yout system is powered on. Important things such as logs, mail spools, and temporary files. If you are running a server I do suggest giving /var its own partition because it allows for easy backup and recovery.</p><hr> <h2>Overview</h2> <p>This has took me a while to write because I have had to double check everything and put it in my own words so I understand it! If there are any issues please with this artical please report it.</p> - <p>As normal thank you for reading!</p> + <p>As normal thank you for reading!</p><hr> + <center> + <pre text-align=center> <a href="../../linuxlist">Back</a> + </main> </body> </html> diff --git a/public/articals/linux/info/01Terminal b/public/articals/linux/info/01Terminal new file mode 100644 index 0000000..59c40e0 --- /dev/null +++ b/public/articals/linux/info/01Terminal @@ -0,0 +1,42 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Terminal > GUI</title> + <link rel="stylesheet" href="../../../styles.css"> + <link rel="icon" href="../../../Images/favi.png" type="image/x-icon"> +</head> +<body> + <header> + <nav> + <ul> + <li><a href="../../../index.html">Home</a></li> + <li><a href="../../../links.html">Links</a></li> + <li><a href="../../../projects.html">Projects</a></li> + <li><a href="../../../contact.html">Contact</a></li> + </ul> + </nav> + </header> + <main class="description"> + <h1>Why the terminal will always beat the GUI 👨💻</h1> + <h3>Date: 27-08-2024</h3> + <hr> + <p>I want to say this now, I do not care if people use a GUI option for things, Linux is all about choice and if you choose to use a GUI instead of using the terminal that is your choice!</p> + <hr> + + <h3>1) The Terminal Simplifies Tasks With Fewer Steps:</h3> + <p>Using the terminal can be way faster and more straightforward than navigating a GUI. For example, updating your Linux system requires one simple command in the terminal. In contrast, using a GUI software centre involves way more steps: opening the software center, navigating to the update section, and then updating all the programs. The terminal streamlines all of this which makes it way more efficient.</p><hr> + + <h3>2) Enhanced Efficiency</h3> + <p>A GUI is essentially the command line dressed up with buttons and such, allowing users to execute commands through the elements of the GUI. While this is useful for those who are less familiar with computers, for technical users like you and me, we seek greater efficiency. By learning how to use the command line, we can perform tasks more quickly with only a few words. This not only saves us time but also enhances our productivity.</p><hr> + + <h3>3) Understanding The System</h3> + <p>By learning all of these command-line tools over time, you will start learning how a Linux system works and operates, and this will help you fix any issues that pop up in the future. For example, if you wanted to format a USB stick, while yes, you could use <a href="https://apps.gnome.org/DiskUtility/">Gnome-disk</a>, it is faster just to use <a href="https://linux.die.net/man/8/fdisk">fdisk</a> and <a href-"https://linux.die.net/man/8/mkfs">mkfs</a> for formatting a USB stick.</p><hr> + <p>For now that is all I have on why terminal is better!</p> + <hr><center> + <pre text-align=center> <a href="../../linuxlist">Back</a> + </main> +</body> +</html> + diff --git a/public/articals/linuxlist b/public/articals/linuxlist index 5d51853..3734a6f 100644 --- a/public/articals/linuxlist +++ b/public/articals/linuxlist @@ -24,7 +24,8 @@ <section class="posts"> <h2>Infomation about Linux</h2> <ul> - <li>05-08-2024 - <a href="linux/2LinuxFileHierarchy">Linux File Hierarchy</a></li> + <li>05-08-2024 - <a href="linux/info/00LinuxFileHierarchy">Linux File Hierarchy</a></li> + <li>27-08-2024 - <a href="linux/info/01Terminal">Why the terminal will always beat the GUI 👨💻</a></li> </ul> <h2>Media tutorials</h2> |