Linux command to find modified and access date of file/dir/filesystem
|

Linux command to find modified and access date of file/dir/filesystem

In this tutorial we will learn about linux command to find last modified and access date of a file/dir and filesystem.The command is very useful for troubleshooting purpose. Here we will use the stat command which display file or file system status. To find the last modified and access date of a file/dir/filesystem in linux,we…

Install Ubuntu font family for individual user in CentOS/Red Hat

Install Ubuntu font family for individual user in CentOS/Red Hat

In this tutorial we will learn how to install Ubuntu font family for individual user in CentOS/Red Hat. In our last post we have already described about how to install Ubuntu font family system wide. To Add/Install Ubuntu font family for an individual users in CentOS and Red Hat Step A: Create a .fonts directory…

How to add/install Ubuntu fonts in CentOS/Red Hat Linux
|

How to add/install Ubuntu fonts in CentOS/Red Hat Linux

Introduction In this tutorial we will learn, how to add/install Ubuntu fonts in CentOS/Red Hat Linux. The Ubuntu fonts are very popular in typography. The Ubuntu fonts are funded by Canonical . Its wonderful design work and implementation has been taken care by Dalton Maag . To know more about Ubuntu Fonts, here is the…

Install pdfedit for editing pdf file in Ubuntu

Install pdfedit for editing pdf file in Ubuntu

Question: How to edit pdf file in UbuntuAnswer:Install pdfedit for editing pdf file in Ubuntu.Pdfedit is one of the awesome application which helps in editing the pdf file.It is nice alternate for Adobe Acrobat pdf editor.Description of DIY practical: We have tested this practical in Ubuntu 12.10 and 13.10. Follow the given below steps to…

How to set delay replication in MySQL slave server
|

How to set delay replication in MySQL slave server

In this tutorial we will learn how to set delay replication in MySQL Master Slave replication. After setting this configuration,slave server deliberately lag behind the Master server as per the delay time you have set. The MySQL server version 5.6 has this feature and it has some benefits which will discuss in this post. Set…

Install MySQL Server 5.6 in CentOS 6.x and Red Hat 6.x Linux

Install MySQL Server 5.6 in CentOS 6.x and Red Hat 6.x Linux

In this tutorial we will learn how to install MySQL Server 5.6 in CentOS 6.x and RHEL 6.x by using yum command. The package is “Architecture Independent” hence applicable to 32 bit(i386) and 64 bit(x86_64) operating system.Details of system where practical has been applied Operating System: CentOS 6.5Arch: x86_64 and i386 (Both) Install the MySQL…

search keyword in file with line number using grep command

search keyword in file with line number using grep command

grep command which is used for searching the keyword in file and show its output as lines containing a match to the given PATTERN or Keyword. When we simply use grep command without using any switches it simply shows the output with line having the keyword.Today,in this post we will know about a small tip…

Connect to windows shared folder in Xfce Desktop linux

Connect to windows shared folder in Xfce Desktop linux

In Xfce desktop the defualt file manager is thunar.It appears similarly to Gnome’s Nautilus. To connect windows shared folder or samba shared directory from client machine which has Xfce Desktop,use the given command. Open the terminal and type below given command,it will open the GUI of thunar thunar smb://ip-address-of-machine For eg. I have a shared…

How to configure multiple mysql instance in Ubuntu
|

How to configure multiple mysql instance in Ubuntu

How to configure multiple mysql instance in Ubuntu In this tutorial we will learn,how to configure multiple mysql instance in Ubuntu.Here multiple mysql instance means we can run multiple mysql server in single machine.We expect you have already install mysql-server in your system(if not then run the command apt-get install mysql-server). To configure multiple mysql…

Install XFCE Desktop in Ubuntu through command line

Install XFCE Desktop in Ubuntu through command line

XFCE is one the lightest Desktop environment for unix like operating system.If you are looking for alternate of Unity Desktop which must be lightweight desktop environment so here XFCE is the answer. The XFCE desktop can be installed along with Unity and any other Desktop environment hence there is no requirement to remove any older…

How to create multiple mysql instance in CentOS 6.4 and Red Hat 6.4
|

How to create multiple mysql instance in CentOS 6.4 and Red Hat 6.4

In this tutorial we will learn about how to create multiple mysql instance in CentOS 6.4 and Red Hat 6.4. Multiple instance means in single system we can create multiple MySQL server. These multiple mysql server will run in different ports.In this practical we expect you already have MySQL server installed in your system. To…

Install nagios 4.0.2 in CentOS 6 using tarball
|

Install nagios 4.0.2 in CentOS 6 using tarball

In this tutorial we will learn about how to install nagios 4.0.2 in Linux using tarball.Nagios is one of the famous and very robust Monitoring Server.The installation has been done in minimal installed CentOS 6.4.Recently Nagios team has released its much awaited 4.x version.The installation steps is applicable to other Nagios version also. Details of…