This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installing Arch Linux with LUKS system encryption under LVM and Bios-GPT with Grub2 | |
Basic notes for memory recall | |
Originally written by Earnestly (#archlinux on Freenode) | |
+--------+---------------+----------------------------+-------------------------+ | |
| Mount | Size | Description | Device | | |
+--------+---------------+----------------------------+-------------------------+ | |
| - | 2M | 0xEF02 BIOS Boot Partition | /dev/sdX1 | | |
+--------+---------------+----------------------------+-------------------------+ | |
| /boot | 150M | Kernel & Grub | /dev/sdX2 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# chkconfig: 345 20 80 | |
# description: Play start/shutdown script - used by aergo-server | |
# processname: aergo | |
# | |
# Instalation: | |
# copy file to /etc/init.d | |
# chmod +x /etc/init.d/aergo | |
# chkconfig --add /etc/init.d/aergo | |
# chkconfig aergo on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install OpenJDK 1.7 | |
sudo yum install java-1.7.0-openjdk | |
# Check if the default java version is set to sun jdk | |
java -version | |
# If not then lets create one more alternative for Java OpenJDK 1.7 | |
alternatives --install /usr/bin/java java /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.19.x86_64/jre/bin/java 20000 | |
alternatives --install /usr/bin/java java /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.19.x86_64/jre/bin/java 20000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tasks: | |
thedownload: | |
rss: http://feedhere | |
series: &serieslist | |
- showa | |
- showb | |
- showc | |
thesort: | |
find: | |
path: '/my/shows' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 x 500G SSDs | |
btrfs raid1 | |
__active => mount to /var/lib/btrfs-arch | |
__active/ROOT => mount to / | |
__active/home => mount to /home | |
__snapshots | |
5 x 600G 10k SAS | |
btrfs raid10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
http://www.javaworld.com/article/2071275/core-java/when-runtime-exec---won-t.html?page=2 | |
*/ | |
import java.util.*; | |
import java.io.*; | |
class StreamGobbler extends Thread | |
{ | |
InputStream is; | |
String type; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pacman -Qs $1 | awk 'NR % 2 != 0 { print $1 }' | sed 's/local\///' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-07-28 12:41:56 | |
rbellamy@eanna i ~ % cd Development | |
2014-07-28 12:42:32 | |
rbellamy@eanna i ~/Development master % |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rbellamy@lamassu i ~/.vim/bundle/powerline % python2 /usr/bin/rst2man2.py CONTRIBUTING.rst | |
.\" Man page generated from reStructuredText. | |
. | |
.TH HOW TO CONTRIBUTE "" "" "" | |
.SH NAME | |
How to contribute \- | |
. | |
.nr rst2man-indent-level 0 | |
. | |
.de1 rstReportMargin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for k in `gsettings list-keys org.gnome.desktop.wm.keybindings`; do echo $k = `gsettings get org.gnome.desktop.wm.keybindings $k`; done |
OlderNewer