Showing headlines posted by linuxer

« Previous ( 1 ... 8 9 10 11 12 13 14 15 16 17 18 ... 35 ) Next »

Introduction to Proxmox backup server

  • linuxconfig.org; By Egidio Docile (Posted by linuxer on Jan 28, 2024 10:39 PM CST)
  • Story Type: Tutorial; Groups: Linux
Proxmox backup server is a free and open source, enterprise-level backup solution. It is implemented as a dedicated Linux distribution based on Debian, and supports essential features like deduplication and encryption. We can use it as a solution to back up and restore virtual machines, containers and physical hosts. In this first tutorial dedicated to Proxmox, we learn how to download and install the server distribution, and how to access its web interface.

Installing VirtualBox Guest Additions on Ubuntu 24.04

VirtualBox Guest Additions are a collection of device drivers and system applications designed to achieve closer integration between the host and guest operating systems. They help to enhance the interactive performance of guest systems, including improved video, mouse, and shared folder support. This tutorial focuses on installing Guest Additions on Ubuntu 24.04, providing detailed steps and insights into each part of the process.

How to Disable IPv6 on Ubuntu 24.04

Ubuntu 24.04, like its predecessors, supports IPv6 by default. However, there are times when you might need to disable IPv6, whether for compatibility reasons, testing purposes, or specific network requirements. This comprehensive guide will walk you through the steps to check if IPv6 is enabled on your system, how to disable it, and how to verify that it has been disabled.

Ubuntu 24.04 Firewall: A Quick Guide

Understanding and managing the firewall on your Ubuntu 24.04 system is crucial for ensuring the security and efficiency of your network. A firewall acts as a gatekeeper, controlling inbound and outbound traffic based on predetermined security rules. Ubuntu 24.04 comes equipped with ‘ufw’ (Uncomplicated Firewall), a user-friendly interface for managing iptables, the default firewall tool on Linux. Whether you’re a seasoned system administrator or a curious user, this guide will walk you through the essentials of using the ufw firewall, including installation, configuration, testing, and more.

Creating and Managing Python Virtual Environments with virtualenv on Ubuntu/Debian

Managing Python projects can often lead to conflicts between dependencies and differing versions of packages. This is where virtualenv comes into play. Virtualenv is a tool that allows users to create isolated Python environments, ensuring that each project has its own dependencies and packages, independent of others. This tutorial will guide you through the steps to virtualenv create environment on Ubuntu/Debian Linux systems, providing a clean and controlled workspace for your Python projects.

How to Install pip on Ubuntu 24.04

Installing pip, the Python package manager, on Ubuntu 24.04 is an essential step for Python developers and enthusiasts. This powerful tool simplifies the process of installing and managing Python packages and dependencies. Ubuntu 24.04, being a popular choice for developers, provides a straightforward way to install pip. In this article, we’ll guide you through the process, ensuring you have pip up and running efficiently on your Ubuntu system.

Setting Up a Secure Apache Server on Ubuntu 24.04

In this comprehensive guide, we will walk you through the process of setting up a secure Apache server on Ubuntu 24.04. Whether you are setting up a personal website or a business platform, following these steps will ensure that your server is not only functional but also secure.

Installing Anaconda on Ubuntu 24.04

Anaconda is an essential tool for data scientists and developers working in Python and R. It simplifies package management and deployment, offering a collection of over 1500 data science packages. This guide provides detailed steps to install Anaconda on Ubuntu 24.04, including setting up environments and basic usage.

Reviving Retro Games: Using Raspberry Pi for Emulation

While a Raspberry Pi can serve many purposes, one role that it fills surprisingly well is that of a retro gaming console. The idea is to load up the Raspberry Pi with as many emulators and ROMs as possible, and then you have a portable, HDMI capable gaming machine in the palm of your hand. Plug it into any monitor or TV, and use your keyboard and mouse, or even USB or Bluetooth controller to play some retro titles.

How to Install and Secure MariaDB on Ubuntu 24.04

MariaDB is a popular, open-source relational database management system, widely recognized as a drop-in replacement for MySQL. It offers robust performance, strong security features, and a flexible structure, making it suitable for a variety of applications. In this tutorial, we’ll walk through the process of installing MariaDB on Ubuntu 24.04, a recent and stable release of one of the most popular Linux distributions. Whether you’re setting up a web server, a cloud application, or just experimenting with database management, this guide will help you get MariaDB up and running on your Ubuntu system.

FFMPEG Script to Convert Multiple Files in Linux

