Install LibreOffice on CentOS

1. Download LibreOffice Linux Package LibreOffice  64-bit version wget http://download.documentfoundation.org/libreoffice/stable/6.1.3/rpm/x86_64/LibreOffice_6.1.3_Linux_x86-64_rpm.tar.gz LibreOffice  32-bit version wget http://download.documentfoundation.org/libreoffice/stable/6.1.3/rpm/x86/LibreOffice_6.1.3_Linux_x86_rpm.tar.gz 2. Change to root User su – ## OR ## sudo -i 3. Extract LibreOffice Package and Access Directory LibreOffice tar -xvf LibreOffice_* cd LibreOffice_* LibreOffice tar -xvf LibreOffice_* cd LibreOffice_*   4. Install / Update LibreOffice RPM packages Install … Read more

Installing Google Chrome on CentOS

Follow the steps listed below to install Google Chrome on your CentOS system: Start by opening your terminal and downloading the latest Google Chrome .rpm package with the following wget command: wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm Once the file is downloaded, install Google Chrome on your CentOS 7 system by typing: sudo yum localinstall google-chrome-stable_current_x86_64.rpm The command above … Read more

working with files

In this post we learn how to recognise, create, remove, copy and move files using commands like file, touch, rm, cp, mv and rename. all files are case sensitive Files on Linux (or any Unix) are case sensitive. This means that FILE1 is different from file1, and /etc/hosts is different from /etc/Hosts (the latter one … Read more

Install LAMP Server (Apache, MySQL, PHP) On RHEL, CentOS

LAMP is a combination of operating system and open-source software stack. The acronym LAMP is derived from first letters of Linux, Apache HTTP Server, MySQL database, and PHP/Perl/Python. Installation of Apache Apache is an open-source multi-platform web server. It provides a full range of web server features including CGI, SSL and virtual domains. To install … Read more