Grub2 Boot Priority

Now list all possible menu entries

grep "submenu\|^\menuentry" /boot/grub2/grub.cfg | cut -d "'" -f2

Now set the desired default menu entry

grub2-set-default "<submenu title>><menu entry title>"

Dell RACADM 1 Liners

Remote Firmware Update:

racadm -u root -p calvin -r RAC-IP  fwupdate -g -u -a TFTPSERVER -d PATH

racadm -u root -p calvin -r bc006-cin1  fwupdate -g -u -a tftp.bhsrv.net -d dell/firmimg-5.01-A00.cmc

Sublime Text – Home / End Keys on OSX

Make them work as they should.

Preferences > Keybinding – User

{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }