Install Thunderbird 17 on Fedora 19/18, CentOS/Red Hat (RHEL) 6.4

Mozilla Thunderbid 17 is released and this is guide, howto install Thunderbird 17 on Fedora 19/18/17/16/15/14, CentOS 6.4/6.3/6.2/6.1/6 and Red Hat (RHEL) 6.4/6.3/6.2/6.1/6 using YUM. Thunderbird 10 is currently available on CentOS 6.4/5.9 and Red Hat (RHEL) 6.4/5.9 own repos, so with this guide you can also install Thunderbird 10 on CentOS 5.9 and Red Hat (RHEL) 5.9. What’s new in Thunderbird 17 A Menu Button is now shown to new users by default Tabs are now drawn in the title bar on Windows RSS feeds can now be viewed in the Wide View Layout Various fixes and performance improvements Various security fixes What’s new in Thunderbird 10 New ability to search the Web Improvements to email search Several fixes when drafting email several other platform fixes Read full details from Thunderbird 17 release notes and Thunderbird 10 release notes.
Read more →

Install LibreOffice 6.1/6.0 on Fedora 29/28, CentOS/RHEL 7.5

This is guide, howto to install LibreOffice 6.1.3 (or LibreOffice 6.0.7) on Fedora 29/28/27, CentOS 7.5 and Red Hat (RHEL) 7.5 using LibreOffice’s original RPM packages. This guide’s idea is offer one method to all LibreOffice versions and also one method to all Fedora 29/28/27, CentOS/Red Hat (RHEL) 7.5 users. 1. Download LibreOffice 6.1.3/6.0.7 Linux Package LibreOffice 6.1.3 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 6.1.3 32-bit version wget http://download.documentfoundation.org/libreoffice/stable/6.1.3/rpm/x86/LibreOffice_6.1.3_Linux_x86_rpm.tar.gz LibreOffice 6.0.7 64-bit version wget http://download.documentfoundation.org/libreoffice/stable/6.0.7/rpm/x86_64/LibreOffice_6.0.7_Linux_x86-64_rpm.tar.gz LibreOffice 6.0.7 32-bit version wget http://download.documentfoundation.org/libreoffice/stable/6.0.7/rpm/x86/LibreOffice_6.0.7_Linux_x86_rpm.tar.gz 2. Change to root User su - ## OR ## sudo -i 3. Extract LibreOffice Package and Access Directory LibreOffice 6.1.3 tar -xvf LibreOffice_6.1.3* cd LibreOffice_6.1.3* LibreOffice 6.0.7 tar -xvf LibreOffice_6.0.7* cd LibreOffice_6.0.7* 4. Install / Update LibreOffice RPM packages Install LibreOffice 6.1.3/6.0.7 RPMs Fedora 29/28/27 dnf install RPMS/*.rpm CentOS 7.5 and Red Hat (RHEL) 7.5 yum localinstall RPMS/*.rpm 5. Start LibreOffice LibreOffice 6.1.3 Start LibreOffice with Clicking Icons (found normally from menus) or Start LibreOffice with Following Command:
Read more →

Install phpMyAdmin 4.3.10 on Fedora 21/20, CentOS/RHEL 6.6/5.11

This is guide, howto install phpMyAdmin 4.3.10 with Nginx or Apache on Fedora 21/20/19, CentOS 7/6.6/5.11 and Red Hat (RHEL) 7/6.6/5.11 servers. phpMyAdmin needs web server with PHP and MySQL database. This guide uses Apache web server with PHP 5.6 or Nginx web server with PHP 5.6 (PHP-FPM) and MySQL 5.6 database server or MariaDB 10/5.5 database server. You can also use your already installed versions of web server, PHP and MySQL. If you want to install phpMyAdmin with Apache then use a – [Apache] sections and if you want install phpMyAdmin with Nginx then use b – [Nginx] sections.
Read more →

VI and VIM Syntax Highlighting on Fedora / CentOS / Red Hat (RHEL)

