Blogger
Stackedit
Slides
Prezi
Slides
Ascii graph
Speak
sm
https://github.com/chusiang/sm
CTF
Convert hex string
http://www.unit-conversion.info/texttools/hexadecimal/
qira
python
python package
numpy
https://github.com/chusiang/sm
http://www.unit-conversion.info/texttools/hexadecimal/
numpy
git clone https://github.com/bananaappletw/Kali2-For-CTF
cd Kali2-For-CTF/
./install.sh
http://tech.marsw.tw/blog/2014/09/03/getting-started-with-python-in-ten-minute
http://www.thelearningpoint.net/computer-science/learning-python-programming-and-data-structures
sudo apt-get update && apt-get upgrade -y
dpkg --add-architecture i386
apt-get update
apt-get install ia32-libs
apt-get install gcc-multilib
On a BIOS/GPT configuration a BIOS boot partition is required. GRUB embeds its core.img into this partition.Assume your disk is 20GB
gdisk /dev/sda
n
Enter
Enter
+1M
ef02
n
Enter
Enter
+1G
8200
n
Enter
Enter
Enter
8300
w
mkfs.ex4 /dev/sda3
mkswap /dev/sda2
swapon /dev/sda2
mount /dev/sda3 /mnt
pacstrap -i /mnt base base-devel
genfstab -U -p /mnt >> /mnt/etc/fstab
arch-chroot /mnt /bin/bash
vi /etc/locale.gen
en_US.UTF-8 UTF-8
locale-gen
echo LANG=en_US.UTF-8 > /etc/locale.conf
export LANG=en_US.UTF-8
ln -s /usr/share/zoneinfo/Asia/Taipei /etc/localtime
hwclock --systohc --utc
echo bananaapple.nctucs.net > /etc/hostname
systemctl enable dhcpcd.service
passwd
pacman -S grub
grub-install --target=i386-pc --recheck --debug /dev/sdx
grub-mkconfig -o /boot/grub/grub.cfg
exit
reboot