montage -label '%f' -geometry +4+4 -pointsize 20 -tile 4x6 *.tiff mtg.jpg
i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...
Wednesday, June 21, 2017
ImageMagick: montage images into one
Labels:
imagemagick
Tuesday, June 13, 2017
ImageMagick: Flatten image results in white image
Instead of -flatten option try using -layers trim-bounds
Labels:
imagemagick
Monday, June 12, 2017
UFW: forward trafic on a port 8333 to different computer/ip and back
Full node is running on: ip_full_node
Redirection is done on server: ip_of_uwf_server
*nat
:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
-F
-A PREROUTING -i eth0 -p tcp --dport 8333 -j DNAT --to-destination ip_full_node:8333
-A POSTROUTING -p tcp -d ip_full_node --dport 8333 -j SNAT --to-source ip_of_uwf_server
-A POSTROUTING -s 10.8.0.0/8 -o eth0 -j MASQUERADE
COMMIT
Based on: https://serverfault.com/a/586553
Subscribe to:
Posts (Atom)