I recently purchased some inexpensive 4GB USB drives from Amazon and right away, I ran into problems. Mageia Linux essentially mandates that you use their utility, IsoDumper, to write ISO images to USB drives. A nice feature is that if any space is left on the drive, it can format it in one of several different formats compatible with whatever OS the ISO is. For example, I installed the FreeDOS ISO and formatted the remainder of the drive as a FAT partition, perfect for including some DOS apps. However, if the ISO image is installed and is corrupted, the drive becomes "read only" and can't be overwritten on a second attempt with IsoDumper. Unfortunately, because the USB's partition table seems borked, you can't just use: $ sudo dd if=/dev/zero of=/dev/sdX bs=4096 count=1 to zero out the partition table because it returns the error message that /dev/sdX is "read-only". I had an unused drive , so I imaged it with: $ sudo dd if=/dev/sdX of=4MB_USB.img Yo...
For over a decade, I have been interested in disabling the damn CAPS LOCK key. I frequently press it accidentally and it is a continuing aggravation. Trying several methods, I found one that works and thought I would update the post and try to get the formatting correct. CAPS LOCK KILLED SUCCESS!! I stumbled upon the file /etc/default/keyboard . It reads: # KEYBOARD CONFIGURATION FILE # Consult the keyboard(5) manual page. XKBMODEL=pc105 XKBLAYOUT=us XKBVARIANT= XKBOPTIONS= BACKSPACE=guess Consulting the man page for keyboard reveals the following interesting information: KEYBOARD(5) Console-setup User's Manual NAME keyboard - keyboard configuration file DESCRIPTION The keyboard file describes the properties of the keyboard. It is read by setupcon(1) in order to configure the keyboard on the console. In Debian systems the default keyboard la...