Showing headlines posted by linuxer

« Previous ( 1 ... 16 17 18 19 20 21 22 23 24 25 26 ... 35 ) Next »

How to Install Lutris on Debian 10 Buster

If you plan on gaming on Debian, you're going to want Lutris. It's taken the cumbersome process of installing and playing games with Wine and automated everything to a point that makes everything nearly as easy as on Windows. Lutris is available from the developers through a Debian repository, so all you need to do is add it to your system to get started.

How to compile vanilla Linux kernel from source on Fedora

The kernel is the most important component of an operating system: among the other things, it provides support for different types of hardware and manages resource allocations. Linux is a monolithic kernel: although its functionalities can be included statically or built and loaded as separate modules, it always runs as a "single piece" in the same address space. In this tutorial we will see how to download, compile and install a vanilla Linux kernel.

How to configure network interface bonding on RHEL 8 Linux

Network interface bonding consists in the aggregation of two or more physical network interfaces, called slaves, under one logical interface called master or bond interface. Depending on the bonding mode, such setup can be useful to achieve fault tolerance and/or load balancing. In this tutorial we will learn what the available bonding modes are and how to create a network bonding on Red Hat Enterprise Linux 8.

Building a Raspberry PI Cluster - Part IV: Monitoring

Having a cluster built out of Raspberry Pi's is not only fun but also eases your work. As we discussed in our latest article in the series you can use the cluster to compile software or make it gather data from various sources on the Internet. There are many uses for such a thing. However, after compiling for an hour straight you might get curious as of how your nodes perform. How they work under load, if they're not under-powered or if the CPU temperature is not rising above desired levels.

How to Install the Latest AMD Drivers on Debian 10 Buster

Even though the AMD drivers are open source, they still depend on closed binary firmware. Therefore, AMD drivers won't work by default on a Debian system. Installing them is fairly simple, though, and so is installing key software like Vulkan.

How to install DNS server on RHEL 8 Linux

  • https://linuxconfig.org/install-dns-server-on-redhat-8; By Fabrizio Pani (Posted by linuxer on May 22, 2019 8:21 PM CST)
  • Story Type: Tutorial; Groups: Linux, Red Hat
This guide will show how to install and configure a DNS Server in RHEL-8 in caching mode only or as single DNS Server, no master-slave configuration. A reverse and forward zone example is provided.

How to Install the Deb-Multimedia Repository With VLC, Kodi, and FFmpeg on Debian 10 Buster

The deb-multimedia repository is an excellent way to get the latest multimedia software on any Debian release. As an added bonus, it comes with a lot more programs that aren't available in the default repositories. In case you were wondering about stability, the repo is owned and maintained by a Debian developer, so everything is stable and compatible.

How to install Minecraft server on RHEL 8 Linux

  • https://linuxconfig.org/install-minecraft-server-on-redhat-8; By Razvan T. Coloja (Posted by linuxer on May 21, 2019 2:24 AM CST)
  • Story Type: Tutorial; Groups: Games, Linux, Red Hat
Minecraft is still a popular game these days. The simplicity of its graphics had an appeal on gamers of all ages and there are many hundreds of thousands of players worldwide, most of them playing on online servers. But did you know you can create your own Minecraft server using RedHat Enterprise Linux 8? Here is a how to teaching you exactly how to do it.

Building a Raspberry PI Cluster - Part III: Simultaneous Node Management

Here is out third article in the Building a Raspberry Pi Cluster series. We will talk about what software we can use to make all the cluster nodes respond to your commands all at once, so that you can install whatever you wish and do it only once for ll of the cluster nodes instead of configuring them one by one as separate entities. Such software greatly eases your work and reduces the time needed to perform operations. It does not matter if you have four, eight or fifty nodes to work with you can make them all do the same thing at the same time.

How to Install RPCS3 Emulator and Play PS3 Games on Linux

  • linuxconfig.org; By Nick Congleton (Posted by linuxer on May 17, 2019 10:14 AM CST)
  • Story Type: Tutorial; Groups: Games, Linux
The PS3 was a great console, and it was home to plenty of awesome games. Keeping an old one around now might seem a little cumbersome. Thankfully, you can play your PS3 games on Linux with the RPCS3 emulator. This guide will walk you through the process of getting set up. Before you continue, please note that RPCS3 is still in Alpha. Expect bugs. That said, you'll still find plenty of games are playable.

