Linux: Difference between revisions

From DWIKI
Line 26: Line 26:
*dmidecode
*dmidecode


 
===Force reboot===
I found sometimes 'reboot' and 'shutdown' don't work in virtual machines, in that case try:
#sync
echo s > /proc/sysrq-trigger
#optionally umount
echo u > /proc/sysrq-trigger
#reboot
echo b > /proc/sysrq-trigger


[[Category: System Administration]]
[[Category: System Administration]]

Revision as of 17:48, 30 June 2013

Linux is a free Unix-type operating system originally created by Linus Torvalds with the assistance of developers around the world. Developed under the GNU General Public License , the source code for Linux is freely available to everyone.

Links


Rescue CDs

Administration


FAQ

List hardware

  • lshw
  • dmidecode

Force reboot

I found sometimes 'reboot' and 'shutdown' don't work in virtual machines, in that case try:

#sync
echo s > /proc/sysrq-trigger
#optionally umount
echo u > /proc/sysrq-trigger
#reboot
echo b > /proc/sysrq-trigger