Posted: May 8th, 2015 | Author: Ken | Filed under: computing | No Comments »
If you have a linux VPS server hosted at a cloud provider you may find that you’re stuck on legacy Grub, and in some cases, may find that update-grub doesn’t properly update when a new kernel is installed. Here you’ll find two solutions, one to get Grub Legacy updating properly, and the second on how to update to Grub 2. This was personally tested on Debian, but the principles should translate to most distros.
*** WARNING: Do not attempt this if you do not have a solid understanding of Grub and the boot process for your distribution. Mangling up Grub can very easily make your system non-bootable and impossible to fix remotely unless you have access to a recovery console. ***
PART 1 -- Fixing Grub Legacy
The kernel updating issue is typically caused by Grub Legacy’s inability to realize it’s in a Xen guest environment. This can be solved by using to PvGrub to keep your /boot/grub/grub.conf updated (grub.conf is linked to /boot/grub/menu.lst).
1) Take a look in your /etc/fstab to find the root “/” partition for your VPS (if it lists a separate partition for /boot then use it instead). This will likely be something like “/dev/xvda1” or “/sda/xvda1”
2) Make a backup copy of your current /boot/grub/grub.conf
$ sudo cp /boot/grub/grub.conf /boot/grub/grub.conf.bak
3) Install PVGrub (aka. pvgrub-legacy or pv-grub-menu in Deb). This will remove the grub-legacy package but keep grub-common:
$ sudo apt-get install pv-grub-menu
4) Make sure your /etc/default/grub is configured how you want it, then run PvGrub:
$ sudo update-menu-lst
5) PvGrub should now have updated your /boot/grub/grub.conf with entries for all your kernels, with a structure similar to the example below. Verify that the “root” line lists the root (or boot) partition from step 1. Also verify that the UUID listed in the “kernel” line matches the UUID for your root “/” partition (use “ls -al /dev/disk/by-uuid/” to list UUIDs). Finally, make sure the “default” line lists the kernel you want to boot.
title Debian GNU/Linux, kernel 3.2.0-4-amd64
root (hostdisk//dev/xvda1)
kernel /boot/vmlinuz-3.2.0-4-amd64 root=UUID=5d83xx6a-7ed6-422a-8579-70a4a6eb3bb3 ro
initrd /boot/initrd.img-3.2.0-4-amd64
6) Reboot and confirm you’re running the new kernel (uname -a).
7) If the system won’t reboot then use the recovery console provided by your host to log-in as root, manually mount your root (or boot) filesystem and copy your backup grub.conf back over the new one (or try to fix the errors in the new one).
Additional Resources:
Installing PvGrub on other distros (Arch, Cent, Fedora Gentoo, etc) by Rackspace
PvGrub on Amazon EC2 instances
PART 2 -- Upgrading to Grub 2 (aka. PvGrub 2, aka. Grub 2 Xen)
If, and only if, you have a fully working Grub Legacy that’s booting nicely, then you can proceed to upgrade to Grub 2. The kicker here is that in most cloud VPS environments, you cannot actually overwrite the existing Grub Legacy in the MBR/partition boot sector, so the approach here is to do a one-time tweak of the Grub Legacy install to chainload Grub 2. Once completed, the Grub Legacy config will remain static and all future kernel updates will be maintained using Grub 2 in the normal fashion (i.e. update-grub).
*** WARNING: This has been tested on Debian 8.0 (Jessie), which includes new grub-xen packages (Grub 2 started including Xen support with 2.02~beta2). I do not believe the “grub-xen” package is available in prior releases. ***
1) Again, make a backup copy of your currently working /boot/grub/grub.conf and /etc/default/grub files.
2) Remove any current grub packages installed on the system (this will only remove the packages, not the existing grub binaries in the boot sector):
apt-get remove pv-grub-menu grub-common grub-legacy grub-pc grub2 grub2-common
3) Install Grub Xen package (Not grub-xen-host!)
apt-get install grub-xen
4) Double check that it installed fully (should have been automagically by APT, but just in case):
$ sudo grub-install --target=x86_64-xen
or if appropriate:
$ sudo grub-install --target=i386-xen
Ignore the junk warnings as long as you see “No error reported”.
Installing for x86_64-xen platform.
grub-install: warning: no hints available for your platform. Expect reduced performance.
grub-install: warning: WARNING: no platform-specific install was performed.
Installation finished. No error reported.
5) You should now have a file /boot/xen/pvboot-x86_64.elf (or pvboot-i386.elf)
6) Configure /etc/default/grub with your preferred settings, then run:
$ sudo update-grub
7) Verify that the Grub 2 config file (/boot/grub/grub.cfg, not grub.conf !!) was updated with your kernels and all looks in order (e.g. root partitions, etc).
8) Now setup Grub Legacy to chainload Grub 2. Edit /etc/grub/grub.conf (menu.lst). Set “default 0” and “timeout 1”, then add the following as the first entry in the kernels list (you may want to leave the other kernel entries as backup while testing). Make sure to adjust the “root” and “kernel” path as appropriate.
title Chainload Grub 2
root (hostdisk//dev/xvda1)
kernel /boot/xen/pvboot-x86_64.elf
9) If you had “GRUB_DEFAULT=saved” in your /etc/default/grub then remember to run grub-set-default before rebooting. If you make any more changes to /etc/default/grub or the /etc/grub.d/ files, then re-run update-grub.
10) Reboot!
11) If everything has gone according to plan then your Grub Legacy config never needs touched again. If your VPS host actually supports direct loading of Grub 2 (currently rare), then it may even skip the Grub Legacy config and directly load your Grub 2. Either way, the net effect is essentially the same -- booting for all future kernel updates is now handled directly using your Grub 2 config. There should not be any packages updating your Grub Legacy grub.conf file (update-grub and update-grub2 are just linked commands, both for updating Grub 2’s /boot/grub/grub.cfg config).
Additional Resources/Credit:
Many thanks to Ian Campbell for this post.
Posted: March 5th, 2015 | Author: Ken | Filed under: computing | No Comments »
Recently acquired an HP LaserJet Pro 200 all-in-one device which so far has been working decently with Ubuntu 14.10. Print and fax all work as expected. My only frustration has been that I scan a lot of text documents to PDF for archive purposes and was not able to get the same small filesize and clear quality scans under linux using Xsane that I was getting using the “Black/White” settings in the HP software on Windows. Under linux the scans would be either washed out (shades of gray text), or capture a lot of junk detail (paper folds, smudges, etc), whereas in Windows they would be a crisp black and white.
After spending too long playing with drivers, pdf tools, etc.. I found that the solution is just a matter of proper Xsane settings. The key is using the grayscale scan mode (not lineart mode) with extreme values for gamma and contrast.
These are the basics:
HP LaserJet Pro 200 color MFP M276nw
Ubuntu 14.50, Xsane 0.998
Steps for installing HP software:
* Install HPLIP packages from Ubuntu repositories (currently HP Linux Imaging and Printing System v3.14.6)
* Open the “HPLIP Toolbox” gui
* Use the “Diagnose HPLIP Driver” function in the gui to ensure all dependencies are installed
* Use the gui to find and setup the printer
* Once the printer is installed, use the “Install Required Plugin” option under that printer menu
Xsane settings:
Type: PDF
Scan Mode: Gray
Source Medium Type: Full Color Range
Scan Resolution: 300 (or better)
Gamma value: 0.30 (minimum)
Brightness: 0.0 (middle)
Contrast: 100.0 (maximum)
You can back off the extremes on the gamma and contrast a little to tweak, but this should provide a baseline scan nearly identical to the HP software presets on Windows.
Posted: December 29th, 2014 | Author: Ken | Filed under: other | No Comments »
Update 5/22/15: I’ve since found that lowering the MTU below 1500 with the sky2 driver will cause major packet loss when the interface is used in a bridged connection for a Virtualbox VM. I have since raised the MTU back to 1500 and haven’t had the issue reoccur with the current kernel (3.16.0-38-generic #52-Ubuntu SMP).
———
Ethernet controller: Marvell Technology Group Ltd. 88E8056 PCI-E Gigabit Ethernet Controller
Symptom: During heavy network loads you get rx length errors and loss of network connectivity. Syslog will show similar messages to below.
Diagnosis: The sky2 driver remains broken for the Marvell 88E8056 on-board gigabit NICs.
Workaround: Set MTU permanetly to 1492 (default is likely set at 1500).
Check current MTU setting with:
# ip link list
Temporary MTU setting can be done with:
# ifconfig eth0 mtu 1492
Permanent MTU setting can be done via the GUI network manager settings or via edits to /etc/network/interfaces.
/var/log/syslog errors example:
kernel: [34019.426715] sky2 0000:06:00.0: error interrupt status=0x40000008
kernel: [34019.427154] sky2 0000:06:00.0 eth0: rx error, status 0x5ea0100 length 2082
kernel: [34020.055038] : hw csum failure
kernel: [34020.055053] CPU: 0 PID: 0 Comm: swapper/0 Tainted: P IOE 3.16.0-28-generic #38-Ubuntu
kernel: [34020.055056] Hardware name: System manufacturer System Product Name/P6T DELUXE V2, BIOS 1202 12/22/2010
kernel: [34020.055059] ffff8801e335a501 ffff88033fc03b20 ffffffff81781eaa 0000000000000000
kernel: [34020.055063] ffff88033fc03b38 ffffffff8167df4a ffff880306f32600 ffff88033fc03b68
kernel: [34020.055066] ffffffff81675cf5 02b25bc6e3359e62 ffff8802eb6c8000 ffff8801e335a5e2
kernel: [34020.055070] Call Trace:
kernel: [34020.055072] [] dump_stack+0x45/0x56
kernel: [34020.055087] [] netdev_rx_csum_fault+0x3a/0x40
kernel: [34020.055091] [] __skb_checksum_complete+0xb5/0xc0
kernel: [34020.055097] [] tcp_rcv_established+0x154/0x6e0
kernel: [34020.055101] [] tcp_v4_do_rcv+0x1b5/0x4e0
kernel: [34020.055106] [] ? skb_checksum+0x26/0x30
kernel: [34020.055113] [] ? skb_push+0x50/0x50
kernel: [34020.055125] [] tcp_v4_rcv+0x6ce/0x7b0
kernel: [34020.055138] [] ? __enqueue_entity+0x78/0x80
kernel: [34020.055141] [] ? enqueue_entity+0x400/0xc20
kernel: [34020.055147] [] ip_local_deliver_finish+0xaa/0x220
kernel: [34020.055150] [] ip_local_deliver+0x48/0x80
kernel: [34020.055154] [] ip_rcv_finish+0x84/0x350
kernel: [34020.055158] [] ip_rcv+0x27f/0x380
kernel: [34020.055161] [] __netif_receive_skb_core+0x572/0x820
kernel: [34020.055165] [] __netif_receive_skb+0x16/0x70
kernel: [34020.055168] [] netif_receive_skb_internal+0x23/0x90
kernel: [34020.055171] [] napi_gro_receive+0xc0/0xf0
kernel: [34020.055192] [] sky2_poll+0x5b3/0xd60 [sky2]
kernel: [34020.055196] [] net_rx_action+0x142/0x250
kernel: [34020.055200] [] __do_softirq+0x124/0x2e0
kernel: [34020.055207] [] irq_exit+0xfd/0x110
kernel: [34020.055213] [] do_IRQ+0x56/0xe0
kernel: [34020.055227] [] common_interrupt+0x6d/0x6d
kernel: [34020.055231] [] ? cpuidle_enter_state+0x49/0xc0
kernel: [34020.055244] [] cpuidle_enter+0x17/0x20
kernel: [34020.055251] [] cpu_startup_entry+0x347/0x480
kernel: [34020.055258] [] rest_init+0x77/0x80
kernel: [34020.055266] [] start_kernel+0x44e/0x45b
kernel: [34020.055272] [] ? early_idt_handlers+0x120/0x120
kernel: [34020.055277] [] x86_64_start_reservations+0x2a/0x2c
kernel: [34020.055284] [] x86_64_start_kernel+0x143/0x152
kernel: [34020.887384] : hw csum failure
kernel: [34023.443785] CPU: 0 PID: 3968 Comm: plasma-desktop Tainted: P IOE 3.16.0-28-generic #38-Ubuntu
kernel: [34023.443786] Hardware name: System manufacturer System Product Name/P6T DELUXE V2, BIOS 1202 12/22/2010
kernel: [34023.443788] ffffffff81ce1001 ffff88033fc03bd8 ffffffff81781eaa ffff88032e24e000
kernel: [34023.443790] ffff88033fc03bf0 ffffffff8167df4a ffff880243e6e400 ffff88033fc03c20
kernel: [34023.443792] ffffffff81675cf5 fc9805e500000000 ffff880243e6e400 ffffffff81ce10c0
kernel: [34023.443794] Call Trace:
kernel: [34023.443796] [] dump_stack+0x45/0x56
kernel: [34023.443802] [] netdev_rx_csum_fault+0x3a/0x40
kernel: [34023.443804] [] __skb_checksum_complete+0xb5/0xc0
kernel: [34023.443806] [] tcp_v4_rcv+0x2c0/0x7b0
kernel: [34023.443809] [] ? update_curr+0x75/0x180
kernel: [34023.443812] [] ip_local_deliver_finish+0xaa/0x220
kernel: [34023.443814] [] ip_local_deliver+0x48/0x80
kernel: [34023.443817] [] ip_rcv_finish+0x84/0x350
kernel: [34023.443819] [] ip_rcv+0x27f/0x380
kernel: [34023.443821] [] __netif_receive_skb_core+0x572/0x820
kernel: [34023.443824] [] __netif_receive_skb+0x16/0x70
kernel: [34023.443826] [] netif_receive_skb_internal+0x23/0x90
kernel: [34023.443828] [] napi_gro_receive+0xc0/0xf0
kernel: [34023.443834] [] sky2_poll+0x5b3/0xd60 [sky2]
kernel: [34023.443837] [] net_rx_action+0x142/0x250
kernel: [34023.443839] [] __do_softirq+0x124/0x2e0
kernel: [34023.443844] [] irq_exit+0xfd/0x110
kernel: [34023.443847] [] do_IRQ+0x56/0xe0
kernel: [34023.443849] [] common_interrupt+0x6d/0x6d
kernel: [34023.443850] [] ? netlink_poll+0x13b/0x1e0
kernel: [34023.443855] [] ? SYSC_sendto+0x1c0/0x1c0
kernel: [34023.443858] [] ? __mutex_lock_interruptible_slowpath+0x230/0x230
kernel: [34023.443862] [] ? unix_stream_recvmsg+0xf7/0x8c0
kernel: [34023.443866] [] ? aa_sock_msg_perm+0x81/0x160
kernel: [34023.443868] [] sock_recvmsg+0x9c/0xd0
kernel: [34023.443872] [] ? poll_select_copy_remaining+0x130/0x130
kernel: [34023.443874] [] ___sys_recvmsg+0x107/0x2b0
kernel: [34023.443879] [] ? inotify_free_event+0xe/0x10
kernel: [34023.443882] [] ? kfree+0x13e/0x150
kernel: [34023.443885] [] ? finish_wait+0x55/0x70
kernel: [34023.443888] [] ? inotify_read+0x122/0x440
kernel: [34023.443891] [] __sys_recvmsg+0x42/0x80
kernel: [34023.443893] [] SyS_recvmsg+0x12/0x20
kernel: [34023.443895] [] system_call_fastpath+0x1a/0x1f
kernel: [34027.250308] eth0: hw csum failure
Posted: December 19th, 2014 | Author: Ken | Filed under: computing | Tags: amarok, linux, music player | 5 Comments »

As any long time Linux user knows, Amarok 1.4 was the best music player of all time.. and now thanks to the Trinity Desktop Environment folks, it still is! Using the Trinity Desktop packages it’s possible to get Amarok 1.4 back
Why? Because Amarok 2 is a travesty and needs to be taken out behind the barn. I’ve tried to tweak it and love it, but I just can’t. In my opinion, if the developers ever want to get back to Amarok dominance, they best thing they could do is focus every effort into getting 2 to look and function exactly as 1.4 did. Completely implement *all* the previous 1.4 feature set with the new engine, then, and only then, work on other enhancements.
Clementine on the other hand is a good fork effort, and if you want 95% of what Amarok 1.4 was, without any extra effort, then it should be just an apt-get away on Ubuntu, Mint, etc. (Though you must be able to learn to live with an orange wedge icon.)
Anyway, if you’re a troglodyte like me, and just want things to go back to how they were, then here it is. I’ve tested this on Kubuntu 11.x, 12.x, 14.04 and am currently using it 14.10 Plasma4 (see updates for 15.04 at the bottom of this post). These instructions should work for any of the Ubuntu derivatives, and a similar process should work for all the platforms that Trinity supports (Ubuntu, Debian, RedHat and Fedora).
* Add the Trinity repositories per the instructions here. For Ubuntu 14.10 (Utopic) that means add:
$ sudo nano /etc/apt/sources.list.d/trinity-desktop.list
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-r14.0.0/ubuntu utopic main
deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-r14.0.0/ubuntu utopic main
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-builddeps-r14.0.0/ubuntu utopic main
deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-builddeps-r14.0.0/ubuntu utopic main
Save the file.
* Add the Trinity GPG signing key:
$ sudo apt-key adv --keyserver keyserver.quickbuild.pearsoncomputing.net --recv-keys F5CFC95C
* Now install the amarok-trinity package. The Trinity folks highly recommend using aptitude instead of apt-get for dependency conflict reasons.
$ sudo apt-get install aptitude
$ sudo aptitude update
$ sudo aptitude install amarok-trinity
The last one should drag in all the necessary Trinity Desktop dependency packages with it. Assuming everything went as it should, you now have Trinity installed under “/opt/trinity”. The Amarok 1.4 executable is at “/opt/trinity/bin/amarok”.
* Now at this point you should be able to start Amarok by specifying the full path from the terminal, but you may get errors as the supporting Trinity files are not in your PATH. To add the Trinity Desktop to your user $PATH so that you can easily execute it in the future, add the following lines to the bottom of your user .profile (do this as your regular user, not root):
$ nano ~/.profile
# added for trinity/amarok14
# set PATH so it includes trinity desktop
if [ -d "/opt/trinity/bin" ] ; then
PATH="$PATH:/opt/trinity/bin"
fi
* Now refresh your user PATH:
$ source ~/.profile
* Running the command below should now show “/opt/trinity/bin” at the end.
$ echo $PATH
* Now fire up Amarok 1.4 for a test drive (note that just “amarok” should still fire up Amarok 2.x if it’s installed):
$ amarokapp
Boom!
—--
(Optional) Adding a desktop icon for Amarok 1.4:
* Create and save a user desktop file with the following entries:
$ nano ~/Desktop/amarok14.desktop
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Version=0.9.4
Encoding=UTF-8
Name=Amarok 1.4
Name[en_US]=Amarok 1.4
GenericName=Audio Player
GenericName[en_US]=Audio Player
Comment=Amarok 1.4 from Trinity Desktop
Comment[en_US]=Amarok 1.4 from Trinity Desktop
Exec=PATH=/opt/trinity/bin:$PATH KDEDIRS=/opt/trinity/ KDEHOME=$HOME/.trinity XDG_DATA_DIRS=/opt/trinity/share/:/usr/share/ MANPATH=/opt/trinity/share/man amarok %U
Path=/opt/trinity/bin/
Icon=amarok
MimeType=audio/aac;audio/mp4;audio/mpeg;audio/mpegurl;audio/vnd.rn-realaudio;audio/vorbis;audio/x-flac;audio/x-mp3;audio/x-mpegurl;audio/x-ms-wma;audio/x-musepack;audio/x-oggflac;audio/x-pn-realaudio;audio/x-scpls;audio/x-speex;audio/x-vorbis;audio/x-wav;video/x-ms-asf;audio/flac;audio/ogg;
StartupNotify=true
Terminal=false
TerminalOptions=
X-DBUS-ServiceName=amarok14
X-DBUS-StartupType=none
X-KDE-SubstituteUID=false
X-KDE-Username=
X-KDE-Keywords=music,podcast
X-KDE-Protocols=htt
X-DocPath=amarok/index.html
Categories=Qt;KDE;AudioVideo;Audio;Player;
If you have a plasma widget that displays your Desktop contents then right-click and select “Refresh View” to see your new icon.
—--
(Optional) Create a menu entry for Amarok 1.4:
* Copy the desktop file to your user menu:
$ cp ~/Desktop/amarok14.desktop ~/.local/share/applications/
The menu entry should now show up under Applications > Multimedia.
Note: If you decide to set Amarok 1.4 as your default audio player for some file types then you may want to edit the end of the Exec line in “~/.local/share/applications/amarok14.desktop” to “amarok --append %U” or “amarok --append %U --play” so that your existing playlist gets appended to instead of replaced when you open a music file straight from the file browser.
And the world is now as it should be.
—--
UPDATE (6/2015): Kubutnu 15.04 (Vivid) changes:
* As of this writing, Trinity is not fully supported in 15.04), but their Preliminary Stable Builds are working fine. Install in the same manner as above.
* I had to remove the “/usr/:” portion from “KDEDIRS=” path of the EXEC line for the desktop icon (above example has been amended).
* The system tray icon no longer works. This is a common issue for numerous KDE legacy apps with 15.04. If you previously had Amarok 1.4 installed and set to minimize to the system tray when you closed it then it may appear not to start now because you simply can’t see it. The fix is to first kill any running instances:
$ killall amarokapp
Then modify/add the entries below into the Amarok config file:
$ nano ~/.trinity/share/config/amarokrc
[General]
HiddenOnExit=true
[General Options]
Show Tray Icon=false
Until this is resolved, make sure you do not use the “Show tray icon” setting.
Posted: December 18th, 2014 | Author: Ken | Filed under: computing | Tags: bored musings of a dirtbiker stuck in snowy winter, encrypted multiboot, grub, linux, luks | 13 Comments »
Goal:
Install multiple linux distros on one machine that use the same encrypted container.
Why:
I’m setting up a new laptop with a 1 TB drive and want to be able to natively boot multiple distributions of linux, but also want everything in the drive except the necessary /boot partition to be encrypted. Each distro will have it’s own LVM volume within the encrypted container but I want all the LVMs to live within the same encrypted container so that data can be shared between volumes and I can grow/shrink/rearrange the logical volumes as needed.
Also.. just because.
The Challenges:
1) Boot partitions -- In a typical multiboot setup I would install Grub for the “primary” OS to the harddrive boot sector and then install the Grub for the secondary distros into their respective partition boot sectors. The primary Grub menu seen at boot would then be configured to chainload the secondary distros. Unfortunately this doesn’t work as simply with the LUKS setup above as Grub can’t access the secondary bootloaders if they are sitting in an encrypted LUKS container.
2) Dumb Installers -- In trying to keep things simple, the installer programs for many distros have been streamlined to the point they cannot support non-standard LUKS/LVM setups such as this.
The Process:
WARNING: FOLLOWING THESE STEPS IS GUARANTEED TO DESTROY EVERY BYTE OF EXISTING DATA ON YOUR HARD DRIVE. I’m serious -- the very first few steps will likely make any existing data unrecoverable by the best NSA jock using the latest secret-alien-area51 gear with unlimited funding. DO NOT PROCEED if you have not backed up every piece of needed data on the installation disk and have physically disconnected any other drives. This is NOT an exact step-by-step guide for beginners and assumes you are already familiar with linux installation and command-line administration.
Preparing the harddrive.
* This writeup assumes the installation harddrive is /dev/sda, adjust accordingly.
* Download and burn a linux installation disk with a Live option (e.g. latest Debian, Ubuntu or Mint). Alternative installers could be adapted as well if you know your stuff.
* Boot into the live environment, open a Terminal and “sudo su -” to obtain a root prompt.
* Create a temporary full disk partition to properly prepare the disk for encryption by first filling it with random data (this is where all existing data goes bye-bye). Use “fdisk /dev/sda” to delete any exiting partitions then create a full disk /dev/sda1 partition using the whole disk with default values. After saving the new table, if you get the following error:
WARNING: Re-reading the partition table failed with error 22: Invalid argument.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
Then reboot before continuing or you will only overwrite whatever the old sda1 partition size was.
* The step of filling the new disk with random data is usually done with the agonizingly slow “dd if=/dev/urandom”. Thanks to these awesome guys we have a much quicker method available using a clever combo of /dev/zero and LUKS itself. (I now use this even for standard encrypted installs and can then skip the “wipe data” step provided by the installers.)
* Create a LUKS container using /dev/sda1:
# cryptsetup luksFormat /dev/sda1
This will overwrite data on /dev/sda1 irrevocably.
Are you sure? (Type uppercase yes): [YES]
Enter LUKS passphrase: [enter a random one-time-use password]
Verify passphrase: [re-enter password]
* Open the LUKS container:
# cryptsetup luksOpen /dev/sda1 sda1_crypt
[re-enter password]
* Fill the container data using /dev/zero. LUKS will encrypt the /dev/zero input as it writes. For me this is roughly 8x faster than the /dev/urandom method and the result is just as good (or better):
# dd if=/dev/zero of=/dev/mapper/sda1_crypt bs=1M
* Once complete, close the crypto device.
# cryptsetup luksClose sda1_crypt
* Overwrite the small LUKS header space for extra security.
# dd if=/dev/urandom of=/dev/sda1 bs=512 count=2056
Create the new permanent partitions and LUKS container.
* Use fdisk to create a new partition layout. The following layout provides boot partitions for 3 linux distros and the rest of the disk as the encrypted container. If you want more distos, format more boot partitions accordingly. It is possible to use the same /boot for more than one distro, but it will make all kinds of ugliness when you run update-grub. Unfortunately Grub2 is not nearly as refined as the old Grub in customizing these things yet. Using separate boot partitions keeps things easy and clean.
# fdisk /dev/sda
new primary partition 1 = /dev/sda1, 512Mb, type 83 Linux (/boot for primary distro)
new primary partition 2 = /dev/sda2, 256Mb, type 83 Linux (/boot for alternate distro)
new primary partition 3 = /dev/sda3, 256Mb, type 83 Linux (/boot for alternate distro)
new extended partition = /dev/sda4, (disk remainder) type 5 extended
new partition 5 = /dev/sda5, (disk remainder) type 83 Linux (this is the encrypted partition)
Also, if you want to install non-encrypted OS’s (e.g. Windows) then limit the size of the encrypted partition and create additional extended partitions for those OS’s. Note that most non-encrypted OS’s do not need separate boot partitions because they can be chainloaded from the Grub that will be installed in the primary harddrive boot sector. Also note that some versions of Windows may have trouble with booting from extended partitions so you would need to modify your layout accordingly. (Personally, I prefer never run to Windows outside of a Virtualbox).
* Now create the new crypto device. Note that the password you use here will be required each time you boot.
# cryptsetup luksFormat /dev/sda5
This will overwrite data on /dev/sda5 irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase: [new password]
Verify passphrase: [re-enter password]
* Open the new crypto partition:
# cryptsetup luksOpen /dev/sda5 sda5_crypt
* Create a new LVM Physical Volume (PV) from the crypto partition:
# pvcreate /dev/mapper/sda5_crypt
* Create a new LVM Volume Group (VG) using the PV:
# vgcreate [vg-name] /dev/mapper/sda5_crypt
* Create new LVM Logical Volumes (LVs) for swap and root (/). The swap LV will be common for all the distros, but each distro will have it’s own root LV. It may be helpful to name the root LV based on distro (e.g. “kubuntu-root”). You can delete and create new LVs if you swap out distros later. You can also start small as it’s easy to grow the LV later using lvextend (and most filesystems with resize2fs) if you need more space.
# lvcreate -L[8G] -n [swap-lv-name] [vg-name]
# lvcreate -L[50G] -n [root1-lv-name] [vg-name]
* Check everything with “lvdisplay”. If it all looks good then leave the terminal window open and move to the GUI installer.
Installing the initial (primary) Linux distro
* Click on the Live CD’s gui installer icon (probably right on the desktop) and follow the instructions. When you get to the disk setup selections, select the Manual option. Use the screens to configure:
/dev/sda1 as format ext2, mount /boot
/dev/mapper/[vg-name]-[swap-lv-name] as swap area
/dev/mapper/[vg-name]-[root1-lv-name] as format ext4, mount /
All the other available partitions should be listed as “Do not use”.
* If/when you are presented with a Grub install choice, then install this grub instance to the harddrive boot sector “/dev/sda”.
* Complete the gui install, but once completed DO NOT REBOOT YET, instead click the “Continue Testing” option. LUKS must be configured before you reboot.
Enabling LUKS on the Linux distro
* Once the installer completes, you need to chroot from the Live CD environment into your newly installed distro so you can configure LUKS before rebooting.
* From the terminal window you were using previously (as root):
# mkdir /mnt/newroot
# mount /dev/mapper/[vg-name]-[root1-lv-name] /mnt/newroot
# mount -o bind /proc /mnt/newroot/proc
# mount -o bind /dev /mnt/newroot/dev
# mount -o bind /dev/pts /mnt/newroot/dev/pts
# mount -o bind /sys /mnt/newroot/sys
# cd /mnt/newroot
# chroot /mnt/newroot
You are now in the newly installed distro’s environment (the previous /mnt/newroot is now “/”).
* Mount the /boot partition for this distro (e.g. /dev/sda1 for the primary distro)
# mount /dev/sdaX /boot
* Get the UUID of the crypto partition you created previously with fdisk:
# blkid /dev/sda5
* Take the UUID given above (without the quotes) and create the file “/etc/crypttab” with the following single line. (This file will be the same for all linux distros within the LUKS container).
# nano /etc/crypttab
sda5_crypt UUID=your-blkid-goes-here none luks
* Check /etc/fstab to ensure everything looks okay. It should list mounts for swap, /boot and /.
* You may want to add the following line to /etc/default/grub to keep your grub menu clean. This will restrict Grub to only creating menu entries for items in this distro’s /boot partition instead of searching the entire disk and creating menu entries for everything it finds.
GRUB_DISABLE_OS_PROBER=true
* Ensure that the “cryptsetup” and “cryptsetup-bin” packages are installed on the system (should be included on most modern distros) as well as initramfs-tools. For Debian based systems:
# dpkg -l | grep cryptsetup
# dpkg -l | grep initramfs
* Update the kernel boot images and grub menu:
# update-initramfs -u
# update-grub
# Take a look in /boot to ensure the initrd and vmlinuz images exist. Also take a peek at /boot/grub/grub.cfg to review your menu entries.
* Optional: If you want to save time and keep a tidy Grub menu then you can setup menu entries for your other distros now. They obviously won’t work until you install those distros, but it’ll save the step of having to boot back into the primary to update grub again after each install. To do this, add the “GRUB_DISABLE_OS_PROBER” entry mentioned above. Next, manually create the “chainload” entries for the other boot partitions by adding the following to the end of the 40_custom file.
# nano /etc/grub.d/40_custom
menuentry "Linux /dev/sda2 chainload" {
set root=(hd0,2)
chainload +1
}
menuentry "Linux /dev/sda3 chainload" {
set root=(hd0,3)
chainload +1
}
Once completed, run “update-grub” again and recheck your “/boot/grub/grub.cfg”. You should see these entries near the bottom.
* Time to take the plunge!
# reboot
* Make sure you eject the Live CD. Once the system reboots you should be presented with your Grub menu and shortly afterwards the boot process will pause and prompt for your LUKS password. Once entered you should boot into the normal user login prompt. Congrats!
Installing the additional Linux distros
* For installing the additional distros it’s easy to create the root LV for those while still logged into your primary distro. In a new terminal window:
$ sudo lvcreate -L[50G] -n [root2-lv-name] [vg-name]
$ sudo lvcreate -L[50G] -n [root3-lv-name] [vg-name]
There is no need to create a secondary swap LV. They’ll all use the same one.
* Reboot into the Live CD for the new distro. Once booted, open a terminal window and get to a root prompt like before.
* Now open the LUKS container:
# cryptsetup luksOpen /dev/sda5 sda5_crypt
[enter pass]
* Once open, activate the existing LVM LVs:
# lvscan
* If they didn’t automatically active then run:
# lvchange -a y
* If you didn’t already create the root LV for the new distro then do so now:
# lvcreate -L[50G] -n [root2-lv-name] [vg-name]
* Once again, leave the terminal window open and click on the Live CD’s gui installer and follow the instructions. When you get to the disk setup selections, select the Manual option. Use the screens to configure (use /dev/sda2 for the second distro /dev/sda3 for the third):
/dev/sda2 as format ext2, mount /boot
/dev/mapper/[vgname]-[swap-lv-name] as swap area
/dev/mapper/[vgname]-[root2-lv-name] as format ext4, mount /
DOUBLE CHECK that you are using one of the empty /boot partitions and root LV before proceeding or you will overwrite your existing install. Aside from swap, all the partitions for your other existing installs should be marked “Do not use”.
* Continue the install, when prompted for the grub installation choice, this time do not choose /dev/sda, but instead use the partition you defined as /boot (e.g. /dev/sda2). Grub may whine about being installed in a partition, but it works fine (at least for me so far.. knock on wood.)
* Complete the gui install, but again, once completed DO NOT REBOOT YET. Click the “Continue Testing” option.
* Follow the exact same steps as last time to chroot. Make sure you use the new root LV when mounting /mnt/newroot and the proper partition when mounting /boot.
* Use the same blkid process to create the /etc/crypttab file (it should be identical to the one you created last time).
* For these additional distros definitely disable the OS prober in /etc/default/grub. You do not need to add anything to 40_custom this time.
GRUB_DISABLE_OS_PROBER=true
* Again, ensure that the “cryptsetup” and “cryptsetup-bin” packages are installed on this system (should be included on most modern distros) as well as initramfs-tools.
* And again, update the kernel boot images and grub menu for this distro:
# update-initramfs -u
# update-grub
* Reboot!
# reboot
At startup you should see the same Grub menu as before (from the grub installed in /dev/sda), but this time select the “Linux /dev/sda2 chainload” menu option. This will then chainload you to a second Grub menu for that distro. The beauty in this is each distro controls it’s own grub entries and only messes with it’s own initramfs images. You can shorten up the timeouts in the respective /etc/default/grub configs to keep the boot sequence quick. You may also edit the chainload entries in the primary distro’s /etc/grub.d/40_custom file to something more descriptive (maybe “My ub3r l33t h4x0r Kali Install” ;).
Cheers!
PS -- Comments and corrections are invited. I wrote this from memory, while consuming IPAs, a few weeks after the fact so I’m positive it’s full of holes.. hopefully not ones that leave you hanging, but Dragons There May Be.
Posted: February 11th, 2014 | Author: Ken | Filed under: computing | 2 Comments »
Lessons learned the hard way while going virtual with VB.
Host box -- Quad Xeon cores: Ubuntu 12.04 LTS, VirtualBox 4.3.6 (91406) PUEL, phpVirtualBox management gui.
—--
Issue:
Getting error when trying to install a 64bit linux guest: “This kernel requires an x86-64 CPU, but only detected an i686 CPU….”
The host is 64 bit, chipset supports VT and Bios settings are enabled. The guest container has IO APIC, PAE/NX, VT-x/AMD-V and Nested Paging enabled. I can select 64 bit templates for Type and Version… everything should be working for 64 bit.. but doesn’t.
Solution: There’s a bug in the gui on some systems that prevents 64 bit from being properly set on the Guest. Workaround is to create the Guest container in the gui as normal, then use the CLI on the host box to manually set the Guest to 64 bit:
# VBoxManage modifyvm [vmname] --longmode on
—--
Issue:
Could not get linux Guests to connect to unused physical NICs on Host using Bridged Adapter setting in Guest.
Solution: Turns out the Guest are not able to activate (aka. turn on) the host NIC. NICs should be activated on the Host, but not configured.
Add the following for each NIC (replace “X”) that should be made available for a Guest bridge:
/etc/network/interfaces (on Host)
auto ethX
iface ethX inet manual
up ifconfig ethX up
Credit: http://lastoctet.com/2009/04/12/bring-up-interface-in-debian-ubuntu-with/
—--
Issue:
Install VirtualBoxGuestAdditions_XX.iso in a VirtualBox linux guest (for VirtualBox PUEL version only, not OSE).
Solution:
1) add .iso file on Host as an IDE cdrom in the Guest vbox container settings then boot guest
2) apt-get install linux-headers-[yourkernelversion] build-essential dkms
3) edit Guest /etc/fstab and add:
/dev/sr0 /media/cdrom udf,iso9660 rw,user,noauto,exec,utf8 0 0
4) sudo mount /media/cdrom && cd /media/cdrom
5) sudo ./VBoxLinuxAdditions.run -- -nox11
6) If you don’t have X11 on the guest you can ignore “Installing the Window System drivers …fail! (Could not find the X.Org or XFree86 Window System.)” error
7) “sudo lsmod” and confirm “vboxsf” and “vboxguest” modules are loaded
—--
Issue:
Adding VirtualBox Shared Folders into /etc/fstab would cause linux Guest boot failure “/sbin/mount.vboxsf: mounting failed with the error: No such device“. User then had the option to Skip or mount Manually.
The problem is that /sbin/mountall is trying to mount the vboxsf filesystems listed in /etc/fstab before the Virtualbox Guest Additions service has started and loaded the vboxsf module. From searching it sounds like they fixed this somehow in virtualbox-ose, but not in the PUEL version, and I didn’t like the “rc.local” workaround I was finding online. I tried adding the modules to /etc/modules, but it didn’t help.
Solution: What finally worked for me was to build the modules into the boot image using initramfs so they are already loaded at boot with Grub. Again, this is only for the PUEL version:
1) add the Shared Folders in the VBox gui but do not select “Auto-mount” (Auto-mount would mount them under /media/sf_[name] instead of using your fstab entry)
2) add the folders to the Guest /etc/fstab as:
name_of_share /path/to/guest-mountpoint vboxsf defaults 0 0
3) run “mount -a” to mount the shares, then run “mount” to see if they are successfully mounted. If not, then you have other issues (probably need to install Virtualbox Guest Additions on Guest vm).
4) install initramfs-tools package
5) add the following two lines in /etc/initramfs-tools/modules
vboxguest
vboxsf
6) run “update-initramfs -u” as root (or sudo)
7) reboot the Guest vm
—--
Issue:
eth0 could not be found on the new Guest VM after cloning an existing Guest.
Solution:
1) Edit file on Guest VM using console: /etc/udev/rules.d/70-persistent-net.rules
2) Delete the entry with the existing eth0
3) Change the eth1 entry to eth0
4) Save file and reboot. Networking will still fail at boot.
5) Use “ifconfig -a” to confirm that new eth0 was created
6) Use Guest console (CLI) to manually setup networking in /etc/network/interfaces
7) Restart networking “/etc/init.d/networking restart” and verify new IP assignment with ifconfig
—--
Issue:
SSH server keys need to be regenerated for security after cloning a Guest VM.
Solution:
1) use RDP console to login
2) “service ssh stop”
3) “rm -rf /etc/ssh/ssh_host_*”
4) “ssh-keygen -A”
5) “service ssh start”
—--
Posted: February 10th, 2014 | Author: Ken | Filed under: computing | No Comments »
If you haven’t tried phpVirtualBox, you should. This is a great tool that allows you to manage a headless VirtualBox server via a full featured web gui. In my case, one that’s running VirtualBox on an Ubutntu 12.04 LTS host server.
The phpVirtualBox author deserves praise, honor and a harem of beautiful servants of his choosing for providing this wonderful opensource tool.
Unfortunately, there was trouble in my paradise. I had phpvirtualbox up and running, and could access it successfully using Opera, Chrome, Internet Explorer (gasp) and even Firefox on Windows, but not via Firefox (v26) on my core linux workstation.
So.. in a attempt to save others the hours of puzzling tinkering with Apache configs, content-types, mod_deflate experiments, staring at LiveHeaders and Firebug; here’s the simple answer:
You need to enable DOM Storage in your FF browser to use phpVirtualBox.
Step 1: Type “about:config” into your FF address bar and hit Enter.
Step 2: Search for “dom.storage”
Step 3: Set the “dom.storage.enabled” value to “true”
Step 4: Close the config browser tab and refresh your phpvirtualbox page.
Step 5: You’re welcome.
Cheers.
Posted: January 2nd, 2012 | Author: Ken | Filed under: computing | Tags: cryptsetup, debian, grub2, luks, lvm, ubuntu | 2 Comments »
STANDARD DISCLAIMER APPLIES. USE AT YOUR OWN RISK. This is what worked for me. Your system may be different. IF THINGS GO WRONG YOU’LL BE STUCK DOING MANUAL SYSTEM RECOVERY. This is a high-level guide, not an exact step-by-step and assumes you are familiar with linux administration and command line.
Started with a fresh install of Ubuntu Server (Ubuntu Lucid 10.04.3 LTS) and wanted the same USB keyfile setup as used previously in the links below, but needed to adapt for Grub2.
Debian Lenny + LUKS encrypted root + hidden USB keyfile
Debian Lenny + LUKS encrypted root + hidden USB keyfile (part 2)
I’m too embarrassed to publish how long it took me to figure this out. Let’s just say it’s working now:
1) System setup using the manual partitioner to create crypt container partition and LVM partitions. Use the same process as described here to create and test the usb key and the udev rule file.
2) The keyscript has changed (including modifying the keyscript filename to remove the hyphens, update-initramfs would not copy in the script with hyphens in the filename). Create the following keyscript as “/usr/local/sbin/unlockusbkey.sh”
#!/bin/sh
TRUE=0
FALSE=1
# flag tracking key-file availability
OPENED=$FALSE
# check and modprobe the USB driver if not already loaded
cat /proc/modules | busybox grep usb_storage >/dev/null 2>&1
USBLOAD=0$?
if [ $USBLOAD -gt 0 ]; then
modprobe usb_storage >/dev/null 2>&1
fi
# give the system time to settle and open the USB device
sleep 10
# check for the specifc /dev/usbkey device created by udev using /etc/udev/rules.d/99-unlock-luks.rules
if [ -b /dev/usbkey ]; then
# if device exists then output the keyfile from the usb key (hidden key is 4096 bytes long starting at 2048 bytes)
dd if=/dev/usbkey bs=512 skip=4 count=8 | cat
OPENED=$TRUE
fi
if [ $OPENED -ne $TRUE ]; then
echo "FAILED to get USB key file ..." >&2
if [ -x /bin/plymouth ] && plymouth --ping; then
plymouth ask-for-password --prompt "Enter passphrase"
else
/lib/cryptsetup/askpass "Enter passphrase"
fi
else
echo "Success loading key file. Moving on." >&2
fi
sleep 1
exit 0
Make the script executable:
# chmod a+x /usr/local/sbin/unlockusbkey.sh
3) Create/edit the following files (edit sda2_crypt and the UUID for your system):
/etc/crypttab
sda2_crypt /dev/disk/by-uuid/uuid-goes-here none luks,keyscript=/usr/local/sbin/unlockusbkey.sh
/etc/initramfs-tools/conf.d/cryptroot
CRYPTROOT=target=sda2_crypt,source=/dev/disk/by-uuid/uuid-goes-here
/etc/initramfs-tools/modules
usb_storage
4) Create this file (and make executable) to ensure your custom udev rule gets copied into the initrd image when running update-initramfs.
/etc/initramfs-tools/hooks/udevusbkey
#!/bin/sh
# udev-usbkey script
PREREQ="udev"
prereqs()
{
echo "$PREREQ"
}
case $1 in
prereqs)
prereqs
exit 0
;;
esac
. /usr/share/initramfs-tools/hook-functions
# Copy across relevant rules
cp /etc/udev/rules.d/99-unlock-luks.rules ${DESTDIR}/lib/udev/rules.d/
exit 0
5) Edit your Grub2 config. The key line is “GRUB_CMDLINE_LINUX_DEFAULT”. Notice the initrd keyscript location is different than the previous setups (using cryptsetup 2:1.1.0~rc2-1ubuntu13 and initramfs-tools 0.92bubuntu78).
/etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
#GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="cryptopts=target=sda2_crypt,source=/dev/disk/by-uuid/uuid-goes-here,lvm=vg-your-root,keyscript=/lib/cryptsetup/scripts/unlockusbkey.sh"
GRUB_CMDLINE_LINUX=""
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=1280x1024
GRUB_GFXPAYLOAD=1280x1024
GRUB_GFXPAYLOAD_LINUX=1280x1024
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_LINUX_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
6) Run “update-grub” and check the generated /boot/grub/grub.cfg file to verify the cryptopts kernel options were added.
7) Update the initrd image for your current kernel (or just run “update-initramfs -u” to update all kernels):
# update-initramfs -u -k 2.6.XX-XX-server
8) If you want to verify that everything has copied correctly, you can unpack your current initrd.img to the tmp directory and look through the extracted files. The keyscript should have been copied into the “lib/cryptsetup/scripts” directory and and udev rule into “lib/udev/rules.d/”. The grub keyscript line above should match the location of the keyscript in the initrd image.
# cd /tmp
# zcat /boot/initrd.img-2.6.XX-X-amd64 | cpio -iv
9) If all looks in order then reboot. With the USB stick inserted the system should boot all the way to the login prompt. Without the USB stick it should prompt you for your crypt password to mount the root filesystem.
If something goes wrong you’ll likely get dropped to the “(initramfs)” prompt. From here you can manually unlock the crypt partition using “cryptsetup luksOpen /dev/sda2 sda2_crypt” and entering your crypt password. If this unlocks successfully then typing “exit” should drop you back into the automated boot sequence.
————-
Steps for creating & adding additional crypt disks:
1) Use fdisk to create the new partition (using /dev/sdx1 for example) with Type 83, Linux
2) Optional -- good idea to check for badblocks and fill partition with pseudo-random data:
badblocks -c 10240 -s -w -t random -v /dev/sdx1
Or, for truly paranoid types (verrry slow):
dd if=/dev/urandom of=/dev/sdx1
3) Create new luks partition
# cryptsetup --verify-passphrase --verbose --hash=sha256 --cipher=aes-cbc-essiv:sha256 --key-size=256 luksFormat /dev/sdx1
# cryptsetup luksOpen /dev/sdx1 sdx1_crypt
4) create LVM
# pvcreate /dev/mapper/sdx1_crypt
# vgcreate vgname /dev/mapper/sdx1_crypt
# lvcreate -LXXG -n lvname vgname
5) format new LVM partition (example uses ext4 fs)
# mkfs.ext4 /dev/vgname/lvname
6) mount new LV (add to /etc/fstab to make persistent)
# mount /dev/mapper/vgX-nameX /mnt/nameX
7) find the uuid of the encrypted physical partition
# ls -al /dev/disk/by-uuid
uuid-goes-here -> ../../sdx1
or
cryptsetup luksDump /dev/sdx1
8) add new line to /etc/crypttab
sdx1_crypt /dev/disk/by-uuid/uuid-goes-here none luks,keyscript=/usr/local/sbin/unlockusbkey.sh
9) Add the USB key to the new crypt partition:
cryptsetup luksAddKey /dev/sdx1 /root/luks-secret.key --key-slot 1
10) Update the initrd for good measure:
update-initramfs -u
11) profit.
Posted: December 30th, 2011 | Author: Ken | Filed under: computing | 5 Comments »
After some minor hacking earlier in the year I’ve been okay with Untangle’s performance, until this week. A couple days ago I noticed Untangle wanted to do some updating. I went in and backed up the configs and a few key files, checked the appropriate files were listed as protected in the admin interface and let ‘er rip via the web interface. Untangle goes about it’s business then reboots…. BAM… no love, boot errors. Shite.
After tossing together a USB stick with SystemRescueCD to investigate it becomes clear that Untangle replaced my /boot/grub/menu.lst with a fresh copy. It didn’t just update and add a kernel entry, it just replaced the file altogether. All my grub kopt options for booting the encrypted LVM volumes = gone. Mother fu**er.
Yes, I read the disclaimer. I know customizing virtually anything on Untangle voids the warranty, no user-serviceable parts inside, this tag not to be removed except by consumer, parental guidance is advised, call before you dig, breaking seal constitutes acceptance of agreement, blah, blah, blah.. So why does this piss me off??
1) /boot/grub/menu.lst and /boot/grub/grub.conf (just for good measure) were both listed as “protected” in the admin interface. According to Untangle that means they should not be touched. I took that at face value.. you say you’re not going to touch something, then don’t.. EVER. Give me an error the update can’t be completed if necessary, but don’t just ignore a file is listed as protected and update it anyway.
2) Even if it’s not listed as protected, why would you ever update a Grub config by replacing the file? Grub has a proven process for updating kernel entries that every major distro has used for years. If Untangle used the standard process then it would have picked up my kopt parameters and added them to updated kernel entries and all would have been well with the world. But just replacing the config file carte blanche? Poor form.
3) To add insult to injury -- there wasn’t even a kernel change, so there was ZERO reason for updating the file. Untangle did it just for fun.
So yeah.. I can handle a system with a few unique hooks and a closed internal vm, but pissing on standard practices for updating the underlying core Debian distro.. dealbreaker.
Untangle is out, done, later.. thanks for the good times, wish you well.
Posted: May 21st, 2011 | Author: Ken | Filed under: computing | Tags: encoding, ffmpeg, hd video, kdenlive, linux | No Comments »
Goal: To emulate the YouTube 720p HD video encoding settings to use as a baseline for encoding my own HD vids for use with a player on my own site. YouTube’s 720p encoding seems to be a good balance between filesize and quality. The various built-in render profiles I tested in kdenlive (v0.8) did not seem to have the same efficiency.
NOTE: This is not a guide to the best settings for uploading video to YouTube, this a guide for emulating the encoding process YouTube uses in creating HD video.
YouTube testing process:
1) Uploaded a 441M mp4 (960×720 H.264 8000k) to YouTube. Original source mp4 was from GoPro HD at 960p (1280×960) then spliced, edited and scaled to 960×720 using kdenlive.
2) Downloaded the “720p HD” mp4 file that YouTube created from rendering my video.
3) Used mediainfo to analyze the downloaded 170.4M mp4 file:
$ mediainfo videofile.mp4
General
Complete name : videofile.mp4
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 170 MiB
Duration : 7mn 34s
Overall bit rate : 3 144 Kbps
Encoded date :
Tagged date :
gsst :
gstd :
gssd :
gshh :
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3.1
Format settings, CABAC : Yes
Format settings, ReFrames : 1 frame
Format settings, GOP : M=1, N=60
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 7mn 34s
Bit rate mode : Variable
Bit rate : 2 986 Kbps
Maximum bit rate : 4 670 Kbps
Width : 960 pixels
Height : 720 pixels
Display aspect ratio : 4:3
Frame rate mode : Variable
Frame rate : 30.000 fps
Minimum frame rate : 29.412 fps
Maximum frame rate : 55.556 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.144
Stream size : 162 MiB (95%)
Tagged date :
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 7mn 34s
Bit rate mode : Variable
Bit rate : 152 Kbps
Maximum bit rate : 178 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 8.24 MiB (5%)
Title : (C) 2007 Google Inc. v08.13.2007.
Encoded date :
Tagged date :
Recreating:
1) After much tinkering I’ve found the following kdenlive options seem to provide nearly identical results. Use these to create a custom render profile:
Profile Name: Custom Web 960x720 3k (4:3) 2pass
Extension: mp4
Parameters: f=mp4 acodec=aac ab=160k ar=44100 vcodec=libx264 vpre=hq minrate=0 maxrate=5000k b=3000k coder=1 refs=1 g=60 s=920x720 aspect=%dar mbd=2 trellis=1 mv4=1 subq=7 qmin=10 qcomp=0.6 qdiff=4 qmax=51 pass=2
2) The resulting rendered video (using the same 441M source file) is nearly identical in size (170.5M for the kdenlive file vs 170.4M for the YouTube file) and in visual quality.
$ mediainfo kdenlivevideo.mp4
General
Complete name : kdenlivevideo.mp4
Format : MPEG-4
Format profile : Base Media
Codec ID : isom
File size : 170 MiB
Duration : 7mn 34s
Overall bit rate : 3 146 Kbps
Writing application : Lavf52.64.2
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3.1
Format settings, CABAC : Yes
Format settings, ReFrames : 2 frames
Format settings, GOP : M=1, N=60
Codec ID : avc1
Codec ID/Info : Advanced Video Coding
Duration : 7mn 34s
Bit rate mode : Variable
Bit rate : 3 000 Kbps
Width : 920 pixels
Height : 720 pixels
Display aspect ratio : 4:3
Frame rate mode : Constant
Frame rate : 30.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Bits/(Pixel*Frame) : 0.151
Stream size : 162 MiB (95%)
Writing library : x264 core 106 Ubuntu_2:0.106.1741-3
Encoding settings : cabac=1 / ref=1 / deblock=1:0:0 / analyse=0x3:0x113 / me=umh / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=0 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / constrained_intra=0 / bframes=3 / b_pyramid=0 / b_adapt=2 / b_bias=0 / direct=3 / weightb=1 / open_gop=0 / weightp=2 / keyint=60 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=2pass / mbtree=1 / bitrate=3000 / ratetol=1.3 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / cplxblur=20.0 / qblur=0.5 / ip_ratio=1.41 / aq=1:1.00
Audio
ID : 2
Format : AAC
Format/Info : Advanced Audio Codec
Format profile : LC
Codec ID : 40
Duration : 7mn 34s
Bit rate mode : Variable
Bit rate : 144 Kbps
Channel(s) : 2 channels
Channel positions : Front: L R
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 7.70 MiB (5%)
3) The mp4 rendered by kdenlive is still not quite ready for online streaming as the index remains at the video’s end (google “moov atom” for more info). This means the video will not start playing in an online player like JW Player until the entire file is downloaded into buffer. To fix this, I used a handy tool called MP4Box (apt-get install gpac) to interleave the index info through the video file. Note that this will operate directly on the file you specify so you may want to create a copy of the original first.
$ MP4Box -inter 500 kdenlivevideo.mp4
Thoughts:
* YouTube is either using some other encoder than ffmpeg or has hacked it to write custom metadata, but again, the video output is nearly identical.
* I’m not sure why YouTube’s encoder uses variable frame rates. The source file is a constant frame rate and ffmpeg retains this by default.
* The same thing can be accomplished using ffmpeg from the CLI without the kdenlive front end; just convert the parameters from the render profile to the ffmpeg switch format.
References:
* Kdenlive -- http://www.kdenlive.org/
* FFmpeg -- “man ffmpeg” and “ffmpeg -h”
* FFmpeg Docs -- http://ffmpeg.org/ffmpeg-doc.html
* FFmpeg / x264 mapping -- http://sites.google.com/site/linuxencoding/x264-ffmpeg-mapping
* FFmpeg preset profiles -- http://juliensimon.blogspot.com/2009/01/howto-ffmpeg-x264-presets.html
* MP4Box -- http://gpac.wp.mines-telecom.fr/mp4box/