DIYers IT Zone

Computing, Hot Gadgets, Tech News, Tips & Tricks, & Personal Talk...

Yogyakarta Quake Victims Face Diseases

BANTUL (JAVA), May 31 (Bernama) — Thousands of victims in the Yogyakarta earthquake now face water-borne diseases following five days of not receiving fresh water.

The situation is made worse by the late delivery of aid to the interior regions including Bantul and Klaten.

The earthquake claimed nearly 5,000 lives while 230,000 more lost their homes.

Siti Saadiah, 42, said her house was completely destroyed in the earthquake and she and her husband and two children were putting up in a tent in the Dusun Bembem area.

She had to use murky water from a river to wash her clothes and to drink.

Her children suffered from fever and stomach ache since the earthquake, she said.

Saadiah hoped the relevant authorities would speed up aid to the victims.

The Malaysian Armed Forces (ATM) temporary hospital chief, Kol S. Jegathesan said the diseases would spread quickly once they struck due to the prevailing situation.

In another development, another 59 personnel from the Armed Forces, including four officers arrived here to set up a temporary hospital.

The hospital will be equipped with an operation hall and 100 beds.

He said the hospital would be able to provide treatment to 200 patients a day.

– BERNAMA

May 31, 2006 - 2:43 PM No Comments

First Look at SUSE Linux 10.1

Features

  • Linux kernel 2.6.16.13-4
  • X.org 6.9.0 (XGL/Compiz included but not enabled by default)
  • gcc 4.10/glibc 2.4
  • GNOME 2.12.2, KDE 3.5.1 desktop environments
  • OpenOffice.org 2.0.2 productivity suite
  • Mozilla Firefox 1.5.0.3 web browser
  • Evolution 2.6, Mozilla Thunderbird 1.5 email clients
  • GIMP 2.2.10 image editor
  • F-Spot 0.1.11 photo manager
  • Integrated Beagle 0.2.3 desktop search
  • K3b 0.12.14 CD/DVD burning software
  • Banshee 0.10.9, Amarok 1.3.8 music managers
  • Gaim 1.5 instant messenger
  • NetworkManager dynamic connection manager
  • XEN3/YaST integration
  • AppArmor application profiling/access control tool

Click here to download !

If u are new to suse linux and want to try it, kindly go to below link video guide about

the installation.

http://madpenguin.org/images/reviews/suse101/siia/suseinstaller.html

May 29, 2006 - 12:57 PM No Comments

Using Tracert

Tracert is a Windows based command-line tool that you can use to trace the path that an Internet Protocol (IP) packet takes to its destination from a source. Tracert will determine the path taken to a destination. It does this by sending Internet Control Message Protocol (ICMP) Echo Request messages to the destination. When sending traffic to the destination, it will incrementally increase the Time to Live (TTL) field values to aid in finding the path taken to that destination address. The path is outlined from this process.

Using the following illustration, let’s take a look at how tracert would function in a production network.

As you saw in the last illustration, we will be sending traffic from a test workstation from Site B to a server at another site (Site A). The packets will traverse the wide area network (WAN) that separates the two sites over a T1 with a backup link via Integrated Services Digital Network (ISDN). To use the tracert utility, you simply need to know what your destination IP address is and how to use the tracert utility correctly as well as what to look for within the results.

Tracert works by manipulating the Time to Live (TTL). By increasing the TTL and then each router decrementing as it sends it along to the next router, you will have a hop count from your source to your destination. A router hop would be a packet sent from one router to another router – that’s a hop. When the TTL on the packet reaches zero (0), the router sends an ICMP “Time Exceeded” message back to the source computer. You can see an example of our sample network here in the next illustration; with a source and destination IP address… we will be using the workstation on Site B and a server at Site A for our test.

From this illustration you can see that the source IP will be 10.1.2.4 and the destination (for this example) will be 10.1.1.6. The normal route the packets should take would be from Site B to Site A over the higher capacity link, the T1 (1.544 Mbps). The ISDN link is 128 Kbps and is used as a backup if the primary link fails. Tracert once fired up and used will be able to show you that the packets sent will start from Site B, the PC at 10.1.2.4 and then traverse the T1 to 10.1.1.1. That router will know how to send the packets to its local LAN (10.1.1.0) and ultimately to 10.1.1.6.

