find ./ -size +5G -exec sh -c ‘ls -h “{}”|egrep -i -q “*.(avi|AVI|mkv|MKV|mp4|MP4)$”‘ ‘;’ -print
VMWare Workstation 10 under CentOS 6.x failed to start Virtual machine monitor
I have experienced recently some issue while attempting to start vmware machines on Centos OS. (6.6).
When I start the vmware services, (service vmware start) the Virtual machine monitor states as FAILED.
Attending to start a vmware, this error appears:
Could not open /dev/vmmon: No such file or directory. Please make sure that the kernel module `vmmon' is loaded.
Continue reading “VMWare Workstation 10 under CentOS 6.x failed to start Virtual machine monitor”
Domino Server installation on Linux (Centos or Redhat)
I have been struggling a little, on the configuration steps until I figured that these steps could be done remotely from a Windows Machine.
I have been taken Centos 5.7 x64 and Domino 8.5.1 and Windows Machine. (Windows)
An additional machine is needed to install the Lotus Notes Administrator in order to configure and setup the Domino Server remotely and manage it later on.
Let start by installing the Domino server on the Linux machine; Before starting to install you do need to prepare the platform.
Continue reading “Domino Server installation on Linux (Centos or Redhat)”
Install a squid proxy on ubuntu in 5 minutes
From your ubuntu machine, even a desktop machine run this command from a terminal window:
Continue reading “Install a squid proxy on ubuntu in 5 minutes”
Install rar and unrar on Centos
Open up ssh client and connect to the server as root user
for 32bit: wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.i386.rpm
For 64 bit wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
Install DAG’s GPG key rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
Install the package For 32 bit rpm -i rpmforge-release-0.5.1-1.el5.rf.i386.rpm
For 64 bit rpm -i rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
Install Rar and Unrar yum install rar unrar
Checking multiple hosts available through the network in once on Linux
I have been using this small script to check if multiple host would have been online. Continue reading “Checking multiple hosts available through the network in once on Linux”
Change file ‘s name and extension in uppercase on Linux
Having a huge amount of files, I had to change the files in uppercase.
Just a quick command line/script that at change in uppercase the file’s name and extension based on the extension given.
Continue reading “Change file ‘s name and extension in uppercase on Linux”
How to: Mount an ISO image under Linux
- You must login as a root user, if not root user then switch to root user using following command:
# su -
- 2) Create the directory i.e. mount point:
# mkdir -p /mnt/disk
- 3) Use mount command as follows to mount iso file called disk1.iso:
# mount -o loop disk1.iso /mnt/disk
sent file in ftp using a bash script
Below the script.