Categories
technews

94 % of World’s Top 500 Supercomputers runs on linux

Linux tends to dominate as the operating system of choice on the world’s fastest supercomputers. A full 469, or 94 percent, of the top 500 supercomputers now run Linux, according to the Top500 report. Meanwhile, only three of the world’s top supercomputers in this latest report — ranking at No. 132, 165 and 183, respectively — run […]

Categories
Redhat

Red Hat a short history…

In 1993 Bob Young incorporated the ACC Corporation, a catalog business that sold Linux and Unix software accessories. In 1994 Marc Ewing created his own Linux distribution, which he named Red Hat Linux (Ewing had worn a red Cornell University lacrosse hat, given to him by his grandfather, while attending Carnegie Mellon University). Ewing released […]

Categories
technews

Google Unveils $199 laptop

Google has launched Acer C7 Chromebook for $199. Specifications are: 11.6’’ (1366×768) display 1 inch thin – 3 lbs / 1.4 kg 3.5 hours of battery Dual-core Intel® Celeron® Processor 100 GB Google Drive Cloud Storage2 with 320 GB Hard Disk Drive Dual band Wi-Fi 802.11 a/b/g/n and Ethernet HD Camera 3x USB 2.0 1x HDMI […]

Categories
Linux

Amazon Glacier: Cloud Storage For Archives And Backups Launched

Amazon web services (AWS) launched a new service called Amazon Glacier. You can use this service for archiving mission-critical data and backups in a reliable way in an enterprise IT or for personal usage. This service cost as low as $0.01 (one US penny, one one-hundredth of a dollar) per Gigabyte, per month. You can […]

Categories
Linux

Making a high secured Linux server

Data or application security is one of the major headaches faced as a system Administrator. In my blog am trying to share a few points which make a server less vulnerable to a hack. Remove all unwanted Software: remove/disable all unnecessary services or package installed in the server, you can remove unnecessary package from your server […]

Categories
Databases

Connecting to a remote Oracle Database.

Local database Connecting to a local database is easy, just use: $ sqlplus dbUser/dbPassword@dbSid Here’s the  syntax for connecting to a remote database using its SID: $ sqlplus dbUser/dbPassword@'(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP) (HOST=remoteServer)(PORT=1521)))(CONNECT_DATA=(SID=dbSid)))’

Categories
Linux

How to add a new hard disk to a Linux operating System?

Once the new harddisk is connected, you can verify the connected harddisk by  issuing the below comment. $fdisk -l see the screenshot below.               As you can see above the second hard disk is detected as “/dev/sdb” Steps for creating a new ext3 partition 1. #fdisk /dev/sdb type “m” […]

Categories
Linux

How do I list connected USB devices in linux?

In all flavors of Linux, we can use a utility called “lsusb” to get information on various USB devices connected. $ lsusb The above command lists devices connected to the Linux kernel. See the screenshot attached below.   You can use, $ lsusb -v to get more detailed information on the devices connected to the system.

Categories
Linux

Install Subversion with Web Access on Ubuntu

To install subversion, open a terminal and run the following command: sudo apt-get install subversion libapache2-svn We’re going to create the subversion repository in /svn, although you should choose a location that has a good amount of space. sudo svnadmin create /svn Next we’ll need to edit the configuration file for the subversion webdav module. […]

Categories
Linux Redhat

RedHat Enterprise Linux (RHEL 5 installation guide)

RHEL 5 can be installed using a variety of methods, like DVD/CD ROM Harddrive NFS FTP HTTP Here we are going to discuss RHEL5 installation using the first method (by using a RHEL5 DVD) As a starting procedure, boot your server from the DVD drive, the installation program then probes our system and tries to […]