As the packets are sent, tracert will use the first interface on the router that it sees to report back your router hops, so let’s take a look at our complete path before we send the test packets.

The path displayed is the list of routers in the path between a source host and a destination. One thing that is very important to remember is that near-side interfaces are used when reporting. The near-side interface is the interface of the router that is closest to the sending host in the path. In this example, you can see that the path is the T1 from Site B to Site A. Lets see now why it’s important to know this.

The way tracert works is, once launched and utilized, tracert will report (print out) a list in the order in which it heard back from each host that it passed on its way to its intended destination. This is good because you can learn much from this path. If you are getting ‘near side’ interfaces, then you would see a new set of IP addresses in the next illustration (192.168.10.1 and 192.168.11.1) 10.1 is used for the ISDN link and 11.1 is used for the T1 link. Why is this important?

When you get results back from tracert, this could be confusing to some who are not adept with working with this tool, you will see WAN addressing instead of Site A’s default gateway router which is 10.1.1.1. It’s the same router, but it’s a different interface. This is imperative for you to know when testing with tracert, because if you confuse this, you will not know what you are reading.

For example, the path as you see in the last illustration is from 10.1.2.4 and then to 10.1.2.1 (the LAN’s default gateway), and then it will traverse the WAN to 10.1.1.1. The only problem here is that you will not see that address come up. Since the T1 has an interface on Site A’s router (11.1), and so does the ISDN link (10.1), these are the two IP address that are most important in the results of tracert – this is because in this example, the T1 may be down and now the path is over the ISDN link. This is working ‘as advertised’, but what happens when you bring the T1 back online – aside from feeling your network crawl from moving from a T1 at 1.544 Mbps to a 128 Kbps – is that you should not be using the ISDN link anymore. This is what we are going to test…

Now, to use tracert, you simply need to open a command prompt. To do this, go to

Start => Run => CMD => tracert

(note – you must type tracert, as you can see traceroute only works on UNIX/Linux and other systems such as Cisco, etc)

In the following example of the tracert command and its output, the packet travels through two routers (as seen in the last illustration) to get to host 10.1.1.6. In this example, the default gateway from Site B is 10.1.2.1 and the IP address of the router on the WAN via the T1 and ISDN links (respectively) are 192.168.11.1 and 192.168.10.1.

Lets first see what it should look like using the T1.

C:\>tracert 10.1.1.6
Tracing route to 10.1.1.6 over a maximum of 30 hops
—————————————————
1      2 ms       3 ms       2 ms         10.1.2.1
2     25 ms      83 ms      88 ms      192.168.11.1
3     25 ms      79 ms      93 ms      10.1.1.6

Trace complete.

Now, if the T1 was down and you were using the ISDN link, you can see that there is a different ‘path’ and you can also see that it takes ‘longer’ to get there.

C:\>tracert 10.1.1.6
Tracing route to 10.1.1.6 over a maximum of 30 hops
—————————————————
1      2 ms       3 ms       2 ms         10.1.2.1
2     75 ms      83 ms      88 ms      192.168.10.1
3     75 ms      79 ms      93 ms      10.1.1.6

Trace complete.

As you can see now, using tracert will help you to determine the network path as it is laid out through the network – AND – most importantly, how data traverses that path.

There may be times where the output you get isn’t so clear to you. For example, what if you get an asterisk? As just mentioned in the last section, an asterisk can be a false positive, because the ICMP packet may be traveling through, but something is stopping the report from coming back, most likely a firewall rule or access control list.

You can use tracert to find out where a packet stopped on the network. In the following example, the default gateway has found that there is no valid path for any host. This would mean that both links are down – the T1 and the ISDN and there is no destination available.

C:\>tracert 10.1.1.6
Tracing route to 22.110.0.1 over a maximum of 30 hops
—————————————————–
1  10.1.2.1  reports: Destination net unreachable.

Trace complete.

From this example, you can see that when you sent the tracert test to 10.1.1.6, the LAN default gateway reported that it could not find a path – to see this in graphical format may help you to understand it better.

May 28, 2006 - 4:03 PM No Comments

ASUS Lamborghini VX1 Specs Revealed

