Actually my Cubietruck is exactly four years old and still performing great.
Board production is still alive and buyable fo 69€.
This post is just a review of a great product, use cases, modifications and recommendations.
[Read more…]
Actually my Cubietruck is exactly four years old and still performing great.
Board production is still alive and buyable fo 69€.
This post is just a review of a great product, use cases, modifications and recommendations.
[Read more…]
After Debian-Upgrade to version 9, usual active FTP-connection-support was not more present as expected.
All connections from a FTP-client run into a error message and connection-hang without the remote directory listing: [Read more…]
Subnet configuration on a Hetzner dedicated root server (EX40) is a bit tricky than a normal additional single ip addresses that you can buy for 1EUR. So I wrote the configuration down: [Read more…]
Since Debian 6 (squeeze) this is the working method to disable permanent IPv6 implementation. This method is also reboot safe.
cat /etc/sysctl.d/disable-ipv6.conf net.ipv6.conf.all.disable_ipv6=1 |
cat /etc/sysctl.d/disable-ipv6.conf net.ipv6.conf.all.disable_ipv6=1
If you have no possibility to restart your system yet, this change can be made immediately work by executing:
sysctl -p /etc/sysctl.d/disable-ipv6.conf |
sysctl -p /etc/sysctl.d/disable-ipv6.conf
Anothe method – perfect for firewall scripts:
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 |
echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
Inetd listens for connections on certain sockets. When a connection is found on one of its sockets, it decides what service the socket corresponds to, and invokes a program to service the request. The server program is invoked with the service socket as its standard input, output and error descriptors.
Essentially, inetd allows running one daemon to invoke several others [Read more…]