start new:
tmux
start new with session name:
tmux new -s myname
#!/bin/sh | |
# | |
# `7MN. `7MF' | |
# __, MMN. M | |
#`7MM M YMb M pd""b. | |
# MM M `MN. M (O) `8b | |
# MM M `MM.M ,89 | |
# MM M YMM ""Yb. | |
#.JMML..JML. YM 88 | |
# (O) .M' |
# OBJECTIVE: Install Arch Linux with encrypted root and swap filesystems and boot from UEFI. | |
# Note: This method supports both dedicated Arch installs and those who wish to install Arch on a multi-OS-UEFI booting system. | |
# The official Arch installation guide contains details that you should refer to during this installation process. | |
# That guide resides at: https://wiki.archlinux.org/index.php/Installation_Guide | |
# Download the archlinux-*.iso image from https://www.archlinux.org/download/ and its GnuPG signature. | |
# Use gpg --verify to ensure your archlinux-*.iso is exactly what the Arch developers intended. For example: |
git clone https://github.com/fatih/vim-go.git ~/.vim/pack/plugins/start/vim-go | |
make sure you have your $GOPATH setup in your ~/.bashrc | |
open vim and type :GoInstallBinaries | |
use :GoUpdateBinaries to update the installed binaries | |
For autocompletion: | |
https://github.com/roxma/SimpleAutoComplPop | |
git clone https://github.com/roxma/SimpleAutoComplPop.git ~/.vim/pack/plugins/start/SimpleAutoComplPop |
#!/usr/bin/env ruby | |
# Christian Fernandez | |
# rek2wilds bbk | |
# cfernandez hispagatos binaryfreedom | |
require 'open3' | |
require 'socket' | |
def monitor(int_name) |
#!/usr/bin/env ruby | |
# HISPAGATOS.org | |
# probe of comcept to capture user password. | |
# when attacker compromise a regular use shell account, he can | |
# jump into root or steal user password by adding into the user enviroment | |
# the path where this sudo script sits example PATH=/theplace:$PATH etc notice that is BEFORE | |
# the rest of the path entries so any program in this path will run BEFORE the real program. | |
# [email protected] http://hispagatos.org | |
Installing Arch: | |
sudo vim /etc/pacman.conf | |
Update packages list: sudo pacman -Syy | |
run sudo pacman -Syu before installing any software (to update the repositories first) | |
* Timing issue: | |
- Change hardware clock to use UTC time: | |
sudo timedatectl set-local-rtc 0 |
Installing Arch: | |
sudo vim /etc/pacman.conf | |
Update packages list: sudo pacman -Syy | |
run sudo pacman -Syu before installing any software (to update the repositories first) | |
* Timing issue: | |
- Change hardware clock to use UTC time: | |
sudo timedatectl set-local-rtc 0 |