*Empty MediaWiki Message*

This commit is contained in:
Daniel.plominski 2015-03-18 02:27:47 +00:00
parent 5cbd2f0293
commit 3664b5faee
1 changed files with 36 additions and 0 deletions

36
LXC.mw
View File

@ -297,3 +297,39 @@ Container Upgrade
<source lang="bash">
apt-get update; apt-get clean; apt-get update; apt-get upgrade
</source>
Container Dist-Upgrade
<source lang="bash">
apt-get dist-upgrade
</source>
Container von systemd auf sysvinit-core umstellen
<source lang="bash">
apt-get install sysvinit-core
apt-get autoremove
apt-get install --reinstall sysvinit-core
</source>
Container neustarten:
<source lang="bash">
@HOST!
lxc-stop -n bind
lxc-start -n bind
</source>
Bei Fehler:
<source lang="bash">
/etc/init.d/udev-finish: 21: exec: /lib/udev/udev-finish: not found
</source>
dann ein:
<source lang="bash">
apt-get remove --purge udev
</source>