Install Requirements Packages
opkg update && opkg install ca-certificates zsh curl git-httpInstall oh-my-zsh
| ** Если нет 1.5 часов, можно пропустить dist-upgrade, === Advanced === и disk shrink. Сэкономит полчаса | |
| Подробная установка: https://youtu.be/nZ3mDnpZeic | |
| https://kali.download/base-images/*/*-installer-amd64.iso.torrent | |
| /etc/network/interfaces - change interface to eth0 | |
| static | |
| address 192.168.192.64 | |
| netmask 255.255.255.0 |
This is the process of setting up erlang, rebar3, and cowboy for a Hello World, starting with a clean Debian 8 install.
Update apt and install deps:
root@046edcaea45a:~# apt-get update
root@046edcaea45a:~# apt-get install erlang erlang-dev gcc
root@046edcaea45a:~# wget https://s3.amazonaws.com/rebar3/rebar3
root@046edcaea45a:~# mkdir ~/bin/
root@046edcaea45a:~# mv rebar3 ~/bin/
root@046edcaea45a:~# chmod +x ~/bin/rebar3 | ffmpeg -i input.m4v -pix_fmt rgb24 -r 10 -y -s [width]x[height] output.gif |
| import com.fasterxml.jackson.annotation.JsonPropertyOrder; | |
| import com.fasterxml.jackson.databind.ObjectWriter; | |
| import com.fasterxml.jackson.dataformat.csv.CsvMapper; | |
| import com.fasterxml.jackson.dataformat.csv.CsvSchema; | |
| import java.io.BufferedOutputStream; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStreamWriter; |