Showing headlines posted by LinuxCareer
« Previous ( 1 2 3 4 5 6 7 8 9 10 ... 18 ) Next »How to setup printer on Manjaro Linux
Printing in Manjaro and the majority of other Linux distributions is handled through the CUPS system. After installing Manjaro Linux, setting up a printer is one of the first tasks that many users will need to tackle. In this guide, we will guide you through the process of setting up a printer on Manjaro Linux. CUPS makes the process a lot more painless than many other alternative methods, so that's what we'll be using.
How to install, configure, and use mutt with a gmail account on Linux
Email reader programs such as Thunderbird or Evolution are great, but sometimes they can feel bloated. If you found yourself working mainly from CLI, you may find useful to learn how to install and configure Mutt, a command line email client: that’s what we will do in this tutorial.
Manjaro Linux Installation
In this guide, we'll perform an installation of Manjaro Linux. Manjaro is a versatile and user friendly Linux disribution with minimal system requirements. It's quickly rising in popularity and making a name for itself in the Linux world. Now is a great time to get into it.You'll be able to follow along with the steps in this tutorial whether you are installing Manjaro onto a physical system or as a virtual machine.
Manjaro Linux vs Arch Linux
Arch Linux and Manjaro are two popular linux distributions, or distros, that have been getting more attention and gaining more users over the years. Although the two distros have a lot in common (in fact, Manjaro is an Arch Linux derivative), there are still many differences. This article will help you learn about the similarities and differences between the two, and help you decide which one to use if you are not sure.
Manjaro Linux Windows 10 dual boot
Wouldn't it be great to run Manjaro Linux on your system without having to give up Windows 10? Well, you can! As a matter of fact, you have two options for doing this. One option is to create a dual boot system, which gives you a prompt when your computer boots up, asking you which operating system you'd like to load into. The second option is to install Manjaro on a virtual machine.
Git Branching Tutorial for beginners
Branching allows git to track multiple lines of development. This essentially allows you to have multiple versions of your project in development at the same time. For example, many projects will choose to have a stable master branch while new features or bug fixes are implemented in a development or testing branch. Once the project organizers are satisfied that the changes made in the development branch have reached the required level of maturity, they may choose to merge those changes into the master branch.
How to persist data to PostgreSQL in Java
Java is perhaps the most widely used programming language nowdays. It's robustness and platform-independent nature enables Java based applications to run on mostly anything. As is the case with any application, we need to store our data in some sort of reliable way - this need called databases to life.
Git tutorial for Beginners
If you have been using GNU/Linux for any amount of time chances are pretty good that you have heard of git. You may be wondering, what exactly is git and how do I use it? Git is the brainchild of Linus Torvalds, who developed it as source code management system during his work on the Linux kernel. Since then it has been adopted by many software projects and developers due to its track record of speed and efficiency along with its ease of use. Git has also gained popularity with writers of all kinds, since it can be used to track changes in any set of files, not just code.
Python Regular Expressions with Examples
A regular expression (often abbreviated to “regex”) is a technique, and a textual pattern, which defines how one wants to search or modify a given string. Regular expressions are commonly used in Bash shell scripts and in Python code, as well as in various other programming languages.
How to restrict access to a resource using Apache on Linux
Restricting access to a resource is often required when using the web. On complex web applications, this is often implemented using a login system which can be more or less sophisticated. If our requirements our pretty basic, however, we can use the authentication system provided by the Apache web server. In this tutorial we will see how can we do it.
Best Terminal Games on Linux
GNU/Linux gaming has come a long way over the past decade. We are lucky to live in an age where there are a number of native linux games including AAA titles to choose from on the platform. Steam has also vastly increased the number of games available on Linux. Despite the vast availability of GUI based games, sometimes it can be more relaxing and entertaining to play terminal based ones. This is not so surprising considering the fact that most Linux users spend a lot of time on the command line and feel at home there. Luckily, there are a number of great terminal based games available on the platform as well.
How to use Apache to redirect all traffic from http to https
If your website uses Apache and SSL, there's not much reason to keep using HTTP with your website. Having both HTTP and HTTPS just creates duplicate content, as now any given page will be accessible through two technically different URLs.
How to make the most of OpenSSH
OpenSSH is a network connectivity and remote login tool that securely encrypts all traffic, originally developed by OpenBSD developers for use in their operating system. Considering the OpenBSD developers’ primary focus on security, it is no surprise that OpenSSH quickly became the standard remote login implementation for all Linux and Unix operating systems. OpenSSH uses a client server model with the ssh command providing client functionality and sshd providing server functionality.
How to benchmark Disk performance on Linux
Just bought the latest and greatest - and especially fastest - SDD? Or upgraded your phone's microSD memory card? Before you start using your shiny new hardware, you may want to run a performance check against the drive. Is the write and read speed up to manufacturer's specifications? How does your performance compare with that of others? Is that 1TB flash drive you bought on an auction site from China really as fast as the listing said it was? Let us find out!
Manjaro Linux Beginner's Guide
Manjaro is an up and coming Linux distribution that has recently overtaken some of the most popular and battle scarred distributions like Ubuntu, Fedora, Mint, and others (at least according to DistroWatch). Once you've decided to download Manjaro and see what all the rage is about, we've got you covered in this beginner's guide, which will provide you with an introduction to the operating system and show you the first things to do once you've booted into Manjaro. If you're just looking to give Manjaro a test run, you can always install Manjaro in a virtual machine or create a dual boot system.
apt vs apt-get - Advanced Package Tool
If you've ever used Debian Linux or one of the many Linux distributions that were derived from it, such as Ubuntu, you may have seen the apt and apt-get commands sprinkled throughout the distro's documentation. At surface level, these commands seem interchangeable, and a lot of documentation or online guides throw them around as if they are. However, there are some key differences between the two...... In this guide, we'll explain the differences and give some examples for both commands. Read on to learn about the specific uses for each command and which one is better for you to use.
GNU/Linux General Troubleshooting Guide for Beginners
In this guide, our goal is to learn about the tools and environment provided by a typical GNU/Linux system to be able to start troubleshooting even on an unknown machine. To do so, we will go through two simple example issues: we will solve a desktop and server side problem.
How to create incremental backups using rsync on Linux
In previous articles, we already talked about how we can perform local and remote backups using rsync and how to setup the rsync daemon. In this tutorial we will learn a very useful technique we can use to perform incremental backups, and schedule them using the good old cron.
Formatting SD or USB disk under Linux
In this guide, we go through the steps to format an SD or USB disk in Linux. This can be done via GUI or command line, and we'll cover the process for both. The guide will be applicable regardless of what Linux distribution you've decided to use, especially the command line method.
Introduction to the Systemd journal
Systemd is nowadays the init system adopted by almost all Linux distributions, from Red Hat Enterprise Linux to Debian and Ubuntu. One of the things that made Systemd the target of a lot of critics is that it tries to be a lot more than a simple init system and tries to re-invent some Linux subsystems.