Alerts This Week
Warning Icon 1 677
Alerts This Week
Warning Icon 1 677

Stay Ahead With Linux Security HOWTOs

Filter Icon Refine HOWTOs
X Clear Filters
X Clear Filters
View More

Get the latest News and Insights

Get the latest Linux and open source security news straight to your inbox.

Community Poll

What got you started with Linux?

No answer selected. Please try again.
Please select either existing option or enter your own, however not both.
Please select minimum {0} answer(s).
Please select maximum {0} answer(s).
/main-polls/150-what-got-you-started-with-linux?task=poll.vote&format=json
150
radio
0
[{"id":483,"title":"Self-taught through trial and error","votes":545,"type":"x","order":1,"pct":78.42,"resources":[]},{"id":484,"title":"Formal training or courses","votes":30,"type":"x","order":2,"pct":4.32,"resources":[]},{"id":485,"title":"A job that required it","votes":34,"type":"x","order":3,"pct":4.89,"resources":[]},{"id":486,"title":"Other","votes":86,"type":"x","order":4,"pct":12.37,"resources":[]}] ["#ff5b00","#4ac0f2","#b80028","#eef66c","#60bb22","#b96a9a","#62c2cc"] ["rgba(255,91,0,0.7)","rgba(74,192,242,0.7)","rgba(184,0,40,0.7)","rgba(238,246,108,0.7)","rgba(96,187,34,0.7)","rgba(185,106,154,0.7)","rgba(98,194,204,0.7)"] 350
bottom 200
Loading...

Explore Latest Linux Security HOWTOs

We found 2 articles for you...
166

Mastering Sudo: Installation and Permission Configuration for Linux

The tutorial linked below will walk you through the basic commands of sudo. The sudo command allows a user to run a command either as the superuser or as another user. This is determined by the security policies in the sudoers files. . We will explore the basic installation and usage of sudo and the configuration of detailed permissions via the sudoers files. This ensures both flexibility and security for administrative operations. You will learn how to set up access for users and groups. You will also customize the command execution environment and implement security measures that log or restrict usage. Understanding these configurations will allow you to manage your system's privileges effectively, protecting it from unauthorized changes and facilitating administrative tasks. . The Sudo Command is essential for Linux system management, allowing command execution with elevated privileges. Explore its installation, usage, and secure permission configuration. Sudo Command Examples, User Permissions Linux, Sudo Configuration Guide, Linux Admin Tools. . Brittany Day

Calendar 2 May 21, 2024 User Avatar Brittany Day How to Learn Tips and Tricks
166

Manage Multiple Servers Efficiently With SSH Command Execution

"You don't always need third-party software to control multiple Linux servers — not when a bit of scripting magic can get the job done." . Linux offers various ways to reach the same destination. This is part of its strength: You decide how you want to get from A to B. Imagine it as "Mad Libs," the operating system equivalent. Consider, for example, the ability of remote machines to execute commands. Many options exist, such as Red Hat, Ansible, and Puppet, which are amazing platforms but might be overkill for what you need. Imagine you have to manage a workstation and five or ten servers. You can use the workstation to Secure Shell each server and run the necessary commands. Then, you can exit the server and rinse and repeat. This can be time-consuming and lead to issues. Imagine running the wrong command on the wrong machine. You do not want to experience that. This handy SSH tip will make your life easier! Let's look at how to run a single command across multiple servers with SSH. . Optimize your server oversight by utilizing SSH to execute commands across various Linux servers at the same time.. Linux Automation, SSH Command Execution, Server Management Tips. . Brittany Day

Calendar 2 Mar 23, 2024 User Avatar Brittany Day How to Learn Tips and Tricks
166

Analyzing Sudo Command Usage for Enhanced Security in Linux

The sudo command gives a user superuser or root powers. No doubt you gave them the “with great power comes great responsibility” speech. Here’s how to check if they listened or not. . The sudo command stands for “substitute user do.” It lets an authorized person execute a command as though they were another user. It can take command line parameters, one of which is the name of the user you wish to have the command executed as. The most common way sudo is used is to omit the command line options and use the default action. This effectively executes the command as the root user. To use sudo in this way requires special permission. Only the privileged can use sudo . When you install a modern Linux distribution, you’re prompted to set up a root password that you can use with sudo . Permission to do so is granted to the regular user that you create during installation. This is the preferred way to handle access to the capabilities of the root user. The old way was to create a root user and log in as them in order to administer your system. The link for this article located at How-To Geek is no longer available. . The su command empowers permitted users to run operations as a different user, bolstering system safety and administration.. Sudo Command, Enhanced Security, User Permissions, Command Management, Linux Best Practices. . Brittany Day

