<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; Gateway</title> <atom:link href="http://www.ghacks.net/tag/gateway/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 09:52:46 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>How do I find my network information &#8211; in Linux?</title><link>http://www.ghacks.net/2010/04/20/how-do-i-find-my-network-information-in-linux/</link> <comments>http://www.ghacks.net/2010/04/20/how-do-i-find-my-network-information-in-linux/#comments</comments> <pubDate>Mon, 19 Apr 2010 23:46:32 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Advice]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Networks]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[dns]]></category> <category><![CDATA[Gateway]]></category> <category><![CDATA[hostname]]></category> <category><![CDATA[IP address]]></category> <category><![CDATA[linux networking]]></category> <category><![CDATA[network information]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=24724</guid> <description><![CDATA[Taking a cue from Martin&#8217;s helpful article (see &#8220;How do I find my IP Address&#8220;) I thought it would be a good idea to offer the same information for the Linux operating system. But with Linux there is one issue to get around &#8211; that of the number of different tools available to use to [...]]]></description> <content:encoded><![CDATA[<p>Taking a cue from Martin&#8217;s helpful article (see &#8220;<a
title="How do I find my network information - in Linux?" href="http://www.ghacks.net/2010/04/19/how-do-i-find-my-ip-address/" target="_blank">How do I find my IP Address</a>&#8220;) I thought it would be a good idea to offer the same information for the Linux operating system. But with Linux there is one issue to get around &#8211; that of the number of different tools available to use to find this information. Because there are so many graphical tools with which to find networking information, I thought it would be best to simply tackle this with everyone&#8217;s favorite tool &#8211; the command line.</p><p>In this article I will show you how to find out various networking information on your Linux system. All of these tasks can be handled by any skill level of user, so don&#8217;t think you have to be an ubergeek, hacker-type in order to gain this information.</p><p><span
id="more-24724"></span><strong>IP Address</strong></p><div
id="attachment_24725" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/04/linux_ip_info.png"><img
class="size-medium wp-image-24725 " src="http://www.ghacks.net/wp-content/uploads/2010/04/linux_ip_info-500x351.png" alt="" width="300" height="211" /></a><p
class="wp-caption-text">Figure 1</p></div><p>Let&#8217;s start off with the IP Address. Of course, before you do anything, you need to open up a terminal window. Once you have that open you can then issue the necessary command. The command for finding your IP Address is <em>ifconfig. </em>When you issue this command you will receive information for every network connection you have available. Most likely you will see information for both the loopback (lo) and your wired network connection (eth0). If you have a wireless connection that will be listed, most likely, as wlan0. The reported information will look like that shown in Figure 1. As you can see, you not only get the IP Address, but the Broadcast address, the Subnet Mask, and the IPv6 Address.</p><p><strong>Hostname</strong></p><p>From that same command line, if you enter the command <em>hostname </em>you will see the actual hostname of your machine. In the case of my test machine, I see <em>Ubuntu-desktop</em>.  For more information on using this command, take a look at my article &#8220;<a
title="Set your hostname in Linux" href="http://www.ghacks.net/2009/07/06/set-your-hostname-in-linux/" target="_blank">Set your hostname in Linux</a>&#8220;.</p><p><strong>DNS Address(es)</strong></p><p>There is no actual command to see your DNS addresses. You don&#8217;t really need one. All you need to do is examine the <strong>/etc/resolv.conf</strong> file with the command <em>less /etc/resolv.conf, </em>at whichpoint you will see something like:</p><p><em>nameserver 208.67.222.222</em></p><p><em>nameserver 208.67.220.220</em></p><p><strong>Gateway address</strong></p><div
id="attachment_24726" class="wp-caption alignright" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/04/linux_gateway.png"><img
class="size-medium wp-image-24726 " src="http://www.ghacks.net/wp-content/uploads/2010/04/linux_gateway-500x351.png" alt="" width="300" height="211" /></a><p
class="wp-caption-text">Figure 2</p></div><p>Now let&#8217;s find out what the Gateway address is. The command used for this is the <em>netstat</em> command. This command does quite a bit more than just discover your gateway. What the netstat command does is print network connections, routing tables, interface statistics, masquerade connections, and multicast memberships. But to find the gateway address you would issue the command <em>netstat -nr </em>and you will see something like that shown in Figure 2. You can probably guess it, but the Gateway address is 192.168.1.1. The flags you used in that command are <em>n </em>(for numeric addresses) and <em>r </em>(for route).</p><p>Of course the netstat command can do much more than that (we&#8217;ll cover that in another article).</p><p><strong>Final thoughts</strong></p><p>Yes, there are a lot of tools that can be used in Linux. It all depends upon how you want to get your information. In both the GNOME and KDE desktops there are outstanding GUI tools you can use for all of this. But knowing the command line route makes you much more versatile.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/04/20/how-do-i-find-my-network-information-in-linux/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>More Multitouch Headed Your Way</title><link>http://www.ghacks.net/2009/10/12/more-multitouch-headed-your-way/</link> <comments>http://www.ghacks.net/2009/10/12/more-multitouch-headed-your-way/#comments</comments> <pubDate>Mon, 12 Oct 2009 21:35:58 +0000</pubDate> <dc:creator>Shailpik</dc:creator> <category><![CDATA[Gadgets]]></category> <category><![CDATA[Gateway]]></category> <category><![CDATA[LBook T9 Slate]]></category> <category><![CDATA[multitouch]]></category> <category><![CDATA[tablet]]></category> <category><![CDATA[windows 7]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=17194</guid> <description><![CDATA[Forget buttons. Forget primitive touch strips that wouldn’t register your input half the time. Forget it all. Multitouch is the new way to roll, if the multitude of new products is any indication. It is soon to invade every piece of gadget we own, make no mistake about that. One of the more popular form [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-full wp-image-17206" title="thumb_lbook_t9_tablet_pc" src="http://www.ghacks.net/wp-content/uploads/2009/10/thumb_lbook_t9_tablet_pc.jpg" alt="thumb_lbook_t9_tablet_pc" width="150" height="100" />Forget buttons. Forget primitive touch strips that wouldn’t register your input half the time. Forget it all. Multitouch is the new way to roll, if the multitude of new products is any indication. It is soon to invade every piece of gadget we own, make no mistake about that.</p><p>One of the more popular form factors to have incorporated a multitouch enabled surface is the all-in-one desktop. After <a
href="http://otakugadgets.com/desktop-computers/the-world-is-going-multitouch-6-multitouch-products-that-are-not-mobile-phones/">Asus</a> and <a
href="http://otakugadgets.com/desktop-computers/new-sony-vaios-the-x-the-l-and-the-cws/">Sony</a>, now it’s Gateway’s turn to churn out an all-in-one system for the mass market. The form factor that was popularized by Apple iMacs, is now seeing a sudden upsurge in the market. From the comparatively lower cost solutions like Asus’ Eee Tops to high-end systems like Sony’s Vaio L series, you can see this form factor in almost every segment.</p><p><span
id="more-17194"></span>So now we have two more such systems in the pipeline and this time they are from Gateway. The two models are numbered as ZX6800 and ZX4800 respectively. The former is to have a 23-inch display and a 1920&#215;1080 resolution while the latter is to have a 23-inch display and a 1600&#215;900 resolution. Both their displays will be multitouch equipped and both will be running Windows 7. Gateway won’t be shipping these devices with just the OS either. They will be putting in custom applications for photos, music, videos, etc. that are designed to take advantage of the touchscreen.</p><p
style="text-align: left;"><img
class="size-full wp-image-17207 aligncenter" title="GW-ZX-Series-angled-with-kbmouse-low-res-540x478" src="http://www.ghacks.net/wp-content/uploads/2009/10/GW-ZX-Series-angled-with-kbmouse-low-res-540x478.jpg" alt="GW-ZX-Series-angled-with-kbmouse-low-res-540x478" width="540" height="478" /></p><p
style="text-align: left;">They will be quite powerful too. The Zx6800 will be powered by a 2.33GHz Intel Core 2 Quad processor with 8GB RAM, 1GB ATI Radeon HD470 graphics, 1TB HDD (storage only) and a 64GB SSD (for the OS and the applications). Connectivity will be through the WiFi (b/g/n), Gigabit Ethernet while everything else would take care of by the eSATA and DVD super drive. It will also come with a hybrid TV tuner and 5.1 surround sound audio output.</p><p>The ZX4800 will be the lower powered version, hence also the cheaper. It will have a 2.1GHz Pentium dual core processor with 4GB RAM, Intel GMA X4500 graphics and 750GB of storage. Everything else remains the same as the faster model except the TV tuner and SSD.</p><p>The ZX6800 and Zx4800 are expected arrive shortly after the worldwide launch of Windows 7. So they should be here by early November.</p><p>Another form factor that uses multitouch is the tablet. May be I should say <em>will be using</em> because there aren’t that many true tablets (not those convertible ones) with multitouch around. We are all hearing the rumors about Apple’s tablet and there is the Crunchpad, but they are nowhere near the consumer market. But still, there are smaller companies that are planning to bring out their own tablets before the big cats do. One of them is LBook and theirs is the T9 multitouch slate.</p><p><img
class="aligncenter size-full wp-image-17208" title="lbook_t9_tablet_pc" src="http://www.ghacks.net/wp-content/uploads/2009/10/lbook_t9_tablet_pc.jpg" alt="lbook_t9_tablet_pc" width="350" height="248" />This slate has a spacious 8.9inch touchscreen and will be running Windows 7. It will be powered by the Intel Atom and there is word on market that it will carry 2GB of RAM and 120GB of storage. But the main talking point is the price.</p><p>There have not been any official announcements so far but a price range of $350-$375 was received by the folks at the <em>UMPC Portal</em>. If LBook can really get the slate in to the market for that price with may be an optional 3G connectivity, it is likely to become quite a popular device. Given of course that the touchscreen works as it is expected to.</p><p>The device has a webcam and multiple USB ports too and also something that from the picture looks like a memory car reader.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/10/12/more-multitouch-headed-your-way/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
