Posts

AppleSingle and AppleDouble magic number signature

Below magic number (the four 4-bytes) in header for AppleDouble and AppleSingle file format.. The magic signature of AppleSingle files is 0x00051600, while it is 0x00051607 for AppleDouble files Source:  http://www.macdisk.com/asaden.php /alak

Second Time

Freeze agaiN! :D //alak

Service does not support chkconfig

I wanted to add a script to run automatically on startup/reboot. chkconfig it is. my original script: #!/bin/bash echo "ayam" > /tmp/test.txt But when adding to chkconfig, using chkconfig --add received the error: Service does not support chkconfig. Googling, found this two URLS: - http://linux.about.com/library/cmd/blcmdl8_chkconfig.htm - http://blog.tuxforge.com/service-does-not-support-chkconfig/ But the 2nd link seems not that proper. We still need the "#" before chkconfig word. My final script was as below: #!/bin/bash # chkconfig: 2345 95 20 # description: Description of the script # processname: Echoing ayam. echo "ayam" > /tmp/test.txt Now works like a charm. //alak

Enable/Disable ping replies although Windows firewall is up

How to still alow ping reply although you already enable Widows Firewall enable ping replies: netsh firewall set icmpsetting 8 disable ping replies: netsh firewall set icmpsetting 8 disable Ripped off from some site. /alak

FUDCon APAC: KL 2012 : Pre-registration & funding request is now open

Image
FUDCon APAC: KL 2012 : Pre-registration & funding request is now open!! Location: UCTI-APIIT, Bukit Jalil, Kuala Lumpur Date: 18-20th May 2012 Wiki: http://fedoraproject.org/wiki/FUDCon:KualaLumpur_2012 FUDCon is the Fedora Users and Developers Conference , a major free software event held in various regions around the world, usually annually per region by the Fedora Project , a GNU/Linux distribution community. FUDCon is a combination of sessions, talks, workshops, and hackfests in which  contributors work on specific initiatives. Topics include infrastructure, feature development, community building, general management and governance, marketing, testing and QA, packaging, etc. This year, Malaysia gets the opportunity to host this premier event for the Asia Pacific region and we are inviting everyone, developers and users alike,to participate in this event which will be a span of 3 days, at The AsiaPacific University College of Technology and Innovation (UCTI ...

Developer Trace in SAP

Two good references: wadehel is diz developer trace? http://help.sap.com/saphelp_nw04/helpdata/en/1f/8311664bc511d189750000e8322d00/content.htm How to get this "trace file"? http://help.sap.com/saphelp_nw04/helpdata/en/95/5120275a8449ada5fedd2d77f6f6fb/content.htm Basically its SAP logging. File can be retrieved from host locally

Testing SAP conn using NIPING with SAPRouter

To test NIPING direct simply something like: niping.exe -c -H ip.add.re.ss In case to test with SAPRouter, its soemthing like: niping.exe -c -H /H/202.171.46.160/S/3299/H/192.168.13.103/S/3200 A reference from here :  http://mysapbasis.wordpress.com/2010/02/08/niping-syntax/ /alak