Daily Archives: June 26, 2009

To Count Number of files in Dir & Sub dir

ls -laR | grep -c “^-.*” Original post blogged on b2evolution.

Posted in Uncategorized | Leave a comment

How to Install Linux Remotely

1. Boot from 1st linux CD. 2. Then when the computer boots, type in this parameter: 3. linux vnc vncpassword=123456 (minimum 6 characters) 4. Press Enter, then the kernel will be loaded. After that, we will be asked how to … Continue reading

Posted in Uncategorized | Leave a comment

Linux: BAK_***restore.sh

#!/bin/sh ############################################# # # SYSTEM NAME : # SUBSYSTEM : # SHELL_NAME : RES_***restore.sh # FUNCTION : restore OS image for **** # USAGE : System Restore # CALLED BY : NONE # CALL TO : NONE # RETURNS : … Continue reading

Posted in Uncategorized | Leave a comment

Linux: OS / System Restore

Start rescue 1.Check and Note backup start time # date 2. Insert Red Hat Enterprise Linux 4 AS(Update5) installation CD into CD-ROM 3. Reboot # shutdown -r now 4. After reboot, type “linux rescue” (start rescue) and press enter key … Continue reading

Posted in Uncategorized | Leave a comment

Linux: BAK_***backup.sh

#!/bin/sh ########################################## # # SYSTEM NAME : # SUBSYSTEM : # SHELL_NAME : BAK_***backup.sh # FUNCTION : backup OS image for **** # USAGE : SYSTEM Backup # CALLED BY : NONE # CALL TO : NONE # RETURNS : … Continue reading

Posted in Uncategorized | Leave a comment

Linux: System backup system

Start rescue 1.Check and Note backup start time # date 2. Insert Red Hat Enterprise Linux 4 AS(Update5) installation CD into CD-ROM 3. Reboot # shutdown -r now 4. After reboot, type “linux rescue” (start rescue) and press enter key … Continue reading

Posted in Uncategorized | Leave a comment

Windows: How to restore Active Desktop using registry key

Click on -> start -> run Type: regedit Then HKEY_Current_User Software Microsoft Internet Explorer Desktop Safe Mode Components DeskHTMLVersion (Decimal – 0) Original post blogged on b2evolution. Incoming search terms:how to restore active desktop using regedithow to restore active desktop … Continue reading

Posted in Uncategorized | Leave a comment

Linux: How to backup and restore file system

One method to move filesystems around, particularly if you are moving your root filesystem, is to use dump. Dump is a lower level backup program than tar, but this also makes dump quicker, because it doesn’t have all of the … Continue reading

Posted in Uncategorized | Leave a comment