<?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>System Network Programming Solution - Linux - windows - centos- security- cpanel - plesk -directadmin helm&#187; windows</title>
	<atom:link href="http://thegioinguonmo.com/os/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegioinguonmo.com</link>
	<description>SHARING EVERYTHING</description>
	<lastBuildDate>Sat, 19 May 2012 21:40:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>NTLDR or NTDETECT.COM Not Found</title>
		<link>http://thegioinguonmo.com/os/windows/ntldr-or-ntdetect-com-not-found.html</link>
		<comments>http://thegioinguonmo.com/os/windows/ntldr-or-ntdetect-com-not-found.html#comments</comments>
		<pubDate>Tue, 01 May 2012 09:40:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[NTDETECT]]></category>
		<category><![CDATA[NTLDR]]></category>
		<category><![CDATA[Press]]></category>
		<category><![CDATA[repair option]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1202</guid>
		<description><![CDATA[If you get an error that NTLDR is not found during bootup, If you have FAT32 partitions, it is much simpler than with NTFS. Just boot with a Win98 floppy and copy the NTLDR or NTDETECT.COM files from the i386 directory to the root of the C:\ drive. For NTFS: Insert and boot from your [...]]]></description>
			<content:encoded><![CDATA[<p>If you get an error that NTLDR is not found during bootup,</p>
<p>If you have FAT32 partitions, it is much simpler than with NTFS.<br />
Just boot with a Win98 floppy and copy the NTLDR or NTDETECT.COM files<br />
from the i386 directory to the root of the C:\ drive.</p>
<p>For NTFS:</p>
<ol>
<li>Insert and boot from your WindowsXP CD.</li>
<li>At the first R=Repair option, press the R key</li>
<li>Press the number that corresponds to the correct location for the installation of Windows you want to repair.<br />
Typically this will be #1</li>
<li>Enter in the administrator password when requested</li>
<li>Enter in the following commands (X: is replaced by the actual drive letter that is assigned to the CD ROM drive.<br />
<code>COPY X:\i386\NTLDR C\:<br />
COPY X:\i386\NTDETECT.COM C:\</code></li>
<li>Take out the CD ROM and type exit</li>
</ol>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/ntldr-or-ntdetect-com-not-found.html" title="centos repair ntldr windows">centos repair ntldr windows</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/ntldr-or-ntdetect-com-not-found.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Find Out If PCI Hardware Supported or Not In The Current Running Kernel</title>
		<link>http://thegioinguonmo.com/os/windows/linux-find-pci-hardware-supported-current-running-kernel.html</link>
		<comments>http://thegioinguonmo.com/os/windows/linux-find-pci-hardware-supported-current-running-kernel.html#comments</comments>
		<pubDate>Wed, 25 Apr 2012 21:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1946</guid>
		<description><![CDATA[A typical question from my mailbag: How do I find out if a given PCI hardware is supported of by the current CentOS / Debian / RHEL / Fedora Linux kernel? You can easily find out find out if a given piece of PCI hardware such as RAID, network, sound, graphics card is supported or [...]]]></description>
			<content:encoded><![CDATA[<p>A typical question from my mailbag:</p>
<blockquote><p>How do I find out if a given PCI hardware is supported of by the current CentOS / Debian / RHEL / Fedora Linux kernel?</p></blockquote>
<p>You can easily find out find out if a given piece of PCI hardware such as RAID, network, sound, graphics card is supported or not by the current Linux kernel using the following utilities under any Linux distributions.</p>
<h2>Required Tools</h2>
<ol>
<li><strong>/lib/modules/$(uname -r)/modules.pcimap</strong> : This file is automatically generated by depmod, and used by pcimodules command to determine which modules correspond to which PCI ID&#8217;s. You need to use this file to find out if driver is supported or not.</li>
<li><strong>lspci command</strong> &#8211; list and query all PCI devices connected to the system.</li>
</ol>
<h2>Use lspci Command To List All PCI Devices</h2>
<p>Will an Intel Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller Card be taken care of by a Linux kernel 2.6.27-11-server?<br />
<code>$ lspci<br />
$ lspci | grep -i audio</code><br />
Sample Output:</p>
<pre>00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)</pre>
<p>Note down the identifier in first field i.e. 00:1b.0. Now use lspci -n as follows to get result for device 00:1b.0.<br />
<code>$ lspci -n | grep 00:1b.0</code><br />
Sample Output:</p>
<pre>00:1b.0 0403: 8086:27d8 (rev 01)</pre>
<p>Where,</p>
<ul>
<li>00:1b.0 &#8211; Device</li>
<li>8086 &#8211; constructor code for Intel Corporation</li>
<li>27d8 &#8211; The model id.</li>
</ul>
<p>Use the model id to search driver, as follows:<br />
<code>$ grep 27d8 /lib/modules/$(uname -r)/modules.pcimap </code><br />
Sample Output:</p>
<pre>snd-hda-intel        0x00008086 0x000027d8 0xffffffff 0xffffffff 0x00000000 0x00000000 0x0</pre>
<p>snd-hda-intel is kernel driver handling PCI audio device. You can get more information about this driver by typing the following:<br />
<code>$ modinfo snd-hda-intel<br />
$ modinfo snd-hda-intel| egrep 'description|filename|depends'</code><br />
Sample Output:</p>
<pre>filename:       /lib/modules/2.6.27-11-server/kernel/sound/pci/hda/snd-hda-intel.ko
description:    Intel HDA driver
depends:        snd-pcm,snd-page-alloc,snd</pre>
<h3>Another example &#8211; Will an Adaptec AAC-RAID SCSI SA Card work with Linux kernel v2.6.18-128.1.10.el5 (CentOS / RHEL 5 kernel)?</h3>
<p>Type the following commands:<br />
<code>$ lspci | grep -i RAID</code><br />
Output:</p>
<pre>07:0e.0 RAID bus controller: Adaptec AAC-RAID</pre>
<p>Get device id:<br />
<code>$ lspci -n | grep '07:0e.0'</code><br />
Output:</p>
<pre>07:0e.0 0104: 9005:0285</pre>
<p>Search for device id to driver mapping:<br />
<code>$ grep 0285 /lib/modules/$(uname -r)/modules.pcimap </code><br />
Output:</p>
<pre>aacraid              0x00009005 0x00000285 0x00009005 0x00000286 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000285 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000287 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x000017aa 0x00000286 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x000017aa 0x00000287 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000288 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000289 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x0000028a 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x0000028b 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x000002a4 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x000002a5 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x0000028e 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x0000028f 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000290 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00001028 0x00000291 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000292 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000293 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000294 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x0000103c 0x00003227 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000296 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000297 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00001014 0x000002f2 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00001014 0x00000312 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000298 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x00000299 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00009005 0x0000029a 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00001028 0x00000287 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x00001028 0xffffffff 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0x000017aa 0xffffffff 0x00000000 0x00000000 0x0
aacraid              0x00009005 0x00000285 0xffffffff 0xffffffff 0x00000000 0x00000000 0x0
ata_piix             0x00008086 0x00002850 0xffffffff 0xffffffff 0x00000000 0x00000000 0x0</pre>
<p>Get detailed information about aacraid driver:<br />
<code>$ modinfo aacraid | egrep 'description|filename|depends'</code><br />
Output:</p>
<pre>filename: filename:       /lib/modules/2.6.18-128.1.10.el5/kernel/drivers/scsi/aacraid/aacraid.ko
description:    Dell PERC2, 2/Si, 3/Si, 3/Di, Adaptec Advanced Raid Products, HP NetRAID-4M, IBM ServeRAID &amp; ICP SCSI driver
depends:        scsi_mod</pre>
<h3>Task: Show kernel drivers handling each device and also kernel modules capable of handling it</h3>
<p>Pass the -k option (works with latest lspci version only):<br />
<code>$ lspci -k</code><br />
Sample Output:</p>
<pre>00:00.0 Host bridge: Intel Corporation 82975X Memory Controller Hub
	Kernel modules: i82975x_edac
00:01.0 PCI bridge: Intel Corporation 82975X PCI Express Root Port
	Kernel driver in use: pcieport-driver
	Kernel modules: shpchp
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
	Kernel driver in use: HDA Intel
	Kernel modules: snd-hda-intel
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
	Kernel driver in use: pcieport-driver
	Kernel modules: shpchp
00:1c.4 PCI bridge: Intel Corporation 82801GR/GH/GHM (ICH7 Family) PCI Express Port 5 (rev 01)
	Kernel driver in use: pcieport-driver
	Kernel modules: shpchp
00:1c.5 PCI bridge: Intel Corporation 82801GR/GH/GHM (ICH7 Family) PCI Express Port 6 (rev 01)
	Kernel driver in use: pcieport-driver
	Kernel modules: shpchp
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)
	Kernel driver in use: uhci_hcd
	Kernel modules: uhci-hcd
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01)
	Kernel driver in use: uhci_hcd
	Kernel modules: uhci-hcd
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01)
	Kernel driver in use: uhci_hcd
	Kernel modules: uhci-hcd
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01)
	Kernel driver in use: uhci_hcd
	Kernel modules: uhci-hcd
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
	Kernel driver in use: ehci_hcd
	Kernel modules: ehci-hcd
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
	Kernel modules: intel-rng, iTCO_wdt
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
	Kernel driver in use: ata_piix
	Kernel modules: ata_piix
00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01)
	Kernel driver in use: ata_piix
	Kernel modules: ata_piix
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
	Kernel driver in use: i801_smbus
	Kernel modules: i2c-i801
