Search results

  1. Jarret B

    QuickGUI and QuickEMU

    Over the years, I have done quite a few articles on emulators and Virtual Machines (VMs). This program is a variant that seems to do a good job. The major difference on this one is that you do not need the Operating System (OS) to install. You select which OS you want, including which version...
  2. Jarret B

    Python Series Part 7: User Input

    Getting input from the user is a necessary task for most programs. There usually needs to be some input unless the program is completely automated to perform a task. This article is not strictly on getting the information from the user, but managing that information and manipulating the input...
  3. Jarret B

    LFCS - Creating File Systems

    After you have partitions made, you will want to use those partitions to store files on it. Until a partition has a file system, it cannot store files. The File System (FS) provides an organized structure for storing files and information about the files. There are many types of File Systems...
  4. Jarret B

    Drauger OS: A Gaming OS

    Drauger OS is a gaming Ubuntu-based Operating System (OS) that has a home website of 'https://draugeros.org/'. The current version is 7.6. Strigoi. The OS is streamlined to have less clutter of unneeded apps and concentrate more on gaming. You will not find Office apps or the like. Download...
  5. Jarret B

    Run Classic DOS Games on Modern Systems with ScummVM

    ScummVM is not a DOS emulator, but it allows you to run DOS games on systems that usually do not support such games. All you need are the data files of the game. ScummVM includes each game's executable (.EXE) file. Once you add the data files, it should all work. The list of games that have...
  6. Jarret B

    Python Series Part 6: Printing Strings

    There are a few ways to print strings to help make the process a little easier. We will look at a few ways to do this task. No matter which way you choose is fine. Everyone may have a preference for a specific method. To explain, there are four methods to print strings: Unformatted with or...
  7. Jarret B

    LFCS - Partitioning Disks

    We are nearly done with the LFCS certification articles. All that is left deals with disks. Of course, this is a new area of the LFCS, so if you are using VirtualBox to work through these, you can get rid of the machines you used and start over again. Just create a machine and name it 'Server1'...
  8. Jarret B

    Installing and Using DOSBox-x on Linux

    Before Linux and even Windows, there was Disk Operating System (DOS), or more specifically Microsoft DOS (MS-DOS). DOS was an 8 and 16-bit Operating System (OS), depending on the processor it was running on, and went through various versions and even knock-offs from other companies, such as IBM...
  9. Jarret B

    Run Any Linux App on Any Distro with Distrobox

    The image does not exist. It has been changed to 'kalilinix/kali-rolling. You can use the command for 'docker' to get a listing of available images with 'docker search kali'.
  10. Jarret B

    Nintendo Switch Emulator on Linux

    There are many emulators for past consoles that are no longer current technology. This emulator is one exception, since the Nintendo Switch is still supported by the company. Of course, this program requires a decently good video card to handle the graphics. Requirements As with all programs...
  11. Jarret B

    Python Series Part 5: Functions

    Functions are a very useful thing in any programming language. A function is a block of code that you can execute over and over with no need to write the code in the program more than once. Most times, you can give the function a name and call it by the name of the function. Types of Functions...
  12. Jarret B

    LFCS - Virtual Machine Management

    Now that we can create Virtual Machines (VM) on a Linux system, we need to manage those VMs. We will cover controlling VM installation, controlling a VM, resource monitoring, snapshots and cloning a VM. Controlling a VM Install Sometimes we need to control the setup of Virtual Machines to...
  13. Jarret B

    Creating Custom Presets in HandBrake for Better Video Encoding

    HandBrake is a powerful open-source video transcoder that allows users to convert video files into a wide range of formats. While its default settings are sufficient for most basic needs, creating custom presets can significantly enhance the efficiency and quality of your video conversions. In...
  14. Jarret B

    LFCS - Creating Virtual Machines in KVM

    Now that we have installed the Kernel-based Virtual Machine (KVM), if you have not done this then see LFCS -KVM Installation, we are ready to create Virtual Machines (VM). We have three basic options to install a KVM: ISO file FTP/HTTP/PXE Command-Line Interface (CLI) We will cover these each...
  15. Jarret B

    Python Series Part 4: Flow Control

    In this article, we will discuss the methods of managing the flow of statements in a program. These methods include: If For While We will also cover two items that are used to exit these flow control items or to bypass an iteration of a loop. Continue Break If Statement An 'if' statement is...
  16. Jarret B

    Mesen on Ubuntu: Emulating and Upgrading Classic NES Games

    Mesen is a Nintendo emulator (NES Em backwards). The program emulates NES, SNES Game Boy (Color) and PC Engine ROMS. This is for Ubuntu 20.04 and above. Not only is this an emulator, but it also allows for the sprites to be updated to allow for a higher resolution of the original NES 8-bit...
  17. Jarret B

    Understanding and using the alias Command

    Back in the old days of computers, I remember running DOS 3.3. I had a folder named 'batch' that included all the 'shortcuts' to perform commands by a batch file. Of course, the 'batch' folder was in my environment variable 'PATH'. So, no matter what directory I was in, I could run one of the...
  18. Jarret B

    Rescuezilla: System Recovery Tools

    Rescuezilla is a fork of Clonezilla with more ability. You can back up and restore drive and partitions. It is also possible to clone a whole disk, including all partitions, to another disk. Rescuezilla is a Debian based distro of Linux that is an ISO and you can burn it to a USB Stick to be...
  19. Jarret B

    Python Series Part 3: Python Operators

    In the previous article, Python Basics, we hinted at arithmetic operations. These can include basic math functions, comparative features, and others. We can go over these operators to help understand these programming abilities. Arithmetic Operations As with other programming languages, we...
  20. Jarret B

    Plex Media Server

    The Plex Media Server is like a DLNA server, because it shares media from a central location. Plex requires more configuration of the media by placing them in special media folders. Using Plex gives more information about a movie, TV series, etc. The actual difference is that you need to use a...
Top