ASUS has finally revealed what lies beneath that shiny Lamborghini-branded VX1 exterior — announced earlier this year. A 2-GHz Intel Core Duo T2500 processor, 1GB of 667MHz DDR2 memory, 120GB hard drive, dual-layer DVD±R/RW drive, and an NVIDIA GeForce Go 7400 256MB graphics card. The 15-inch 1440 x 1050 display is also a nice feature. ASUS will begin shipping the limited edition VX1 later this month, prices start at $4,700

May 28, 2006 - 9:01 AM No Comments

Alienware Aurora ALX Quad SLI PC

Think your rig is the best gaming machine going? Think again. Alienware’s badboy Aurora ALX features Quad SLI, which means four top-of-the-line nVidia GeForce 7900 GPUs to fly through any games you throw at it.


Alienware’s Aurora ALX systems are now available with groundbreaking new technology from nVidia, Quad SLI, to harness the power of four GPUs into one system.

Backed by Quad SLI technology, four GeForce GPUs work together to form one image, enabling extreme high definition resolutions up to 2560×1600 pixls and the smoothest frame rates possible while playing the hottest games.

Quad SLI technology optimises image quality by giving you the chance to maximise your shader and texture settings, helping to bring every subtle visual detail of games to life. Quad SLI also supports 32x anti-aliasing and 16x anisotropic filtering for an even higher level of image quality.

Four GeForce graphics cards allow you to enjoy high-definition video quality thanks to cutting-edge PureVideo technology. Regardless of the source of the video, PureVideo provides gorgeous picture quality while you watch TV, DVDs, and high-definition video of any size. This gives you the ability to enlarge small videos to fill the entire screen while still maintaining high-quality image detail.

Other features of Alienware’s new line of desktop systems include dual-core AMD Athlon 64 FX-60 processors that enable enhanced multitasking capabilities such as playing a game while simultaneously instant messaging or listening to music, and Alienware’s exclusive Silent Liquid Cooling Technology which goes beyond standard air-cooled designs by using a specially formulated liquid to keep the excess heat generated by high-performance components in check.

Exclusive ALX extras including game installation and optimisation, private game servers, unique ALX accessories, and a VIP pass to tour the ALX facility. Prices start at a lofty $6923.

May 28, 2006 - 8:26 AM No Comments

Dell starts selling $9,900 overclocked gaming PC

Dell today starts taking orders for its “limited edition” XPS 600 Renegade quad SLI, physics engine-equipped desktop gaming rig. The kit will set you back a whopping $9,930, although this includes Dell’s 30in LCD monitor.

The XPS 600 Renegade comes in a custom-painted case inside which sit four GeForce 7900 GPUs each with 512MB of video memory ready to run games at 2,560 x 1,600. The unit also features an Ageia PhysX processor on which games can offload all their complex physics calculations to free up the CPU – a dual-core Pentium D Extreme Edition “factory overclocked” to 4.26GHz, no less – for stuff like artificial intelligence work.

Dell has put a SoundBlaster X-Fi Fatal1ty sound card in the box, which also houses a Western Digital 160GB, 10,000rpm Raptor hard drive and – in case you run out of room – a second WD HDD, a 400GB, 7,200rpm job. There’s 2GB of dual-channel 667MHz DDR 2 connected to the CPU via an Nvidia nForce 4 SLI chipset.

All this, plus the 30in 3007WFP monitor, comes to $9,930, but Dell has a range of lesser specced machines for gamers on a tighter budget. And it is offering the Ageia physics controller on its regular XPS 600 and XPS 400 desktops in versions priced at $2,039 and $1,239, respectively.

At time of writing the machine had yet to appear as a purchase option on its US website.

May 28, 2006 - 8:16 AM No Comments

Microsoft Targets JPEG With WMP Image Format

Microsoft this week unveiled a new photo format to compete with an old industry standard. The software giant claims its Windows Media Photo (WMP) will provide better quality at half the size of a JPEG image.”One of the biggest drivers for upgrading computers is digital photography, so anything we do to make digital photography better is good for Windows,” said Bill Crow, senior program manager for WMP. Crow presented the technology at the Windows Hardware Engineering Conference in Seattle.

The software giant has been working on the photo format for nearly four years, with unnamed camera makers among its partners. “It’s been very much driven by their feedback,” said Crow.

Digital Boasting

