Friday, November 24, 2017

Nuking OSX's Logical Volume Group (LVG)

Nuking OSX's Logical Volume Group (LVG). Just because, i don't like your stinking control software. 

Command+R
Open Terminal
(make sure you are root #) 

#diskutil cs list
#diskutil cs delete

UUID of Logical Volume Group


Monday, November 6, 2017

I'm lazy but i want a new version of nmap running on OpenBSD 5.9. But sadly lazy build (./configure && gmake && gmake install) just won't cut it. I'm not lazy to figure out why it doesn't. so finally got it working  


# uname -psvr 

OpenBSD 5.9 GENERIC#1761 amd64
# pwd 
/root/nmap-7.60
# ./configure --without-zenmap --with-libpcap=included
# gmake && gmake install
# nmap -V
Nmap version 7.60 ( https://nmap.org )
Platform: x86_64-unknown-openbsd5.9
Compiled with: nmap-liblua-5.3.3 openssl-2.3.2 nmap-libssh2-1.8.0 libz-1.2.8 nmap-libpcre-7.6 nmap-libpcap-1.7.3 nmap-libdnet-1.12 ipv6
Compiled without:
Available nsock engines: kqueue poll select


OK back to being lazy again :) 

Thursday, August 17, 2017

OpenBSD and Tor

Building tor from source tree.

export PKG_PATH="ftp://ftp.hostserver.de/pub/OpenBSD/5.9/packages/amd64/"
pkg_add -iv libevent
wget https://www.torproject.org/dist/tor-0.3.0.10.tar.gz
tar zxvf tor-0.3.0.10.tar.gz
cd tor-0.3.0.10
./configure --prefix=/usr/local
gmake
gmake install

I'll post how i configure shit when, I have time.


Wednesday, February 8, 2017

Override OpenJDK with Oracle's JDK8



I'm so lazy so here it is plain and simple. works on Ubuntu'ish Linux

cat > /etc/apt/sources.list.d/webupd8team-java.list<< EOF
deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main
EOF
Added keys to the repo
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
Update Packages
apt-get update
apt-get install oracle-java8-installer
Done!