cleaned some files up

This commit is contained in:
2017-10-09 14:22:05 -04:00
parent 127a2caac1
commit b81a5a9c2f
7 changed files with 21 additions and 171 deletions

View File

@@ -1,5 +1,14 @@
# Random things not to lose
## Auto start
`@reboot /usr/local/bin/forever start -o /var/log/forver.out.log -e /var/log/sorver.err.log -c "/usr/local/bin/codebox run -p 5000" /workspace/`
http://stackoverflow.com/a/13388741/3140931
```crontab
@reboot /usr/local/bin/forever start -o /var/log/forver.out.log -e /var/log/sorver.err.log -c "/usr/local/bin/codebox run -p 5000" /workspace/`
```
## LXC permission issue
```bash
sudo cgm create all virt
sudo cgm chown all virt $(id -u virt) $(id -g virt)
```