WMF is a file format for continuous-tone still images that Microsoft claims surpasses the limitations of existing image formats. Microsoft plans to include the new format in its Vista operating system. It’s currently shipping  in Vista Beta 2.

Windows Media Photo supports a wide range of features, Microsoft said, including multiple color formats for display or print, fixed or floating point high dynamic range image encoding, lossless or high quality lossy compression, decoding for multiple resolutions and sub-regions. Windows Media Photo delivers an algorithm with a small memory footprint that enables in-device encoding and decoding.

“It’s really a new approach, and a whole collection of innovations,” said Crow. “Some of the same engineers who worked on the Windows Media Video codec VC-9 also worked on Windows Media Photo. All the lessons they learned from VC-9 but weren’t able to change because of the schedule, they applied here.”

A Digital Revolution

With digital cameras revolutionizing the photography industry, Microsoft hopes to find its niche with a growing audience of digital technophiles.

“The comparisons between film and digital became a moot point last year. Digital cameras now meet or exceed film at the professional level. That’s not true of all consumer cameras,” Paul Worthington, an analyst at photography industry research firm Future Image, told TechNewsWorld.

The digital revolution is good news for HP, Epson and others in the digital photo-printer business, but Crow would not say whether camera, printer or chip makers will release products supporting WMP when Vista is launched.

Much Ado About Nothing?

Still, just because Microsoft releases a new file format does not mean that photographers or graphic designers will adopt it. JPEG is a well accepted format with which professional digital photographers may not risk archiving their images. Graphic designers may also prefer to stick with what they know works.

“I don’t think this will have a big effect in the Web design world,” Web developer Pedro Sostre told TechNewsWorld. “It’s like PNG files. It was created to improve and replace the GIF format. It was an exciting announcement, but no one ever used PNGs.”

May 27, 2006 - 10:23 AM No Comments

Google, Dell Strike Desktop Deal

Beating Microsoft to the Punch

Google CEO Eric Schmidt announced the deal in a Thursday webcast. The search giant is primarily targeting the millions of Dell customers on the home user front, but the company said the deal also includes Dell systems that will sell to small- to mid-sized businesses and even select enterprise Quintum VoIP access solutions: Integrated intelligence, nonstop call quality, easy remote management and lower TCO. customers worldwide. Dell customers who don’t want Google on the desktop can opt to not have it installed.

Dell’s news comes after Google’s recent complaint to the Department of Justice (DoJ) about MSN Latest News about MSN being the default search feature in Internet Explorer 7. The DoJ dismissed Google’s gripes, deciding that users have ample ability to change the default settings.

“Google wants to make sure that Microsoft doesn’t use its unfair advantage of being the owner of the browser to prevent users from choosing Google, which they probably would if it was offered on a fair basis,” Endpoint Technology Associate Principal Analyst Roger Kay told TechNewsWorld. This deal gives Google a little less reason to complain, he noted.

The Upside for Dell

The arrangement is also a significant win for Dell, as deal making with search engines could be a financial boon for the low-margin PC business. Acer, Lenovo, Compaq and other PC manufacturers would probably welcome such arrangements, Kay said, and Google would probably be pleased to colonize this very valuable desktop real estate.

In fact, the Google-Dell deal could open up a land grab for PC desktops, Kay predicted. Dell has demonstrated that it has monetizable value on its screen real estate, which has traditionally been rather static. PC makers have put icons on the desktop for a long time, he noted, but most users recognize them as spam-laden liabilities and don’t click on them.

“This is quite different from years ago when AOL was trying to buy real estate on the desktop before browsers were popular. AOL wanted to put an icon on the Compaq desktop and was ready to pay a lot of money for that, but Microsoft put the kibosh on it,” he recalled.

May 27, 2006 - 10:17 AM No Comments

Enabling Multiple Remote Desktop Sessions in Windows XP Professional and Media Center Edition 2005

