From the tutorial in the link above, the easiest way IMHO is to use Julien Manici's Windows 7 Logon Background Changer. The application's title speak for itself - it does exactly what it says it does - and it is really simple and hassle-free. And to top it off, it is FREE!!!
Monday, 22 August 2011
Changing the Windows 7 Logon Screen image
There are numerous ways to change the background of the Logon Screen in Windows 7. All possible methods, including the steps, can be found in the tutorial below:
Friday, 19 August 2011
Fixing problem of NFS mounts specified in /etc/fstab not being mounted at boot
When using SUSE11 (and possibly other flavours of Linux), there could be issues in nfs mount to successfulyl get mounted at boot up time, even though already specified in /etc/fstab.
There is a basic workaround for this, where the command "mount -a" can be manually entered when you log into the system the first time after each boot up.
However, if you wanted to fix this once and for all, there here's the solution. Open the file /etc/init.d/nfs, and change the following lines (the text in green are the additions that need to be made):
if test "$nfs" = yes ; then
sleep 10 && mount -at nfs,nfs4 > /dev/null 2>&1
sleep 2
fi
The value of "10" for the first sleep could be changed to a lower number, e.g. 5, but I decided to choose 10 just to be sure that the network was up and running for the nfs mount to succeed. This sleep period value could be increased/decreased to suit your needs.
Friday, 8 July 2011
Some "Must-Have" general plugins for Eclipse
As a fairly new Eclipse user, primarily focusing on C/C++ development, besides the Eclipse CDT plugin, I found that there are a couple of plugins which I would recommend to anyone using Eclipse:
- AnyEdit (http://andrei.gmxhome.de/anyedit/)- AnyEdit is a "swiss army knife" for all Eclipse editors, where it adds several new tools to the context menu of text- based Eclipse editors, to output consoles, to Eclipse main menu and editor toolbar
- StartExplorer (http://startexplorer.sourceforge.net/) - offers a convenient integration of the Windows Explorer, the Windows command line, Windows default system applications and the clipboard into Eclipse
Both these plugins can be found on the Marketplace in Eclipse. So, if you require "express" setup, it does not require manual downloading and installation of the packages.
AnyEdit features
- tabs <-> spaces convertion on multiple files or entire directories and supports also file exclusion filter for tabs <-> spaces action
- automatically remove trailing whitespaces and/or perform tabs<->spaces conversion on a "save" action
- automatically create a new line at the end of the file if the last line was not terminated by new line (useful for Linux development)
- adds "Save All", "Open File" and "Show whitespace in editor" buttons to the global Eclipse toolbar
- adds "Open File", "Open Type" and "Save to file..." actions to supported output consoles and "Save to file..." toolbar button to the Console view
StartExplorer features
It adds a context menu with the following operations:
- Show resource(s) in Windows Explorer
- Start this (these) file(s) with system editor
- Start cmd.exe here
- Copy resource path to clipboard
- Custom Commands
Thursday, 23 June 2011
MP3 tagging tool
TagScanner is a great free MP3 tagging tool. It has an extensive set of tools providing the ability to modify/edit tags on music files (batch and individual files), batch renaming of files using the tags, etc.
The website hosting this software:
Thursday, 16 June 2011
Keeping notes online and accessing them from anywhere
A great tool to keep notes online:
Evernote: http://www.evernote.com
It allows for creation of personal notes, saving of URLs, webpages, and pictures from web pages.
It allows synchronization of notes between various PCs, and so you can view your notes from any PC, even when offline.
Friday, 18 March 2011
Recover data from a failing drive (possibly with bad sectors)
ddrescue is a fabulous tool/utility available in Linux. It can help to recover data from any failing hard disk. If your drive has failed, i.e. your drive cannot be detected by the BIOS, ddrescue will be of no help and the drive would need to be sent to a data recovery expert (who will charge you hundreds of dollars to recover what ever data possible).
ddrescue is available on SystemRescueCD. SystemRescueCD is exactly what it says it is - a system rescue CD, which uses Linux, and boots up either from a CD or a USB stick. It is possibly the one most important piece of software which I would advice any PC user to have. Or course, you would need to be familiar with the Linux OS and you would need to have some basic knowledge of the Linux interface. This article will not dive into the details of the SystemRescueCD. So, let's get back to ddrescue.
The ddrescue manual can be found at http://www.gnu.org/software/ddrescue/manual/ddrescue_manual.html.
NOTE: In the steps below, "/dev/sdc" is the drive which has the failing drive. "/dev/sdb" is the good/new drive, which is the destination to copy the data to. "/mnt/usbstick/ddrescuelog.log" is the logfile which will be created (if you do not have this log file, re-trying failures or resuming recovery if the system needs to be shutdown will not be possible). Replace the above with the appropriate paths as needed for your own purposes.
Steps to recover as much data possible from a drive which has bad sectors:
1. Copy as much data as possible, without retrying or splitting sectors:
ddrescue --no-split /dev/sdc /dev/sdb /mnt/usbstick/ddrescuelog.log
2. Now let it retry previously detected errors 3 times:
ddrescue -r 3 /dev/sdc /dev/sdb /mnt/usbstick/ddrescuelog.log
3. Run successive passes like this to use the log file to only read the gaps with errors:
ddrescue -r 3 --complete-only /dev/sdc /dev/sdb /mnt/usbstick/ddrescuelog.log
4. Now let it retry previous errors 3 times, using uncached reads:
ddrescue --direct -r 3 /dev/sdc /dev/sdb /mnt/usbstick/ddrescuelog.log
5. If that fails, try again but retrimmed, so it tries to reread full sectors:
ddrescue --direct --retrim -r 3 /dev/sdc /dev/sdb /mnt/usbstick/ddrescuelog.log
These steps should be somewhat sufficient to retrieve as much data as possible from a failing drive. There is not guarantee that all the data will be able to be retrieved. Only data from sectors which do not have any physical damage will be able to be retrieved.
It helped me.
For other links on this matter, you can also refer to the following links:
What I have not tried, which these websites suggest are the following:
- ntfsfix /dev/sdc
- fsck -t ntfs
- fsck.ntfs
Labels:
bad sector,
data,
ddrescue,
disk drive,
failing,
hard disk,
recover
Subscribe to:
Posts (Atom)