How to install deb file in RHEL 8 Linux

There may come a time when that package you want to install in RedHat Linux 8.0 is simply not available as a RPM file. The alternative is to download the source and compile it yourself, or - alternatively - generate a RPM file from that source code later on.

But there is another way. Given the fact that Debian-based distributions have way more users than RPM-based ones, the number of available packages in their repositories is greater. Chances are you will be able to find a DEB file for that package you want. Here is how to install that DEB file in RedHat Linux with the help of a small utility called alien.

How To Install RHEL 8 On VMware Workstation

  • linuxconfig.org; By Razvan T. Coloja (Posted by linuxer on May 15, 2019 8:09 PM CST)
  • Groups: Linux, Red Hat
Virtualization and emulation software is big these days. With cheaper RAM memory comes the possibility to ditch dual-booting and install several operating systems in QEMU or VMWare and use them alternatively whenever you feel like it. Since Red Hat Enterprise Linux 8.0 is fresh you might want to test it in VMWare before installing it on its own partition. So here is a guide to do just that.

How to change IP address on RHEL 8 Linux

Most IPs these days are automatically assigned through DHCP by either your ISP or your home router. But there may come a time when you wish to opt for a static IP address and you will want to change it. It may be that you are configuring a home LAN and you don't want to use DHCP or simply want a static IP address that you can access from outside your home. In this tutorial we will learn how we can change the IP address in RedHat Enterprise Linux 8.0.

How to combine the results of multiple SQL queries using the UNION statement

  • linuxconfig.org; By Egidio Docile (Posted by linuxer on Apr 29, 2019 12:02 AM CST)
  • Story Type: Tutorial; Groups: Linux, MySQL
In a previous article we talked about the various type of JOIN we can use in a MariaDB/MySQL database. This time, instead, we take a look at the UNION statement: how it works, how we can use it to combine the result of queries run on different tables, and what are its peculiarities.

How to Watch HBO Now on Linux Desktop

HBO Now allows you to stream your favorite HBO shows and movies without a cable subscription to tons of different devices. Even though HBO doesn't explicitly support it, one of those devices can be your Linux PC as well. With the right browser set up, watching HBO Now on Linux is simple.

How to perform HTTP requests with python - Part 1: The standard Library

HTTP is the protocol used by the World Wide Web, that's why being able to interact with it programmatically is essential: scraping a web page, communicating with a service APIs, or even simply downloading a file, are all tasks based on this interaction. Python makes such operations very easy: some useful functions are already provided in the standard library, and for more complex tasks it's possible (and even recommended) to use the external requests module.

Building a Raspberry PI Cluster - Part II: Operating system installation

As per our first part, you now have your cluster all assembled and ready and want to install it. Do something with it already. For this we will have to download Raspbian Stretch Lite - a Linux distribution based on Debian and made especially for the Raspberry Pi. The ”Lite” version has an image file of 1,8GB and contains only the base system.

The Lure Of Azure: Microsoft continues to expand its boundaries

Over the course of the last four years, the amount of instances where Azure was mentioned in specific open source job openings has increased five fold. What we are seeing seems to mimic what Microsoft itself is saying. In a ZDNet article published during the latter part of last year, Microsoft executives discuss the growth they have seen in instances running Linux on Azure. From 2015 to 2018, Microsoft saw the number of Azure virtual machines running Linux grow from 25% to 50%. That is a quite notable growth trajectory in a fairly short time frame.

Building a Raspberry PI Cluster - Part I: Hardware Acquisition and Assembly

Nowadays Linux runs on almost anything. You can get a cheap PC and turn it into a media station or web server or whatever else you wish at no aditional cost. Hardware is cheap also. With the advent of the Raspberry Pi and similar small computer boards one can get a fully-functional PC for the price you'd usually pay for a sixpack of beer. In this LinuxConfig series we'll not only build a Linux computer; we'll build an entire Linux cluster with four nodes and learn how to manage it so that all the nodes respond at the same time to the same commands.

How to create a Ubuntu repository server

This guide will show how to configure a local repository server based on Ubuntu Bionic, but it can be adapted to a previous version of Ubuntu or even to any distribution using Aptitude as the main package management system, like Debian or Mint. You might typically want to setup a local repository to save Internet bandwidth.

« Previous ( 1 ... 16 17 18 19 20 21 22 23 24 25 26 ... 35 ) Next »