diff --git a/.vim/vimwiki/vimwiki/D_and_D.wiki b/.vim/vimwiki/vimwiki/D_and_D.wiki deleted file mode 100644 index 7159c4d..0000000 --- a/.vim/vimwiki/vimwiki/D_and_D.wiki +++ /dev/null @@ -1,7 +0,0 @@ - -Loots from 3/2/2015 -800 SP -150 GP -4 Goblets with Moonstones -Misty Step Scroll -Lightning Bolt Scroll diff --git a/.vim/vimwiki/vimwiki/Linux_Slackware_Wifi.wiki b/.vim/vimwiki/vimwiki/Linux_Slackware_Wifi.wiki deleted file mode 100644 index e39fe0a..0000000 --- a/.vim/vimwiki/vimwiki/Linux_Slackware_Wifi.wiki +++ /dev/null @@ -1,2 +0,0 @@ -==== Slackware Wifi (wicd) ==== -Install wicd package from the `extras` folder of the cd diff --git a/.vim/vimwiki/vimwiki/Mac_EFI_Jailbreak.wiki b/.vim/vimwiki/vimwiki/Mac_EFI_Jailbreak.wiki deleted file mode 100644 index d2b3ddf..0000000 --- a/.vim/vimwiki/vimwiki/Mac_EFI_Jailbreak.wiki +++ /dev/null @@ -1,39 +0,0 @@ -==="Jailbreaking" a Mac=== - -/EFI/boot/refind_ia32.efi ?> /EFI/boot/bootia32.efi -==== Steps ==== -* Boot into a live CD -* Install rEFInd -* Setup system like normal - -====Requirements==== -* [[http://www.mediafire.com/?dpgorsfdkf6nn2c | ISO2USB EFI Booter for Mac]] -* A Live CD with loopback support - * xubuntu works well - -====Installation==== -* Ensure the ISO file will fit on your USB flash drive. Backup important content from your drive — it will be erased. -* Make one large partition on your USB flash drive, using e.g. `(g)parted`, `(c)gdisk`, or `(c)fdisk`. - You can use either a GUID partition table (GPT — unless you’re using (c)fdisk) or an MSDOS/MBR partition table, both will work. Use “Microsoft basic data” (code 0700) as the partition type. -* Format the partition with FAT32. (g)parted can do this. Alternatively, you can type - `mkfs.vfat -F 32 /dev/sdX1` from the command line (after replacing the “X” with the correct letter for your USB drive). - Formatting with HFS+, as some sources indicate, didn’t work for me. -* Mount your drive and cd into it (as root: `# mkdir /mnt/usb && mount /dev/sdX1 /mnt/usb && cd /mnt/usb`). -* Create the directory `efi/boot/` in the current directory (`# mkdir -p efi/boot/`) — - (i.e., the full path of this directory is `/mnt/usb/efi/boot/` if your USB drive is mounted in `/mnt/usb/`). -* Copy either `bootIA32.efi` or `bootX64.efi` to the new directory (depending on whether you have a 32 or 64-bit system), - and rename the file to boot.efi. - * Old White Macbook needs `bootIA32.efi` -* Copy the downloaded LiveCD image to the new directory, and rename it to `boot.iso`. - -That’s all. The USB drive now contains two directories and two files, and should boot. -Make sure you used the file and directory names as provided here. For clarity, all that is -now on your USB drive is (relative to the root directory of that drive): -`/efi/boot/boot.iso` -`/efi/boot/boot.efi` - -In order to install Linux, I booted Kubuntu using the method described above, installed rEFInd -from there, which then allowed me to boot from a normal Live USB flash drive. I ended up installing -Arch Linux. The details and non-trivialities of the Linux installation will be described in a future -post. I didn’t manage to install Linux without installing rEFInd though, so in retrospect I might as -well have installed rEFInd on my new disc, mounted as an external disc to my other Linux computer. diff --git a/.vim/vimwiki/vimwiki/Server_Admin_MySQL.wiki b/.vim/vimwiki/vimwiki/Server_Admin_MySQL.wiki deleted file mode 100644 index ab9db5b..0000000 --- a/.vim/vimwiki/vimwiki/Server_Admin_MySQL.wiki +++ /dev/null @@ -1,6 +0,0 @@ -=== Grant User Privileges === -`GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON database. TO ''@'';` - -=== View User Privileges === -`SHOW GRANTS FOR ''@'';` - diff --git a/.vim/vimwiki/vimwiki/Server_Admin_Rsync.wiki b/.vim/vimwiki/vimwiki/Server_Admin_Rsync.wiki deleted file mode 100644 index 58d6f5a..0000000 --- a/.vim/vimwiki/vimwiki/Server_Admin_Rsync.wiki +++ /dev/null @@ -1,29 +0,0 @@ -==== RSync ==== -Basic Rsync Backup -`rsync -av source/ destination/` -To/From Remote -`rsync -av -e ssh source/ username@remotemachine:/path/to/destination/` - -=====Trailing Slashes _Do_ matter... Sometimes===== -Rsync cares about trailing slashes on the *source* argument. -For example, let `a` and `b` be two directories with the file `foo` initially in `a`: -`rsync -a a b` -produces `b/a/foo` whereas -`rsync -a a/ b` -produces `b/foo`. A trailing slash on the destination has no effect. - -=====Incremental Backups using Rsync===== -Needs rsync v.2.5.7 or later -{{{ -rm -rf backup_folder.1 -mv backup_folder.0 backup_folder.1 # Obviously, can have as many backups copies as you want -rsync -a --delete --link-dest=../backup_folder.1 source_directory/ backup_folder.0/ -}}} -If running an older rsync: -{{{ -mv backup_folder.1 backup_folder.tmp -mv backup_folder.0 backup_folder.1 -mv backup_folder.tmp backup_folder.0 -cp -al backup_folder.1/. backup_folder.0 -rsync -a --delete source_directory/ backup_folder.0/ -}}} diff --git a/.vim/vimwiki/vimwiki/Slackware_EncFS.wiki b/.vim/vimwiki/vimwiki/Slackware_EncFS.wiki deleted file mode 100644 index 293a4a4..0000000 --- a/.vim/vimwiki/vimwiki/Slackware_EncFS.wiki +++ /dev/null @@ -1,6 +0,0 @@ -Mount: -encfs - -Unmount: -fusermount -u - diff --git a/.vim/vimwiki/vimwiki/bible_esv_galations_5.13-14.wiki b/.vim/vimwiki/vimwiki/bible_esv_galations_5.13-14.wiki deleted file mode 100644 index d4a6360..0000000 --- a/.vim/vimwiki/vimwiki/bible_esv_galations_5.13-14.wiki +++ /dev/null @@ -1,3 +0,0 @@ -13 For you were called to freedom, brothers. Only do not use your freedom as an opportunity for the flesh, but through love serve one another. -14 For the whole law s fulfilled in one word: "You shall love your neighbor as yourself." -15 But if you bite and devour one another, watch out that you are not consumed by one another. diff --git a/.vim/vimwiki/vimwiki_html/D_and_D.html b/.vim/vimwiki/vimwiki_html/D_and_D.html deleted file mode 100644 index 667b50f..0000000 --- a/.vim/vimwiki/vimwiki_html/D_and_D.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - -D_and_D - - - - - -

-Loots from 3/2/2015 -800 SP -150 GP -4 Goblets with Moonstones -Misty Step Scroll -Lightning Bolt Scroll -

- - - diff --git a/.vim/vimwiki/vimwiki_html/Linux_Slackware_Wifi.html b/.vim/vimwiki/vimwiki_html/Linux_Slackware_Wifi.html deleted file mode 100644 index 857ae38..0000000 --- a/.vim/vimwiki/vimwiki_html/Linux_Slackware_Wifi.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Linux_Slackware_Wifi - - - - -

Slackware Wifi (wicd)

-

-Install wicd package from the extras folder of the cd -

- - - diff --git a/.vim/vimwiki/vimwiki_html/Mac_EFI_Jailbreak.html b/.vim/vimwiki/vimwiki_html/Mac_EFI_Jailbreak.html deleted file mode 100644 index 80a91f9..0000000 --- a/.vim/vimwiki/vimwiki_html/Mac_EFI_Jailbreak.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - -Mac_EFI_Jailbreak - - - - -

"Jailbreaking" a Mac

- -

-/EFI/boot/refind_ia32.efi ?> /EFI/boot/bootia32.efi -

-

Steps

-
    -
  • -Boot into a live CD - -
  • -Install rEFInd - -
  • -Setup system like normal - -
- -

Requirements

- - -

Installation

-
    -
  • -Ensure the ISO file will fit on your USB flash drive. Backup important content from your drive — it will be erased. - -
  • -Make one large partition on your USB flash drive, using e.g. (g)parted, (c)gdisk, or (c)fdisk. - You can use either a GUID partition table (GPT — unless you’re using (c)fdisk) or an MSDOS/MBR partition table, both will work. Use “Microsoft basic data” (code 0700) as the partition type. - -
  • -Format the partition with FAT32. (g)parted can do this. Alternatively, you can type - mkfs.vfat -F 32 /dev/sdX1 from the command line (after replacing the “X” with the correct letter for your USB drive). - Formatting with HFS+, as some sources indicate, didn’t work for me. - -
  • -Mount your drive and cd into it (as root: # mkdir /mnt/usb && mount /dev/sdX1 /mnt/usb && cd /mnt/usb). - -
  • -Create the directory efi/boot/ in the current directory (# mkdir -p efi/boot/) — - (i.e., the full path of this directory is /mnt/usb/efi/boot/ if your USB drive is mounted in /mnt/usb/). - -
  • -Copy either bootIA32.efi or bootX64.efi to the new directory (depending on whether you have a 32 or 64-bit system), - and rename the file to boot.efi. - -
      -
    • -Old White Macbook needs bootIA32.efi - -
    -
  • -Copy the downloaded LiveCD image to the new directory, and rename it to boot.iso. - -
- -

-That’s all. The USB drive now contains two directories and two files, and should boot. -Make sure you used the file and directory names as provided here. For clarity, all that is -now on your USB drive is (relative to the root directory of that drive): -/efi/boot/boot.iso -/efi/boot/boot.efi -

- -

-In order to install Linux, I booted Kubuntu using the method described above, installed rEFInd -from there, which then allowed me to boot from a normal Live USB flash drive. I ended up installing -Arch Linux. The details and non-trivialities of the Linux installation will be described in a future -post. I didn’t manage to install Linux without installing rEFInd though, so in retrospect I might as -well have installed rEFInd on my new disc, mounted as an external disc to my other Linux computer. -

- - - diff --git a/.vim/vimwiki/vimwiki_html/Server_Admin_MySQL.html b/.vim/vimwiki/vimwiki_html/Server_Admin_MySQL.html deleted file mode 100644 index 5ac7830..0000000 --- a/.vim/vimwiki/vimwiki_html/Server_Admin_MySQL.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - -Server_Admin_MySQL - - - - -

Grant User Privileges

-

-GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON database.<table|*> TO '<user>'@'<localhost|domain>'; -

- -

View User Privileges

-

-SHOW GRANTS FOR '<user>'@'<localhost|domain>'; -

- - - diff --git a/.vim/vimwiki/vimwiki_html/Server_Admin_Rsync.html b/.vim/vimwiki/vimwiki_html/Server_Admin_Rsync.html deleted file mode 100644 index 5c6d5cf..0000000 --- a/.vim/vimwiki/vimwiki_html/Server_Admin_Rsync.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - -Server_Admin_Rsync - - - - -

RSync

-

-Basic Rsync Backup -rsync -av source/ destination/ -To/From Remote -rsync -av -e ssh source/ username@remotemachine:/path/to/destination/ -

- -
Trailing Slashes Do matter... Sometimes
-

-Rsync cares about trailing slashes on the source argument. -For example, let a and b be two directories with the file foo initially in a: -rsync -a a b -produces b/a/foo whereas -rsync -a a/ b -produces b/foo. A trailing slash on the destination has no effect. -

- -
Incremental Backups using Rsync
-

-Needs rsync v.2.5.7 or later -

-
-rm -rf backup_folder.1
-mv backup_folder.0 backup_folder.1 # Obviously, can have as many backups copies as you want
-rsync -a --delete --link-dest=../backup_folder.1 source_directory/ backup_folder.0/
-
-

-If running an older rsync: -

-
-mv backup_folder.1 backup_folder.tmp
-mv backup_folder.0 backup_folder.1
-mv backup_folder.tmp backup_folder.0
-cp -al backup_folder.1/. backup_folder.0
-rsync -a --delete source_directory/ backup_folder.0/
-
- - - diff --git a/.vim/vimwiki/vimwiki_html/Slackware_EncFS.html b/.vim/vimwiki/vimwiki_html/Slackware_EncFS.html deleted file mode 100644 index ce84773..0000000 --- a/.vim/vimwiki/vimwiki_html/Slackware_EncFS.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - -Slackware_EncFS - - - - -

-Mount: -encfs <encoded-dir> <mount-pount> -

- -

-Unmount: -fusermount -u <mount-point> -

- - - diff --git a/.vim/vimwiki/vimwiki_html/bible_esv_galations_5.13-14.html b/.vim/vimwiki/vimwiki_html/bible_esv_galations_5.13-14.html deleted file mode 100644 index 2f96d6d..0000000 --- a/.vim/vimwiki/vimwiki_html/bible_esv_galations_5.13-14.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - -bible_esv_galations_5.13-14 - - - - -

-13 For you were called to freedom, brothers. Only do not use your freedom as an opportunity for the flesh, but through love serve one another. -14 For the whole law s fulfilled in one word: "You shall love your neighbor as yourself." -15 But if you bite and devour one another, watch out that you are not consumed by one another. -

- - -