Sunday, 8 February 2015

Replace default notepad

 There is a little trick to replace windows' default text editor to anyone.

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe]
"Debugger"="c:\\Program Files\\EmEditor\\EmEditor.exe"

There is only issue with this:
because of the Debugger string purpose of set up a debugger application the notepad called with the following form:
c:\\Program Files\\EmEditor\\EmEditor.exe c:\\windows\\notepad.exe
So in emeditor always try to open notepad.exe too.

So better alternative use the http://www.binaryfortress.com/notepadreplacer/
or you have to write a wrapper exe.

Saturday, 7 February 2015

Windows bootable pendrive

Copy dvd content to pendrive.

BOOTSECT.EXE/NT60 d:

Get the progress of dd

I found a good article how to get the progress of dd.

Show progress during dd copy

dd is a popular, generic command-line tool for copying files from 1 location to another. It is often used to copy entire disk images.

Like many Linux command line tools, it operates silently unless something unexpected happens. Its lack of visual progress feedback is a nice feature for scripting. However, it can leave you wondering about its progress if you are interactively dd-copying a large disk.

To illustrate, you run the following (valid, but perhaps not very useful) dd copy:
$ dd if=/dev/random of=/dev/null bs=1K count=100 


It will run for a few minutes as it copies (and immediately discards) 100 blocks of randomly generated data, each of size 1 KB.

To get a progress report while dd is running, you need to open another virtual terminal, and then send a special USR1 signal to the dd process.

First, find out the process id of the dd process by running the following in the new virtual terminal.
$ pgrep -l '^dd$'
8789 dd
$


To send the USR1 signal to the dd prcoess:
$ kill -USR1  8789
$


Note that as soon as the USR1 signal is detected, dd will print out the current statistics to its STDERR.

$ dd if=/dev/random of=/dev/null bs=1K count=100
0+14 records in
0+14 records out
204 bytes (204 B) copied, 24.92 seconds, 0.0 kB/s


After reporting the status, dd will resume copying. You can repeat the above kill command any time you want to see the interim statistics. Alternatively, you can use the watch command to execute kill at a set interval.
$ watch -n 10 kill -USR1 8789
 
Ref.:http://linuxcommando.blogspot.hu/2008/06/show-progress-during-dd-copy.html