# start all installed services
for a in $(find -L /usr/local/etc/init.d -type f); do
[ -x $a ] && $a start &
done
or# start only listed services
for a in gpm openssh open-vm-tools bind php-fpm nginx httpd; do
[ -x /usr/local/etc/init.d/$a ] && /usr/local/etc/init.d/$a start &
done
... I still like TC although the learning curve is steep and information is scattered. The fact that the wiki seems to be down forever does not help to get to information (User authentication is temporarily unavailable. If this situation persists, please inform your Wiki Admin). ...There is a mirror of the Wiki here:
... 1 What are the official minimal specs for TC because i found out the hard way that it is not the advertised memory footprint that is on the site. ...That number changes over time as new releases come out. Resources are not dedicated to measuring it since the
... I can do trial and error to figure out the approx. minimal requirements ...Since you want to do more than simply boot, you will have to do that anyway. Any "minimum RAM numbers" assume
... 2 I still want to configure this as a bridge and could not figure out if there is a ready made TCE. ...What application(s)/daemons did you start under Debian to accomplish your goal? That information can be used to see
... I got it working with a Debian install that i set as autoboot first VM when the ESX host starts and it works like a charm. ...
... Still the way this OS behaves is fundamently different then other linux variants. The concept that it creates an running environment from essentially merging the content of several archive files is very smart. However when i look at what most people are trying to do with this OS is making a machine that is not completly stateless which is the opposite of what this OS is very good at.So, your one of those guys who pays attention, reads documentation, and takes the time to comprehend what's going on?
apt install bridge-utils
Edit: /etc/network/interfaces
auto lo br0
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface br0 inet static
bridge_ports eth0 eth1
address 192.168.111.1
netmask 255.255.255.0
gateway 192.168.111.3
[code][ 36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[ 36.176536] pcm512x 1-004d: Failed to get supplies: -517
[ 36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517[/code]
[ 36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[ 36.176536] pcm512x 1-004d: Failed to get supplies: -517
[ 36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517
... Still reading documentation though trying to find how to configure network interfaces in TC. ...This is one way of doing it:
tc@E310:~$ cat /opt/eth0.sh
#!/bin/sh
pkill udhcpc
ifconfig eth0 192.168.1.35 netmask 255.255.255.0 broadcast 192.168.1.255 up
route add default gw 192.168.1.1
echo nameserver 192.168.1.1 > /etc/resolv.conf
echo nameserver 68.237.161.12 >> /etc/resolv.conf
tc@E310:~$
/opt/eth0.sh gets called from /opt/bootlocal.sh.... did a tce-load net-bridging-5.4.3-tinycore but that does not seem to have brctl in it but it looks like the core items for bridging are in there. ...Those are kernel modules. I don't see any extensions in the repository that depend on them yet.
... Any reason why there is so many differentiation between all repository folders of all builds? ...Extensions usually get added based on architecture, sometimes by a member submitting it, and sometimes because