If you have ever used a real remote computer system like Citrix, then you have probably been craving multiple Remote Desktop sessions since you first fired up Windows XP Professional and/or Media Center Edition. Here is a HACK (translated: USE AT YOUR OWN RISK), to enable multiple Remote Desktop sessions on your XP Pro or MCE 2005 box:NOTE: You will have to have knowledge of the Windows operating system and more specifically the Windows Registry. If you have no experience with the registry, then I would recommend you find someone who does or leave these alone. I do not make any kind of warranty that this will work for you or your friends. This is provided for entertainment purposes only. Don’t call me if your computer stops working. Got it?

  1. Print these directions so that you have them to work from.
  2. Restart your computer in Safe Mode – Follow this link to learn how to restart Windows XP in Safe Mode
  3. Turn off/disable Remote Desktop Connection (RDC) and Terminal Services
  1. Right click My Computer
  2. Select Properties
  3. Click on the Remote tab at the top of the window
  4. UNCHECK the box next to, “Allow users to connect remotely to this computer
  5. Click OK
  6. Go to Start -> Control Panel -> Administrative Tools -> Services
  7. Find Terminal Services in the list
  8. Right click on Terminal Services and click Properties
  9. In the Startup Type box, select Disabled
  10. Click OK to close the window
  • Next you will replace the current version of the Terminal Services DLL (termsrv.dll) with an unrestricted version from a previous release of Terminal Services.
    1. Here is a copy of the Terminal Services DLL – Save it to your Desktop or other suitable location
    2. Using a file manager like Windows Explorer open C:\Windows\system32\dllcache
    3. Rename the file termsrv.dll to termsrv_dll.bak or whatever you would like.
    4. Copy the downloaded termsrv.dll file (the one you just downloaded from the web) to C:\Windows\system32\dllcache
    5. Open the C:\Windows\system32 folder
    6. Delete the file termsrv.dll in C:\Windows\system32
  • Now we can edit the Windows Registry to enable more than one RDP connection. Go to Start -> Run and type regedit – Hopefully you knew that already
  • Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core
  • Add a DWORD Key named EnableConcurrentSessions and give it a value of 1
  • Close the Registry Editor window
  • Go to Start -> Run and type gpedit.msc to run the Group Policy Editor
  • Browse to Computer Configuration -> Administrative Templates -> Windows Components -> Terminal Services and double click Limit number of connections
  • Select the Enabled button and enter the number of connections you would like to enable….at least 2.
  • Restart Windows
  • Right click My Computer and select Properties.
  • Click on the Remote tab at the top of the window
  • CHECK the box next to, “Allow users to connect remotely to this computer
  • Click OK
  • Go to Start -> Control Panel ->Administrative Tools -> Services. Select Terminal Services from the list and double click it or right-click -> Properties. Set the Startup Type to Manual.
  • Restart Windows/Computer
  • You should be good to go.

    May 23, 2006 - 11:40 AM No Comments

    Skype – Free Calls within USA and Canada

    San Jose, CA, May 15, 2006 – Skype®, the global Internet communications company, today announced that all US and Canadian-based Skype customers can now make free SkypeOut™ calls to traditional landline and mobile phones in the US and Canada. Previously, Skype users in both countries were required to pay for Skype calls from their PCs to traditional telephones. Free SkypeOut calls to the US or Canada will be available to US and Canadian-based Skype users until the end of the year.Skype has now removed any cost barrier for its American and Canadian customers to keep in touch with friends, family and business associates. Skype anticipates that completely free calling in the US and Canada will expand Skype’s increasing penetration in North America and solidify Skype’s position as the Internet’s voice communication tool of choice. More people will now have the chance to benefit from Skype’s premium services and online calling capabilities.




    Skype Cordless DualPhone“Millions of consumers around the world are flocking to Skype every month, and we believe free SkypeOut calling will rapidly accelerate Skype adoption in the US and Canada,” said Henry Gomez, General Manager, Skype North America. “We’re very excited to be bringing Skype’s convenience and voice quality to so many people for free.”

    While SkypeOut calls within the US and Canada will now be free, SkypeOut calls to and within all other countries will continue to incur charges. Those charges are unchanged by today’s announcement and remain among the lowest available to consumers.

    Last week Skype released a new beta version of its software that adds even more features and functionality to Skype’s voice and video calling options, including: SMS; simplified dialing; payments in Skype; Outlook contact integration; call quality management; simplified registration; shared contact groups; and improved conference calling. On May 1, after just more than two and a half years in operation, Skype achieved 100 million registered users worldwide.

    May 23, 2006 - 11:16 AM No Comments

    « Older Entries