FAQ

Just another WordPress weblog

Monday, August 11, 2008

Mirror Harddisks with Qparted-LiveCD

– Locally: Start up the system with the qparted-LiveCd.
dd if=/dev/hdx of=/dev/hdy bs=1M

– Over the net: Start up the system with Ubuntu LiveCd.
target:
ifconfig -a
nc -l -p 7000 | gzip -dfc | dd of=/dev/sdx bs=4M
source:
dd if=/dev/sdx bs=4M | gzip -cf | nc 192.168.0.120 7000 -q 10

posted by admin at 12:19 am  

Monday, August 4, 2008

Add modula support to Source Insight

Options->Document Options:

Make new language, make new document type, add filter for document type
– use option from Default type,
– include when adding to projects
– filter: *.mod;*.def
– Symbol Window

Add parsing to Language:

– Add comments parsing: Multiline, starts with (* ends with *)
– Functions:PROCEDURE\w*\(.*\)[;(]

posted by admin at 1:29 am  

Powered by WordPress