Posts

Showing posts with the label SLES-11

View Linux Directory Free Space Commands

Image
df-hl view the disk space left df-h view of the partition size for each root path  du-sh [directory name] returns the size of the directory du-sm [folder] to return to the folder number of the total Mv

openSUSE Linux 11.4 Released with Downloads

Image
openSUSE Linux 11.4 has been released with downloads Links. openSUSE Linux 11.4 Main Goals. Make openSUSE the easiest for anyone to become available and the most widely used Linux distributions. Joint use of open source software to make openSUSE the world's most available Linux distributions and Linux newbies and experienced users of the desktop environment. Significantly simplify and open up its development and packaging processes to make openSUSE a provider of Linux developers and software platform of choice.  Release Notes: http://news.opensuse.org/2011/03/10/opensuse-11-4/ http://download.opensuse.org/distribution/11.4/iso/openSUSE-11.4-KDE-LiveCD-i686.iso http://download.opensuse.org/distribution/11.4/iso/openSUSE-11.4-GNOME-LiveCD-i686.iso http://download.opensuse.org/distribution/11.4/iso/openSUSE-11.4-KDE-LiveCD-x86_64.iso http://download.opensuse.org/distribution/11.4/iso/openSUSE-11.4-GNOME-LiveCD-x86_64.iso

Top 7 Open Source Linux Distribution in 2011

Image
1) Ubuntu Linux 2) Mandriva Linux 3) PCLinuxOS   4) Gentoo Linux 5) openSUSE Linux   6) Debian 7) FreeBSD

SUSE Linux 11 Wallpapers

Image
SUSE Linux Black SUSE Linux Green SUSE Linux Inspiration

Linux Miscellaneous but important commands

To find help on some topic : [root@SLES /]# man pwd or [root@SLES /]# info pwd Also you can seek for a particual keyword ( say:  umask) in the man pages by: [root@SLES /]# man -K umask To find a file in the /usr directory, use: [root@SLES /]# find /usr -name “*.doc” To find files and directories owned by the group students in the /usr directory, use: [root@SLES /]# find /usr -group students Assuming a user left the organization and the files owned by his account name must be found and deleted for security reasons, use : [root@SLES /]# find / -user Shaheer -exec rm  '{}'  ';' Want to perform some quick mathematical calculations, use: [root@SLES /]# bc To set up date and time as 16 Jan 2000 17:35 you should use: [root@SLES /]# date 0520173503 To synchronize it with the hardware clock, use: [root@SLES /]# hwclock –-systohc To check for memory and swap space usage, you can use: [root@SLES /]# free or [root@SLES /]# top To check the sy...

System Monitor SUSE Linux Enterprise Server 11

Image
System Monitor can display System Load information and Process Tables information. You can also use System Monitor to monitor and modify system behavior. System Load shows the information on:- ·                     CUP Load Percentage ·                     Load Average Time ·                     Physical Memory Usage ·                     Swap Memory Usage Process Tables of System Monitor can show Processes information that is loaded in the system by its Name, User Name, CUP%, Memory Usage, Shared Memory and window title. You can also kill a process using System Monitor. Processes information can be shown as:-...

Key Themes of SUSE Linux Enterprise 11

Image
SUSE Linux Enterprise 11 will focus on in the following areas to make market-leading innovation and development. Business Critical Data Center Technology Based on SUSE Linux Enterprise 10 in the data center based on the success, SUSE Linux Enterprise 11 plans to introduce new features to support equipment development and low-latency computing, and support for high availability of advanced interconnects like Infiniband same program. UNIX Migration In order to eliminate the traditional UNIX from the high cost of installation, customers are a variety of hardware platforms to Linux migration. SUSE Linux Enterprise SUSE Linux Enterprise 11 will focus on Solaris to meet or exceed performance benchmarks, and provide the best on the market above the core set of tools and features. Virtualization With virtualization technology, IT management to bring efficiency, agility, flexibility, new height, the traditional operating system concepts are being redefined. Novel...

Configure Apache Services on SUSE Linux Enterprise Server 11

Image
Apache is actually "a PATCHy server". It was based on some existing code and a series of "patch files" made to original NCSA server. For many people this name brings the same meaning / feeling / spirit of the Native American Indian tribe of Apache, well-known for their superior skills in warfare strategy and inexhaustible endurance. Required Packages Apache2-2.2.10-2.18 Apache2-utils-2.2.10-2.18 Check apache software install on your machine through this command #rpm –qa |grep apache. Configuration Apache configuration file is /etc/apache2/httpd.conf. This file is divided into three main sections. 1. Global Environment 2. Main configuration 3. Virtual Host Configuration In section 1, only the directive Listen needs to be set. To change the Listen directive you need to configure listen.conf file that is located in /etc/apache2. Open listen.conf file in vi editor # vi /etc/apache2/listen.conf listen.conf tells the Apache server, on which IP and port to lis...

SSH on SUSE Linux Enterpriser Server 11

Image
In the past, remote connections were established with Telnet, which offers no guards in the form of encryption or other security mechanisms against eavesdropping. There are also other traditional communication channels (such as FTP and some remote copying programs) that provide unencrypted transmission. The SSH suite was developed to provide secure transmission by encrypting the authentication strings (usually a login name and a password) and all the other data exchanged between the hosts. With SSH, the data flow can still be recorded by a third party, but the contents are encrypted and cannot be reverted to plain text unless the encryption key is known. SUSE Linux Enterprise Server 11 installs the package OpenSSH by default, which includes programs such as ssh, scp, and sftp as alternatives to Telnet, rlogin, rsh, rcp, and FTP. SSH Features : The secure shell not only provides all the functionality of Telnet, rlogin, rsh and rcp, but even includes some features of FTP. ...