Calendar 2 Sep 30, 2022 User Avatar Brittany Day How to Learn Tips and Tricks
166

Understanding SSH for Remote Access on Linux Servers and Its Benefits

At some point, you might find yourself needing to remote into a Linux machine. When that eventuality occurs, you'll need SSH. This article introduces you to this handy Linux command. . If you ever have to do any remote administration, at some point you're going to have to log into a Linux server and get to work. To do that, you're going to need to use SSH (aka Secure Shell). For those that have never been exposed to such a tool, you're in for a treat. SSH is a secure means of logging into a remote machine. Once logged in, you can run any command you need to work with the server. Before you think that using SSH is difficult, fret not. Using SSH is not only fairly easy, but it's also really quite powerful. . Master the basics of SSH to enable secure remote control and command execution on Linux machines.. Secure Shell, Remote Access, Linux Administration, SSH Command, Remote Management. . Brittany Day

Calendar 2 Apr 21, 2022 User Avatar Brittany Day How to Learn Tips and Tricks
166

Effective Command Execution Tools for Multiple Linux Servers

In this article, we will show how to run commands on multiple Linux servers at the same time. We will explain how to use some of the widely known tools designed to execute repetitive series of commands on multiple servers simultaneously.. This guide is useful for system administrators who usually have to check the health of multiple Linux servers everyday. For the purpose of this article, we assume that you already have SSH setup to access all your servers and secondly, when accessing multiple servers simultaneously, it is appropriate to set up key-based password-less SSH on all of your Linux servers. This above all enhances server security and also enables ease of access. The link for this article located at Linux.com is no longer available. . This guide is useful for system administrators who usually have to check the health of multiple Linu. article, commands, linux, servers. . Brittany Day

Calendar 2 Oct 17, 2018 User Avatar Brittany Day How to Learn Tips and Tricks
166

In-Depth Analysis Of Sudo's Features And Security Concerns

This documentation discusses the features and security concerns of Sudo (superuser do). Sudo allows a system administrator to give certain users (or groups of users) the ability to run some (or all) commands as root or another user while logging the. . Sudo is an essential utility that allows secure delegation of user privileges, enabling command execution with a full audit trail for accountability and efficiency. Sudo Security Features, User Permissions, System Administration. . Anthony Pell

Calendar 2 Nov 29, 2004 User Avatar Anthony Pell How to Learn Tips and Tricks
167

Secure Passwordless SSH Setup for Remote Command Execution

Many of my past newsletters have detailed configuration setups that required you to be able to execute commands on remote machines without interactively supplying a password. The next few articles will help show how you can set up such a system.. . Master the art of enabling secure password-free SSH logins for fluid remote connections. Get your setup ready now!. Passwordless Login, SSH Configuration, Secure Remote Access. . Anthony Pell

Calendar 2 Nov 23, 2004 User Avatar Anthony Pell How to Secure My Network
News Add Esm H240

Get the latest News and Insights

Get the latest Linux and open source security news straight to your inbox.

Community Poll

What got you started with Linux?

No answer selected. Please try again.
Please select either existing option or enter your own, however not both.
Please select minimum {0} answer(s).
Please select maximum {0} answer(s).
/main-polls/150-what-got-you-started-with-linux?task=poll.vote&format=json
150
radio
0
[{"id":483,"title":"Self-taught through trial and error","votes":545,"type":"x","order":1,"pct":78.42,"resources":[]},{"id":484,"title":"Formal training or courses","votes":30,"type":"x","order":2,"pct":4.32,"resources":[]},{"id":485,"title":"A job that required it","votes":34,"type":"x","order":3,"pct":4.89,"resources":[]},{"id":486,"title":"Other","votes":86,"type":"x","order":4,"pct":12.37,"resources":[]}] ["#ff5b00","#4ac0f2","#b80028","#eef66c","#60bb22","#b96a9a","#62c2cc"] ["rgba(255,91,0,0.7)","rgba(74,192,242,0.7)","rgba(184,0,40,0.7)","rgba(238,246,108,0.7)","rgba(96,187,34,0.7)","rgba(185,106,154,0.7)","rgba(98,194,204,0.7)"] 350
bottom 200
Your message here