When working with media files, it’s common to find yourself needing to batch convert multiple files. This is particularly true in fields like video editing, audio processing, or even when simply organizing your media library. The powerful tool at the heart of such tasks is often FFMPEG, a versatile, open-source software that can handle almost all video and audio formats. Understanding how to harness FFMPEG through shell scripting can significantly speed up your workflow.

Quick Docker Installation on Ubuntu 24.04

Welcome to this comprehensive guide on installing Docker on Ubuntu 24.04. Docker is an open-source platform that enables developers to build, deploy, and manage applications inside containers. This tutorial is designed to provide step-by-step instructions for beginners and professionals alike to set up Docker on their Ubuntu systems efficiently.

Enhancing Productivity with KDE Plasma: Top 20 Shortcuts

  • linuxconfig.org; By Lubos Rendek (Posted by linuxer on Jan 18, 2024 2:51 AM CST)
  • Story Type: Tutorial; Groups: KDE, Linux
KDE Plasma is a dynamic and powerful desktop environment known for its flexibility and visual appeal. As part of the KDE community’s suite of software, Plasma stands out for its modern design, configurability, and seamless integration with a wide range of applications. Whether you’re a seasoned Linux user or new to the platform, these 20 keyboard shortcuts are invaluable for navigating and managing the KDE Plasma environment efficiently.

Recording Browser Audio on Linux with ffmpeg

  • linuxconfig.org; By Lubos Rendek (Posted by linuxer on Jan 17, 2024 4:08 AM CST)
  • Story Type: Tutorial; Groups: KDE, Linux
Recording audio from your browser or other applications on Linux can be efficiently done using the command-line tool ‘ffmpeg’. This guide specifically caters to Debian Linux users with KDE Plasma, focusing on capturing audio directly from the system’s output. Whether it’s for recording streaming audio, webinars, or other digital content, this tutorial will guide you through the necessary steps.

Bash Scripting: How to Zip All Files in a Directory

In the world of Linux and Unix-like systems, bash scripting is a powerful tool for automating repetitive tasks, such as file compression. Zipping files using a bash script can significantly streamline your workflow, especially when dealing with routine backups, file transfers, or batch processing. This article will guide you through creating simple yet effective bash scripts to zip files and directories, incorporating arguments to make your script more versatile and adaptable to different situations.

Bash Scripting: Mastering Arithmetic Operations

Arithmetic operations are a fundamental aspect of bash scripting, enabling scripts to perform calculations, automate tasks, and make decisions based on numerical data. Bash provides a variety of methods for performing arithmetic operations, from simple addition and subtraction to more complex calculations like floating-point operations and handling scientific numbers. This tutorial will guide you through different techniques and provide practical examples to enhance your bash scripting skills.

String Concatenation in Bash Loops

  • linuxconfig.org; By Lubos Rendek (Posted by linuxer on Jan 10, 2024 5:15 AM CST)
  • Story Type: Tutorial; Groups: Linux
String concatenation in bash scripting is a fundamental concept that is essential for scriptwriters, ranging from beginners to advanced users. It involves combining two or more strings into a single string. Bash, being a powerful scripting language, offers various ways to perform string concatenation, especially within loops. This technique is particularly useful in scenarios where you need to construct a string dynamically during the execution of your script.

Mastering String Concatenation in Bash Scripting

String concatenation is a fundamental aspect of Bash scripting, allowing the combination of string literals, variables, and command outputs to form more complex strings. This capability is especially useful in loops, where dynamic string creation is often required. Whether you’re a beginner or an advanced user, understanding how to effectively concatenate strings in Bash is a valuable skill.

How to install KeePassXC on Linux

  • linuxconfig.org; By Egidio Docile (Posted by linuxer on Jan 6, 2024 11:00 PM CST)
  • Story Type: Tutorial; Groups: Linux
KeePassXC is a free and open source application we can use to safely manage our passwords and sensitive data. It can store usernames, passwords, URLs, and even file attachments. Data is encrypted and stored locally, in a “kdbx” file: this is the ideal solution if we don’t want to store sensitive information in the cloud. In this tutorial we learn how to install KeePassXC on Linux, as a native package or by using cross-distribution methods such as Flatpak, Snap or AppImage.

Decoding Raspberry Pi: Which OS to Choose?

Users have many choices when it comes to operating systems for the Raspberry Pi. This was not always the case, like when the Raspberry Pi premiered over a decade ago, support for the device was quite limited. These days, many different Linux distributions have added support for ARM devices like the Raspberry Pi, and there are even a good number of Linux distributions that have been developed specifically for use on the Raspberry Pi.

« Previous ( 1 ... 8 9 10 11 12 13 14 15 16 17 18 ... 35 ) Next »