This is guide, howto enable Vi and Vim text editor syntax Highlighting on Fedora / CentOS / Red Hat (RHEL). Actually on Fedora, CentOS and Red Hat (RHEL) does only have Vim (Vi IMproved), but if you run vi command it works, because it runs small/minimal version of Vim, which is like original Vi. I have seen too many guides howto enable Vi/Vim syntax highlighting, which says that you can turn syntax highlighting on/off with using :syntax on and :syntax off. It’s almost true, but actually on Fedora, CentOS and RHEL you can’t turn Vi syntax highlighting on with any command, because Vi (Vim minimal) does not have syntax highlighting feature included.
Read more →

PHP: APC Configuration and Usage Tips and Tricks

PHP APC (Alternative PHP Cache / Opcode Cache) is framework that optimizes PHP intermediate code and caches data and compiled code from the PHP bytecode compiler in shared memory. APC Opcode Cache is quickly becoming the de-facto standard PHP caching mechanism. (adsbygoogle = window.adsbygoogle || []).push({});PHP APC installation is very easy, example with Fedora / CentOS / Red Hat (RHEL) you can check following guides to see howto install it: Install Nginx/PHP-FPM on Fedora/CentOS/Red Hat (RHEL) Install Apache/PHP on Fedora/CentOS/Red Hat (RHEL)
Read more →

YUM/DNF Remove Old Kernels on Fedora/CentOS/RHEL

This is quick guide howto delete/remove/clean old kernels on Fedora 28/27/26, CentOS 7.5/6.10, Red Hat (RHEL) 7.5/6.10. I use here two kernel as example, if you want to keep other more or less, then adjust amount of installed kernels as you wish. Normally reason why you maybe want remove kernels is limited disk space, example on VPS servers and laptop. This is very easy task. 1. Check Installed Kernels and All Kernel Packages rpm -qa kernel\* |sort -V kernel-4.18.9-200.fc28.x86_64 kernel-4.18.10-200.fc28.x86_64 kernel-core-4.18.9-200.fc28.x86_64 kernel-core-4.18.10-200.fc28.x86_64 kernel-devel-4.18.9-200.fc28.x86_64 kernel-devel-4.18.10-200.fc28.x86_64 kernel-headers-4.18.10-200.fc28.x86_64 kernel-modules-4.18.9-200.fc28.x86_64 kernel-modules-4.18.10-200.fc28.x86_64 kernel-modules-extra-4.18.9-200.fc28.x86_64 kernel-modules-extra-4.18.10-200.fc28.x86_64 2. Delete / Remove Old Kernels 2.1 Delete / Remove Old Kernels on Fedora ## dnf repoquery set negative --latest-limit ## ## as how many old kernels you want keep ## dnf remove $(dnf repoquery --installonly --latest-limit=-2 -q) 2.2 Delete / Remove Old Kernels on CentOS / Red Hat (RHEL) ## CentOS, Red Hat (RHEL) ## yum install yum-utils ## Package-cleanup set count as how many old kernels you want keep ## package-cleanup --oldkernels --count=2 3. Make Amount of Installed Kernels Permanent on Fedora / CentOS / Red Hat (RHEL) Edit /etc/yum.conf or /etc/dnf/dnf.conf and set installonly_limit:
Read more →

Install Chromium on CentOS/Red Hat (RHEL) 6.7

This is huide howto install Chromium Browser on CentOS 6 / Red Hat (RHEL) 6. Move directly to Chromium install guide. It’s true Google Says Red Hat Enterprise Linux 6 Is Obsolete and after latest update, Google Chrome won’t work anymore on CentOS 6/Red Hat (RHEL) 6. Someone might think that it’s time to change Firefox or Opera, but if you have get used to Google Chrome, then it might be hard. Currently it might be possible to compile newer GCC and get Google Chrome working on Enterprise Linux 6, but more important news is that, the Google says Red Hat Enterprise Linux 6 Is Obsolete and later Google Chrome updates might need something new dependencies what Enterprise Linux 6 doesn’t have.
Read more →

