Announcement

Collapse
No announcement yet.

Articles

Collapse

Articles Home Page

  •  
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to Setup and Use Sshfs in Linux

    How to Setup and Use Sshfs in Linux

    The SSH File System, or SSHFS, is a filesystem client that you can mount on your local device to interact with files on the remote device. SSH establishes this connection using the Secure Shell File Transfer Protocol (SFTP).
    Moreover, using its cryptographic protocol, SSH ensures data integrity and confidentiality. If your daily tasks include administrating a remote device or server, you are bound to use SSHFS. Hence, you need to learn how to use the SSH File System. So, this short guide will...
    Go to post

  • How to Use SSH to Access a Remote Server in Linux

    How to Use SSH to Access a Remote Server in Linux

    Secure Socket Shell (SSH) is a robust tool for accessing remote machines and servers. It establishes the connection via a cryptographic protocol, ensuring utmost privacy and security.

    You can use SSH to transfer files, execute commands, remotely administer the system, troubleshoot underlying issues, and more. This tutorial is for you if you also want to learn how to use SSH to access the remote server. Here, we have listed the methods of SSH to access the remote server in Linux....
    Go to post

  • How to Log Out of SSH

    How to Log Out of SSH

    Secure Shell utility connects to remote devices and servers, allowing you to operate and monitor them efficiently. It establishes the connection through a cryptographic protocol, ensuring a safe and secure environment.




    In addition to administration, you can also use it to transfer files, troubleshoot network issues, etc. Although it is easy to log in and use SSH, many still need to learn how to log out of it. This is the most basic yet crucial aspect you should...
    Go to post

  • How To Restart SSH Service in Linux

    How To Restart SSH Service in Linux

    The Secure Socket Shell, or SSH, is a widely used utility for controlling servers remotely. It can also be used to operate, monitor, and manage remote machines. SSH uses the cryptographic protocol to establish connections, ensuring safety and privacy.
    Although the SSH service becomes active right after installation, you may need to restart it for reasons like configuration changes, system troubleshooting, software updates, etc. This quick tutorial will explain how to easily restart the SSH...
    Go to post

  • Monthly News – April 2024

    Monthly News – April 2024

    Hello everybody, First things first, a big thank you to all our sponsors and donors. Many thanks to you and to all the people who support our project. I know we say it every month, but it’s important. Fastly powered repositories Earlier this month we announced a BETA test for our new Fastly repositories. This […]

    More...
    Go to post

  • How To Enable SSH on Ubuntu 24.04

    How To Enable SSH on Ubuntu 24.04

    If you have two PCs at two locations and want to access another to get some files, You can use Secure Shell, also known as SSH. SSH is a cryptographic network protocol that lets you connect to a remote device over an unsecured internet connection. It initiates an encrypted connection between the two devices so that data transmission stays protected from third parties.
    Furthermore, SSH prominently aids in remote administration, effortless file transfers, remote command execution, and many more....
    Go to post

  • Bash Script Include Another Bash Script

    Bash Script Include Another Bash Script

    If you are a Linux enthusiast, then you have probably heard of the bash scripting concept. In bash scripting, you can automate the code block of the command sequence. However, sometimes, the code block in bash scripting becomes complex, and it can be tough for a user to execute it further.
    That’s why bash offers a feature that includes a script in another. It lets you run the commands efficiently and achieve an enhanced level of automation. In this blog, we will explain the concept and provide...
    Go to post

  • How to Passthrough Physical Disks to Proxmox VE 8 Virtual Machines

    How to Passthrough Physical Disks to Proxmox VE 8 Virtual Machines

    Usually, virtual disks are used on Proxmox VE virtual machines. The virtual disks are partitioned and operating systems are installed. If you have a lot of virtual machines on your Proxmox VE server, you will be storing the virtual disks of multiple virtual machines on the same storage device, which will limit the storage bandwidth for the virtual machines. Usually, that’s how virtual machines are supposed to run and you will not have any problems with it.

    For many reasons, you will...
    Go to post

  • What is Proper File Extension for a Bash Script

    What is Proper File Extension for a Bash Script

    Bash or Bourne Again Shell is one of Linux’s most essential features. It is an interpreter of shell commands that you can use to automate tasks and perform various actions. In other words, you can add any Linux command in the script and create a combination of multiple commands to automate the tasks from the terminal.
    Although bash scripts don’t need any particular extension to function, they usually have the .sh extension. Many Linux users need clarification about the proper file extension...
    Go to post

  • How to Make Bash Script Executable

    How to Make Bash Script Executable

    Bash scripts are an essential part of the Linux system, but they are not like other files because scripts need executable permissions. These permissions help a script execute commands and make changes accordingly. 
    Hence, you must provide the executable permissions to run them from the command line. However, as a beginner, many users don’t know the commands to make the bash file executable. So, this blog has every possible method to make the bash script executable. 
    Chmod Command

    ...
    Go to post