01:00.0 VGA compatible controller: nVidia Corporation Quadro FX 570 (rev a1)
	Kernel driver in use: nvidia
	Kernel modules: nvidia, nvidiafb
03:00.0 SATA controller: Marvell Technology Group Ltd. 88SE6145 SATA II PCI-E controller (rev a1)
	Kernel driver in use: pata_marvell
	Kernel modules: ahci, pata_marvell
04:00.0 Ethernet controller: Intel Corporation 82573E Gigabit Ethernet Controller (Copper) (rev 03)
	Kernel driver in use: e1000e
	Kernel modules: e1000e
04:00.3 Serial controller: Intel Corporation Active Management Technology - SOL (rev 03)
	Kernel driver in use: serial
04:00.4 IPMI SMIC interface: Intel Corporation 82573E KCS (Active Management) (rev 03)
05:02.0 Ethernet controller: Marvell Technology Group Ltd. 88w8335 [Libertas] 802.11b/g Wireless (rev 03)
	Kernel driver in use: ndiswrapper
05:04.0 FireWire (IEEE 1394): Texas Instruments TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)
	Kernel driver in use: ohci1394
	Kernel modules: ohci1394</pre>
<h3>Task: Lists all driver modules for all currently plugged in PCI devices</h3>
<p>Type the pcimodules command (again you need updated pciutils package):<br />
<code>$ pcimodules</code><br />
Sample Output:</p>
<pre>ohci1394
ipmi_si
e1000e
ahci
pata_marvell
nvidia
nvidiafb
i2c-i801
ata_piix
ata_generic
pata_acpi
ata_piix
ata_generic
pata_acpi
intel-rng
iTCO_wdt
ehci-hcd
uhci-hcd
shpchp
snd-hda-intel
shpchp
i82975x_edac</pre>
<h3>Task: Update pci.ids Database</h3>
<p>/usr/share/hwdata/pci.ids file is all known ID&#8217;s used in PCI devices: ID&#8217;s of vendors, devices, subsystems and device classes. You can update this database by typing the following command at a shell prompt:<br />
<code>$ update-pciids</code></p>
<h2>Suggested Readings:</h2>
<ol>
<li>Linux &#8211; lspci command to list and find out more information about all PCI devices.</li>
<li>Linux find out or display IDs for adapters installed in a server</li>
<li>Linux find out my VIDEO Card Memory RAM size using command line utility</li>
<li>The PCI Utilities &#8211; The PCI Utilities are a collection of programs for inspecting and manipulating configuration of PCI devices, all based on a common portable library libpci which offers access to the PCI configuration space on a variety of operating systems.</li>
<li>The PCI ID Repository &#8211; This is a public repository of all known ID&#8217;s used in PCI devices: ID&#8217;s of vendors, devices, subsystems and device classes. It is used in various programs (e.g., The PCI Utilities) to display full human-readable names instead of cryptic numeric codes.</li>
<li>man pages lspci, update-pciids, and pcimodules</li>
</ol>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/linux-find-pci-hardware-supported-current-running-kernel.html" title="listing pci devices under centos">listing pci devices under centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/linux-find-pci-hardware-supported-current-running-kernel.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert files from Windows format to UNIX format</title>
		<link>http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html</link>
		<comments>http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html#comments</comments>
		<pubDate>Wed, 11 Apr 2012 09:41:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[Listing]]></category>
		<category><![CDATA[nbsp]]></category>
		<category><![CDATA[SCREEN]]></category>
		<category><![CDATA[txt]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1220</guid>
		<description><![CDATA[This tip shows you how to convert files from Windows format to UNIX format and vice versa. This can be handy if you’ve ever opened a file that was created in Windows and found your screen full of of ^M characters at the end of every line. Code Listing 1: Converting files with tr and [...]]]></description>
			<content:encoded><![CDATA[<p>This tip shows you how to convert files from Windows format to UNIX format and vice versa. This can be handy if you’ve ever opened a file that was created in Windows and found your screen full of of ^M characters at the end of every line.</p>
<p>Code Listing 1: Converting files with tr and sed</p>
<blockquote><p>&nbsp;</p>
<pre class="brush:plain">    // Convert from DOS/windows to unix
    % tr -d '\015' win.txt &gt; unix.txt

    // Convert from unix to DOS/windows
    % sed -e 's/$/\r/' unix.txt &gt; win.txt</pre>
<p>&nbsp;</p></blockquote>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html" title="how to convert txt linux to windows from windows">how to convert txt linux to windows from windows</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html" title="shell script convert windows format to unix format">shell script convert windows format to unix format</a> (1)</li><li><a href="http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html" title="windows tool convert txt linux">windows tool convert txt linux</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/how-to-convert-files-from-windows-format-to-unix-format.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting DoS / DDoS Attack on a Windows 2003 / 2008 Server</title>
		<link>http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html</link>
		<comments>http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html#comments</comments>
		<pubDate>Tue, 27 Mar 2012 09:39:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[ddos]]></category>
		<category><![CDATA[DDoS Attack]]></category>
		<category><![CDATA[Detecting DoS]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[ipsec]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2548</guid>
		<description><![CDATA[Question: How do I detect a DDOS (Distributed denial of service) / DOS attack on a Windows Server 2003 / 2000 / 2008? Can I use Linux netstat command syntax to detect DDoS attacks? Answer:A denial-of-service attack (DoS attack) or distributed denial-of-service attack (DDoS attack) is an attempt to make a computer resource unavailable to its intended users. [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>Question</strong></span>: How do I detect a DDOS (Distributed denial of service) / DOS attack on a Windows Server 2003 / 2000 / 2008? Can I use <a rel="nofollow" target="_blank" href="http://www.cyberciti.biz/tips/netstat-command-tutorial-examples.html">Linux netstat command syntax to detect DDoS</a> attacks?</p>
<p><strong><span style="color: #008000;">Answer</span></strong>:A denial-of-service attack (DoS attack) or distributed denial-of-service attack (DDoS attack) is an attempt to make a computer resource unavailable to its intended users.</p>
<p>You can always use netstat command to get list of connections under Windows. Open command prompt by visiting Start &gt; Run &gt; Type “cmd” in box.</p>
<p>netstat is a command line utility which displays protocol statistics and current TCP/IP network connections in a system. Type the following command to see all connections:<br />
<code>netstat -noa</code><br />
Where,</p>
<ol>
<li><strong>n</strong>: Displays active TCP connections, however, addresses and port numbers are expressed numerically and no attempt is made to determine names.</li>
<li><strong>o</strong>: Displays active TCP connections and includes the process ID (PID) for each connection. You can find the application based on the PID on the Processes tab in Windows Task Manager.</li>
<li><strong>a</strong>: Displays all active TCP connections and the TCP and UDP ports on which the computer is listening.</li>
</ol>
<p>You can use find command as filter to searches for a specific string of text in a file. In the following example you are filtering out port 80 traffic:<br />
<code>netstat -ano | find /c "80"</code><br />
Find the IP address which is having maximum number of connection and block it using Cisco firewall or IPSec. Another protective measurement is to <a rel="nofollow" target="_blank" href="http://msdn.microsoft.com/en-us/library/aa302363.aspx">harden the TCP/IP stack</a>.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html" title="ddos programing">ddos programing</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html" title="detecting dos on web server">detecting dos on web server</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html" title="netstat cmd udp tcp ip">netstat cmd udp tcp ip</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/detecting-dos-ddos-attack-windows-2003-2008-server.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk 9 Problem with .Net Framework 4</title>
		<link>http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html</link>
		<comments>http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html#comments</comments>
		<pubDate>Sun, 18 Mar 2012 09:43:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Net.framework 4]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2517</guid>
		<description><![CDATA[Q: I have problem with .Net Framework 4. i install .net 4. but i cant run .net 4 project. i change application pool from IIS to .net 4 classic and integrated but i have HTTP Error 500.19 &#8211; Internal Server Error. now how can i fix that problem ? i need to solve this problem. [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">Q:</span></strong> I have problem with .Net Framework 4.<br />
i install .net 4. but i cant run .net 4 project.</p>
<p>i change application pool from IIS to .net 4 classic and integrated but i have HTTP Error 500.19 &#8211; Internal Server Error.<br />
now how can i fix that problem ?<br />
i need to solve this problem.</p>
<p><span style="color: #008000;"><strong>A:</strong></span> Grant the httpdocs folder read/list permission for IIS_WPG service. I think .NET 4 is still not supported by Plesk (among many other things they&#8217;re lacking behind)</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="net framework 4 centos">net framework 4 centos</a> (2)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="change framework in plesk 9">change framework in plesk 9</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="plesk net on linux">plesk net on linux</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="plesk http error 500 19">plesk http error 500 19</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="plesk 9 ve framework 4 kullanımı">plesk 9 ve framework 4 kullanımı</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="plesk 10 framework 4">plesk 10 framework 4</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="net framework plesk">net framework plesk</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="NET Framework 4 plesk install">NET Framework 4 plesk install</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="net framework 4 plesk 9 0">net framework 4 plesk 9 0</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html" title="net framework 4 plesk">net framework 4 plesk</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/plesk-9-problem-net-framework-4.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Corrupted or Missing \WINDOWS\SYSTEM32\CONFIG</title>
		<link>http://thegioinguonmo.com/os/windows/corrupted-or-missing-windowssystem32config.html</link>
		<comments>http://thegioinguonmo.com/os/windows/corrupted-or-missing-windowssystem32config.html#comments</comments>
		<pubDate>Wed, 15 Feb 2012 09:40:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[Press]]></category>
		<category><![CDATA[repair option]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1200</guid>
		<description><![CDATA[If you get the error: Windows could not start because the following files is missing or corrupt \WINDOWS\SYSTEM32\CONFIG\SYSTEM or \WINDOWS\SYSTEM32\CONFIG\SOFTWARE Insert and boot from your WindowsXP CD. At the first R=Repair option, press the R key Press the number that corresponds to the correct location for the installation of Windows you want to repair. Typically [...]]]></description>
			<content:encoded><![CDATA[<p>If you get the error:<br />
<em>Windows could not start because the following files is missing or corrupt<br />
</em>\WINDOWS\SYSTEM32\CONFIG\SYSTEM or \WINDOWS\SYSTEM32\CONFIG\SOFTWARE</p>
<ol>
<li>Insert and boot from your WindowsXP CD.</li>
<li>At the first R=Repair option, press the R key</li>
<li>Press the number that corresponds to the correct location for the installation of Windows you want to repair.<br />
Typically this will be #1</li>
<li>Enter in the administrator password when requested</li>
<li>cd \windows\system32\config</li>
<li>Depending on which section was corrupted:<br />
ren software software.bad or ren system system.bad</li>
<li>Depending on which section was corrupted<br />
copy \windows\repair\system<br />
copy \windows\repair\software</li>
<li>Take out the CD ROM and type exit</li>
</ol>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/corrupted-or-missing-windowssystem32config.html" title="centos window is corrapt how to secure data">centos window is corrapt how to secure data</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/corrupted-or-missing-windowssystem32config.html" title="smbclient plesk">smbclient plesk</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/corrupted-or-missing-windowssystem32config.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Enable IP Routing in Windows</title>
		<link>http://thegioinguonmo.com/os/windows/how-to-enable-ip-routing-in-windows.html</link>
		<comments>http://thegioinguonmo.com/os/windows/how-to-enable-ip-routing-in-windows.html#comments</comments>
		<pubDate>Sun, 29 Jan 2012 21:40:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[Exit Registry Editor]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[protocol]]></category>
		<category><![CDATA[Registry Editor]]></category>
		<category><![CDATA[use]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1162</guid>
		<description><![CDATA[Routing between subnets is disabled by default for the TCP/IP protocol in Windows NT. To enable routing, following these steps: WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can [...]]]></description>
			<content:encoded><![CDATA[<p>Routing between subnets is disabled by default for the TCP/IP protocol in Windows NT. To enable routing, following these steps:</p>
<p>WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can be solved. Use this tool at your own risk.</p>
<ol>
<li>Start Registry Editor (REGEDT32.EXE) and go to the following subkey:<br />
<blockquote><p><strong> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip<br />
\Parameters</strong></p></blockquote>
</li>
<li>From the Edit menu, choose Add Value.</li>
<li>Enter the following values:<br />
<blockquote><p>Value Name: IpEnableRouter<br />
Data Type: REG_DWORD<br />
Value: 1</p></blockquote>
</li>
<li>Exit Registry Editor and restart Windows NT.</li>
</ol>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/how-to-enable-ip-routing-in-windows.html" title="how to configure ip routing in windows">how to configure ip routing in windows</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/how-to-enable-ip-routing-in-windows.html" title="how to disable window ip routing">how to disable window ip routing</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/how-to-enable-ip-routing-in-windows.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX(i) &amp; Windows Server 2008: Updated driver for sluggish console access</title>
		<link>http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html</link>
		<comments>http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html#comments</comments>
		<pubDate>Tue, 03 Jan 2012 11:38:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2114</guid>
		<description><![CDATA[If you are running Windows Server 2008 in your VMware environment, you&#8217;ll have noticed that by default the vSphere Console access is a lot slower than what you are used to in Windows Server 2003. You can fix that, by updating the Graphics Driver in Server 2008. 1. Install VMware Tools To start, VMware Tools [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running Windows Server <strong>2008 </strong>in your VMware environment, you&#8217;ll have noticed that by default the vSphere Console access is a lot slower than what you are used to in Windows Server 2003. You can fix that, by updating the Graphics Driver in Server 2008.</p>
<h2>1. Install VMware Tools</h2>
<p>To start, VMware Tools needs to be installed in your Virtual Machine. That should at least be from <strong>vSphere </strong>version 4.0.</p>
<h2>2. Update your Graphics Drivers</h2>
<p>Go to your Hardware Manager in Windows and right click your Display Adapter. Choose <strong>Update Driver Software</strong>.</p>
<p><a href="http://thegioinguonmo.com/wp-content/uploads/2012/01/1_update_driver.png"><img class="alignnone size-full wp-image-2115" title="1_update_driver" src="http://thegioinguonmo.com/wp-content/uploads/2012/01/1_update_driver.png" alt="1 update driver VMware ESX(i) & Windows Server 2008: Updated driver for sluggish console access" width="650" height="551" /></a></p>
<p>Say you&#8217;ll browse to a specific location and point it to <strong>C:\Program Files\Common Files\VMware\Drivers\wddm_video.</strong></p>
<p><a href="http://thegioinguonmo.com/wp-content/uploads/2012/01/2_driver_path.png"><img class="alignnone size-full wp-image-2116" title="2_driver_path" src="http://thegioinguonmo.com/wp-content/uploads/2012/01/2_driver_path.png" alt="2 driver path VMware ESX(i) & Windows Server 2008: Updated driver for sluggish console access" width="650" height="551" /></a></p>
<p>Et voila: your driver has been updated!</p>
<p><a href="http://thegioinguonmo.com/wp-content/uploads/2012/01/3_driver_installed.png"><img class="alignnone size-full wp-image-2117" title="3_driver_installed" src="http://thegioinguonmo.com/wp-content/uploads/2012/01/3_driver_installed.png" alt="3 driver installed VMware ESX(i) & Windows Server 2008: Updated driver for sluggish console access" width="650" height="551" /></a></p>
<h2>3. Reboot your VM</h2>
<p>After the driver&#8217;s been installed, reboot your Virtual Machine and you will notice the smooth console access you&#8217;re used to from Windows Server 2003.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="w2008 esxi console blank">w2008 esxi console blank</a> (2)</li><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="download vmware windows server 2008">download vmware windows server 2008</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="How to install NIC drivers for windows server 2008">How to install NIC drivers for windows server 2008</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="update nic driver server 2008 esx">update nic driver server 2008 esx</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="vmware debian linux virtuale machine console is black">vmware debian linux virtuale machine console is black</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html" title="vmware driver windows server 2008 tagging">vmware driver windows server 2008 tagging</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/vmware-esxi-windows-server-2008-updated-driver-sluggish-console-access.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Listen IPs In IIS (The network location cannot be reached)</title>
		<link>http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html</link>
		<comments>http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html#comments</comments>
		<pubDate>Tue, 03 Jan 2012 11:34:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[iis]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=2110</guid>
		<description><![CDATA[When you run IIS sites long enough, you might eventually run into the following problem when trying to start a new or already existing site in the IIS manager. Error: “The network location cannot be reached. “ The most likely cause is that Host Headers for that particular site are configured for an IP address [...]]]></description>
			<content:encoded><![CDATA[<p>When you run IIS sites long enough, you might eventually run into the following problem when trying to start a new or already existing site in the IIS manager.</p>
<pre class="brush:plain">    Error: “The network location cannot be reached. “</pre>
<p>The most likely cause is that Host Headers for that particular site are configured for an IP address which is either no longer configured on the server, or on which IIS is no longer listening. I&#8217;m just going to assume you know how to check if an IP is configured on a server.</p>
<p>To check whether IIS service is listening on a particular IP, you&#8217;ll need the <a rel="nofollow" target="_blank" href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=96a35011-fd83-419d-939b-9a772ea2df90&amp;displaylang=en">Windows Server Support Tools</a> (hit google for another version if you should need it). After the installation, can you use the following Command Prompt tools.</p>
<pre class="brush:plain">&gt; httpcfg query iplisten
IP                      : 10.1.5.200</pre>
<p>If your IP address isn&#8217;t present, try adding it.</p>
<pre class="brush:plain">&gt; httpcfg set iplisten -i 10.1.5.201
HttpSetServiceConfiguration completed with 0.</pre>
<p>And query the list again.</p>
<pre class="brush:plain">&gt; httpcfg query iplisten
IP                      : 10.1.5.200
------------------------------------------------------------------------------
IP                      : 10.1.5.201
------------------------------------------------------------------------------</pre>
<p>If it does not work after the <strong>httpcfg</strong> change, you may have to reboot your server (I know, it sucks). For some reason, restarting IIS alone may not always help.</p>
<p>A very likely cause is that something else was occupying port 80 already when the IIS service started, causing it to delete that particular listen IP from it&#8217;s configuration. To track that down, use <strong>netstat</strong>.</p>
<pre class="brush:plain">&gt; netstat -anb | find “80″</pre>
<p>That will list all connections or programs listening to port 80.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html" title="network location cannot be reached rootkit">network location cannot be reached rootkit</a> (3)</li><li><a href="http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html" title="httpsetserviceconfiguration firewall">httpsetserviceconfiguration firewall</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html" title="iis start site the network location cannot be reached">iis start site the network location cannot be reached</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/fixing-listen-ips-iis-network-location-reached.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vSphere Web Access 503 Service Unavailable Error And Solution</title>
		<link>http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html</link>
		<comments>http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html#comments</comments>
		<pubDate>Mon, 19 Dec 2011 08:29:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=1965</guid>
		<description><![CDATA[By default vSphere does not provide client for Linux or OS X. You need to use Windows system to manage your VMware ESX server. However, it does provides vSphere Web Access which allows you to organize and share virtual machines using web browser. If you try to access vSphere Web Access you may get an [...]]]></description>
			<content:encoded><![CDATA[<p>By default vSphere does not provide client for Linux or OS X. You need to use Windows system to manage your VMware ESX server. However, it does provides vSphere Web Access which allows you to organize and share virtual machines using web browser. If you try to access vSphere Web Access you may get an error which read as follows:</p>
<blockquote><p><strong> 503 Service Unavailable</strong></p></blockquote>
<p>You can fix this problem as follows.</p>
<p>Login to your vmware server as root user.</p>
<p>Type the following command to turn on the service:<br />
<code># chkconfig vmware-webAccess on<br />
# service vmware-webAccess start<br />
</code><br />
Now login as root to your server:</p>
<div id="attachment_6885"><a href="http://thegioinguonmo.com/?attachment_id=6885" rel="attachment wp-att-6885"><img title="Vmware vSphere Web Access Login URL" src="http://files.cyberciti.biz/uploads/tips/2010/05/vmware-vSphere-Web-Access-login.png" alt="vmware vSphere Web Access login vSphere Web Access 503 Service Unavailable Error And Solution" width="469" height="226" /></a>Fig.01: vSphere Web Access Login In Action</p>
</div>
<p>Once logged in you can setup guest operating systems, start and stop vms and so on. This can be done using any browser under Linux / OS X or Windows operating systems:</p>
<div id="attachment_6917"><a href="http://thegioinguonmo.com/?attachment_id=6917" rel="attachment wp-att-6917"><img title="vSphere Web Access Login and Setup VMs" src="http://files.cyberciti.biz/uploads/tips/2010/05/vSphere-Web-Access-set-guest-oses-small-u.png" alt="vSphere Web Access set guest oses small u vSphere Web Access 503 Service Unavailable Error And Solution" width="599" height="374" /></a>Fig.02: vSphere Web Access in Action</p>
</div>
<p>Alternatively, you can use MS-Windows vSphere client to start and stop vSphere web access services without using shell prompt.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="ken katos virtual disk driver">ken katos virtual disk driver</a> (3)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="503 service unavailable vmware centos">503 service unavailable vmware centos</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="503 service unavailable workstation">503 service unavailable workstation</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="vcenter server Web service not available">vcenter server Web service not available</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="vmware server service unavailable">vmware server service unavailable</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="vmware web access 503 service unavailable">vmware web access 503 service unavailable</a> (1)</li><li><a href="http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html" title="vmware webaccess 503">vmware webaccess 503</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/windows/vsphere-web-access-503-service-unavailable-error-solution.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: thegioinguonmo.com @ 2012-05-20 18:00:30 -->