Install MariaDB 10.6/10.5 on Fedora 35/34, CentOS Stream 8/RHEL 8.5/Rocky Linux 8.5

MariaDB is a binary drop in replacement for MySQL database server. This means that for most cases, you can just uninstall MySQL and install MariaDB and you are good to go. Why MariaDB? MariaDB is totally open source version of MySQL It works just like MySQL and is compatible with MySQL setups Fedora and Red Hat/CentOS/Rocky Linux use MariaDB instead of MySQL This is guide, **howto install or upgrade MariaDB 10.7.1 \[RC\], 10.6.3 \[stable\] or 10.5.13 \[stable\] on Fedora 35/34/33, CentOS Stream 8, Red Hat (RHEL) 8.5 and Rocky Linux 8.5**. Installing MariaDB is almost same process than [install MySQL](/2010/install-mysql-on-fedora-centos-red-hat-rhel/ "MySQL Install guide"). Note: If you are moving from MySQL, then make sure that you backup (dump and copy) your database and configs. And if upgrading from earlier versions, then remember run mysql_upgrade command. And if you uninstall MySQL, then remember restore /etc/my.cnf after installation, like:
Read more →

Install Oracle Java 8u191 on Fedora 29/28, CentOS/RHEL 7.5/6.10

This is guide, howto Install Oracle (Sun) Java JDK and JRE 8 update 191 (8u191) on Fedora 29/28/27/26, CentOS 7.5/6.10, Red Hat (RHEL) 7.5/6.10. If you’re looking installation instruction for older Oracle Java versions, then check Install Sun/Oracle Java JDK/JRE 7 on Fedora 24/23/22/21/20/19, CentOS/Red Hat (RHEL) 7.2/6.9/5.11 or Install Sun/Oracle Java JDK/JRE 6 on Fedora 20/19/18, CentOS/Red Hat (RHEL) 6.5/5.10. What’s new in Oracle Java 8 Java Programming Language Lambda Expressions, a new language feature Default methods enable new functionality to be added to the interfaces of libraries and ensure binary compatibility with code written for older versions of those interfaces Improved type inference. Collections Classes in the new java.util.stream package provide a Stream API to support functional-style operations on streams of elements Performance Improvement for HashMaps with Key Collisions Security Client-side TLS 1.2 enabled by default Stronger algorithms for password-based encryption SSL/TLS Server Name Indication (SNI) Extension support in JSSE Server SHA-224 Message Digests Enhanced Support for NSA Suite B Cryptography Tools The jjs command is provided to invoke the Nashorn engine The java command launches JavaFX applications The java man page has been reworked The jdeps command-line tool is provided for analyzing class files Java Management Extensions (JMX) provide remote access to diagnostic commands The jarsigner tool has an option for requesting a signed time stamp from a Time Stamping Authority (TSA) Read full info from here.
Read more →

Red Hat (RHEL) 9 Netinstall Guide / GNOME 40 Tour [Full Install Guide]

This is full guide, howto install RHEL 9 (Red Hat Enterprise Linux 9 Plow) using boot iso image. I use here RHEL 9 Beta iso image, but this will work later pretty much same way, when final Red Hat 9 arrives. I install Red Hat 9 Workstation, but also RHEL 9 Server installation is possible using exactly same method. I also use network installation (netinstall), but you can also download and use full Red Hat 9 DVD iso image.
Read more →

Red Hat 8 Install Guide – RHEL 8 Installation Screenshots

This is Red Hat 8 RHEL (Red Hat Enterprise Linux) installation guide, step-by-step walkthrough with screenshots. Current version of Red Hat 8 is Beta. The Red Hat Enterprise Linux 8 is available for the following architectures Intel/AMD 64-bit IBM Power little endian IBM z Systems ARM 64-bit On this guide I use Anaconda Graphical Installer. 1. Before Red Hat (RHEL) 8 Installation 1.1 Download Red Hat (RHEL) 8 DVD ISO Image Select your architecture and download DVD ISO image:
Read more →

Support inttf:

Buy Me a Coffee:

Support inttf:

Buy me a coffee Buy me a coffee