OpenSUSE is an open source OS and free to use with your PC, laptops and as a servers. The OpenSUSE newest version 11.2 has been released and you can download it from http://software.opensuse.org. It includes GNOME, KDE and many user friendly applications. Here are some screen shots provide by the OpenSUSE web site for its new release.Find more details on www.opensuse.org
Use any GNS3 support Cisco IOS images and do your simulation. No need of physical routers and switches. You need GNS3 and some Cisco IOS.Go to www.gns3.net to download your copy !!!!Find your Cisco IOS on the internet.
As a Linux user how do you determine IP address of your Linux PC in command line ?. Simply issue the command ifconfig -a as below. Here -a is option and ifconfig is the command[root@fedora]# ifconfig -aeth0 Link encap:Ethernet HWaddr 00:0E:C7:15:04:A8BROADCAST MULTICAST MTU:1500 Metric:1RX packets:0 errors:0 dropped:0 overruns:0 frame:0TX packets:0 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:100RX bytes:0 (0.0 b) TX bytes:0 ...
Red Hat Enterprise Linux (RHEL) 6 beta has arrived and it's newest beta version RHEL 6 beta 2 is now available for download for testing purposes. The official announcement mention that the beta 2 has a new installer.This new beta release available on both 32-bit and 64-bit platform for download. To find out more details visit RED HAT web siteHere ...
Linux OS also runs several services like windows. Some times most of them are not useful or sometimes some of them are reduce PC performance. So how to manage those service in Linux. Here i show the basic way to control those service through the command line in fedora.The syntax is - service [service name] [option]The available options are --start ...
Do you want to earn some extra cash from the Internet. Here i show you what i did. There are lots of bux site we can found from the internet. But the question is will they really pay for us. Unfortunately most of the sites are SCAM sites. You can find more details from PTC INVESTIGATION website, which are the ...
Apple iPhone 4 is the latest phone launch by Apple. This iPhone got lot of new features. It has 5 MP, gives high image quality. It supports Wi-Fi 802.11 b/g/n WLAN,HSDPA, 7.2 Mbps; HSUPA, 5.76 Mbps 3G network and Class 10, 236.8 kbps EDGE. The iPhone 4 use 1 GHz Apple A4 processor and got 512 MB RAM. This iPhone ...
The earlier post we talk about how to determine our IP address which assign to our PC. Now we talk how do we change that IP address statically. We use same command as we used in earlier post. That is ifconfig. We want to change our IP address as 10.0.0.5 and we assign the 24 prefix sub net to our ...
Here we are going to write a little shell Program.First open the terminal and then issue following commandsvi firstscript.shNow you are created a file called "firstscript" and going to enter shell programming syntax. Enter following simple script.#!/bin/bash //make this document a script file# Display text using a functionfunction textdis{echo "Welcome to my Shell Scripting world";}textdis; //execute the functionPress Ctrl^d // ...
Sources files comes as ".tar.gz", "tar.bz2" and ".zip" files. So what we want to do is unzip these zip files. It is better to use "usr/local/src" directory to unzip them.For .tar.gz -> use : tar -zxvf < file_name_of_zip>For tar.bz2 -> use : tar -jxvf < file_name_of_zip>For .zip -> use : unzip < file_name_of_zip>Now go in to the unzip file directory ...
Here are the commands that you need to install binary(.bin) or Scripts(.sh) filesFor .bin files01. Make sure that the file is set to "executable" . chmod +x file_name02. Then run the file ./file_nameFor .sh files01. Make sure that the file is set to "executable" do the step 01 above.02.Then run the file either with the same command use as previous installing on .bin file or like this: sh file_name
Here are the commands that you need to Use VI editor on LinuxOpen the terminal and issue, # vi Eg : # vi myfirstfileInsert Text in to the file Using i, a, o, and OThe first way to switch to insert mode is to type the letter i, which, mnemonically enough,inserts text into the file. The other commands that accomplish ...
Eclipse for PHP Developers is a best tool that i have ever seen for develop professional PHP applications. It provides all development functions for developers. This IDE has hot many rich features. You can find out more details from http://adf.ly/1PQsU and you can download your copy from http://adf.ly/1PQuI
Bux.to is a good PTC websites that pay really for their users. For non-premium users can get $0.01 per click and there are more than 15 ads available for a day. Premium members can get $0.0125 per ads. So it is one of the best PTC site that i have ever seen. You can withdraw your balance to the Alert ...
Most people can't find out the registration open time of www.demonoid.com and other most popular torrent sites. Because these sites opens their registration process for few hours per day and only one day for a month. So it is difficult to find out at which time this registration are open of each sites. Here is a best solution for it. ...
If you need keep you Linux PC up to date, you have to update your system every time. But if you can set this thing happens automatically you do not want to worry by manually updating your system. Here i show how do we can enable or set the yum update manager to run start up as a service. To ...