There are no articles in this category.
 
  • Filter
  • Time
  • Show
Clear All
new posts
Please log in to your account to view your subscribed posts.

Categories

Collapse

Article Tags

Collapse

There are no tags yet.

Latest Articles

Collapse

  • What is Shebang: Bash Script Header on First Line?
    by Kasimba
    As Linux enthusiasts, we all come across bash scripting as an essential part of the Linux system. However, many Linux users don’t know why the first line of the bash script contains #!. So this combination of # and ! is called shebang or shebang.
    Although shebang looks like a bash script header, it initially instructs the system about interpreters to execute the script. This concept feels a bit complicated, but that’s not true, as this guide is all about the shebang: bash script header....
    Yesterday, 07:59 PM
  • Bash Script Loops Examples
    by Kasimba
    A loop in programming is a control structure that allows a specific code to be executed repeatedly until a condition is met. This process is repeated until no further action is required. Loop allows you to repeat the desired set of instructions numerous times to attain the desired outcome. These recursions can be useful for all tasks that require repetitive operations or when working with data collections.
    In this article, we will explore the meaning, types, and examples of loops, further...
    Yesterday, 07:59 PM
  • How to Install NVIDIA GPU Driver on Fedora 40+ KDE 6 Spin on Wayland
    by Kasimba
    Installing the NVIDIA GPU driver is the first thing you will want to do after installing Fedora 40 on your computer. Fedora 40 comes with different spins (desktop environments) and the latest software. Wayland display server (which will replace the X11/Xorg display server completely one day) is the default on some of the Fedora 40 spins. One of the most awaited Fedora 40 spin is the KDE spin. Fedora 40 KDE spin comes with the KDE Plasma 6 desktop environment which supports only the Wayland display...
    Yesterday, 07:59 PM
  • How to SSH Into Docker Container
    by Kasimba
    Administrators commonly use SSH to access and operate remote servers and devices, including a Docker container. When you connect to any device using SSH, you can run commands, access its files, and perform multiple other tasks. You can also use the Docker container as a hypervisor image that can run applications. For example, a software developer can create a Docker container image to package the software.

    Hence, a Docker container image package software with all the dependencies and...
    Yesterday, 01:12 PM
  • How to SSH Into EC2 Instance
    by Kasimba
    EC2 is a service provided by Amazon Web Services (AWS) that lets you rent virtual servers (known as instances). In these instances, you can leverage virtual machines to develop, test, deploy, and manage computer applications.

    SSH is an incredible utility for accessing and managing Amazon Elastic Compute Cloud (EC2) instances. With SSH, you can operate a remote device, access data, execute commands, troubleshoot issues, and more. Although you can easily SSH into an EC2 instance, many...
    Yesterday, 01:12 PM
  • How to Tunnel Web Traffic Through SSH for Secure Browsing
    by Kasimba
    Nowadays, an uncountable number of cyber attacks, scams, and data theft occur every single day. This makes it necessary for users to look for ways to secure their data. After all, it is better to take precautions than to experience a guilt trip. Fortunately, SSH offers tunneling, which channels internet traffic to your local system via a remote system.

    Meanwhile, this transmission encrypts incoming and outgoing network traffic on your local Linux device, ensuring the system’s security....
    Yesterday, 05:01 AM
Working...
X