Skip to main content

Posts

Upgrade Mageia5 to Mageia6

Back in the early days of Linux, the changes to the operating system were so dramatic that even when updating withing the same distro, in-place point release updates were problematic enough and it was always recommended that a major version release be done from scratch. There were just too many major changes to the underlying subsystems and package naming conventions. Doing an in-place update was just asking for trouble. Modern distros have matured quite a bit even though there are occasionally some major subsystem changes being made. Yet it's never been easier to do an in-place major version upgrade. I just did the upgrade on several Mageia5 systems and the results were consistent and satisfactory, not to mention simple. Step 0. Always backup critical information. Have a Mageia5 recovery disc on hand. Read the Release Notes , the Documentation and the Errata for Mageia 6. Other than updated applications, the biggest changes are support for UEFI and the move to GRUB2....

Here's the Linux Fix to disable WPAD ATTACKS

Do you use the internet? This Linux flaw could open you up to attack . Study Highlights Serious Security Threat to Many Internet Users "RIVERSIDE, Calif. (www.ucr.edu) — Researchers at the University of California, Riverside have identified a weakness in the Transmission Control Protocol (TCP) of all Linux operating systems since late 2012 that enables attackers to hijack users’ internet communications completely remotely." tl;dr The FIX Edit /etc/sysctl.conf to include this line: net.ipv4.tcp_challenge_ack_limit = 999999999 Then execute this command as root to apply the fix. # sysctl -p If you need the Windows Fix: How to Turn Off (Disable) Web Proxy Auto Discovery (WPAD) in Windows Server 2008 R2

Bootable USB device for Mageia 5

If you Google "create a bootable USB drive in Linux" most of the returns you get will tell you to use Rufus for Windows or for Linux. The problem is that Mageia no longer provides unetbootin and instead provides their own tool, IsoDumper . Still in development, IsoDumper can only save a disk image of the existing files, write an image file to the USB device, or format the USB device with a FAT, NTFS or EXT filesystem. It would be nice if Mageia provided a bootable FreeDOS image for you so that you could easily do BIOS and firmware updates since Linux has yet to produce a usable tool for that. It's always good to know how to do that from the command line if the GUI tools are not available, so that's what we will do. FREEDOS You can get a USB image containing FreeDOS from this site . There are three different images depending on the size of your USB stick. Mine is 2GB, so I could choose either of the first two. I chose the second image. NOTE: That site ...

Adding a Spellchecker to Leafpad

Leafpad is the text editor for the LXDE desktop environment. It does well for editing basic text files, but it lacks a spellchecker. This is a hack to use the default-installed Hunspell to spell-check your text file. To accomplish this, you need to save the text file, open it in Hunspell, close Hunspell and re-open the document in Leafpad. This is accomplished by a script added to your .bashrc. I found this script in a recent Knoppix thread . Add this to .bashrc: lpad() { # uses leafpad to edit $1; on closing leafpad, # # # hunspell checks  spelling;  #on closing hunspell, leafpad shows corrected copy. leafpad $1; aspell $1; leafpad $1 & } NOTE: You can also use this with ispell, but you'll need to invoke "ispell  -c". NOTE: I found the command line at the bottom of Hunspell to be misleading. For example, it says that pressing "I" is "Insert". It actually means "Accept  the  word,  capitalized as it is in the file, and ...

Using a Blocklist File With Iptables

I read an interesting piece about securing servers written by Greg Bledsoe in LinuxJournal . I thought I would try it out and it turns out that it needed a few massages to make it run on my Mageia5 system. There are two parts to his approach, a short script that runs as rc.local , which file does not exist in Mageia, but will be properly run if you create it in /etc/rc.d/rc.local . #!/bin/sh #/etc/rc.d/rc.local #REF: http://www.linuxjournal.com/content/server-hardening?page=0,2 #create iptables blocklist rule and ipset hash /usr/sbin/ipset create blocklist hash:net /usr/sbin/iptables -I INPUT 1 -m set --match-set blocklist  ↪src -j DROP This file owner should be root with 700 permissions. Once you create it, you should execute it manually because that needs to be done before you run the script to collect the blocklists. I put the blocklist collection script in /usr/local/bin . You will need to create the directory /usr/local/bin/tmp because the script wa...

Creating a chroot Environment for Mageia

Creating CHROOT Environment Mageia documents (link below) tell us how to set up a chroot environment in their Wiki . We'll set up both a 32-bit and a 64-bit environment for the current release as well as the development branch, Cauldron, and eventually use them with schroot, a tool that makes managing chrooted environments much, much easier. To summarize the steps to create a chroot using urpmi as follows: Create a Mount Point To create the mountpoint for the chroot environment for either or both 32- and 64-bit environments as well as Cauldron: # mkdir -p /mnt/chroot/mageia32 # mkdir -p /mnr/chroot/mageia64 # mkdir -p /mnt/chroot/cauldron32 # mkdir -p /mnt/chroot/cauldron64 Mageia can use either package set with your native urpmi application to install packages in the chrooted environment. 32-bit chroot For the 32-bit environment: Add the repositories. $ sudo urpmi.addmedia --distrib --urpmi-root /mnt/chroot/mageia32  --mirrorlist 'http://mirrors.mageia.o...

Installing and Configuring a Mediawiki wiki on Mageia5

I started a MediaWiki wiki for my hobby, to serve as a convenient place to collect and centralize all the bits of information that I find scattered about the internet. Creating such a wiki can be a daunting task, but if broken down into small tasks, it can be done. The most difficulty I had was that there were no specific instructions for Mageia. The best general instructions I could find were from the Mediawiki site, but were  for Ubuntu . Mageia configures its default configurations slightly different. I chose to tun the wiki and its associated webserver and database in a virtual machinate using VirtualBox, so we can tackle that first assuming that you already know how install and configure VirtualBox. Installing A Minimal Mageia Base During the installation, deselect all the pre-configured options, but do select the option to select individual packages. You will select a minimal install with no X11 or documentation, but with urpmi . The remaining installation is ...