Note- This is a continuous updated article till the Linux Mint 19 final release available. Visit this article regularly to get latest updates. Summary The Linux Mint Team has announced the codename “Tara” for upcoming release Linux Mint 19. The new version will be based on Ubuntu 18.04 LTS release. The Linux Mint development team has started working on new release and will available after the release of Ubuntu 18.04 LTS. A comment by Linux Mint team – Mint 18.3 was full of new features. Don’t expect as many in Mint 19. We’ll focus mostly on the base, GTK, possibly…
Author: Rahul
This how-to tutorial will help you to install and configure Eclipse IDE for Java Enterprise developers on your Ubuntu and Linuxmint systems. Eclipse provides IDE for various programming languages, testing etc. In this how-to guide, we used Eclipse for Java EE developers. You can download Eclipse version required for your and the remaining steps are similar for all. Let’s follow the tutorial to install Eclipse Oxygen 4.8 Photon R for Java EE developers. Step 1 – Prerequisites Eclipse required Java to be installed on your system. Make sure you have proper Java installed. If you don’t have Java installed, Use…
While working with the archive files, sometimes you are required to list archive file contents instead of extract an archive file. Using this you can see the files available in an archive file. Read another tutorial with 18 Linux tar command examples List Archive File Contents (Quick Commands) The -t switch is used for list content of a tarball file without extract. Below is the quick commands used to list .tar, .tar.gz, .tar.bz2 and .tar.xz file contents. tar -tvf archive.tar tar -ztvf archive.tar.gz tar -jtvf archive.tar.bz2 tar -Jtvf archive.tar.xz List .tar File Content Use -t switch with tar command to…
Question – How to Get Current Date Time with PHP? How do I get current date and time in PHP script? PHP Script to get current date and time in Y-m-d H:i:s format? You can use date() function to get current Date and Time in any PHP version. A DateTime PHP class is also available in PHP > 5.2 to get Date and Time. Also find the example to get date and time in JavaScript PHP Date and Time Print the current date and time using date() function. It will use the default timezone configured in php.ini.
1 2 3 | <?php echo date('Y-m-d H:i:s'); ?> |
Print the…
The Python subprocess module allows to spawn of new processes, and execute external commands or scripts from the Python scripts. You can install the latest version of Python using these tutorials. Also, there is a number of IDE available for Python. Like Install PyCharm Python IDE on Ubuntu systems. Python Scrpt to Call System Command Let’s create your first program to list all files available in the current directory. You can add any number of command-line parameters with the comm (,) separated.
1 2 3 4 | #!/usr/bin/python3 import subprocess subprocess.call(["ls", "-l"]) |
Where- import statement is used to load the subprocess module form the Python standard library call is…
Nagios is the most popular monitoring server for infrastructure monitoring. In the series of Nagios monitoring tutorials, this tutorial will help you to monitor Memory, CPU, and Disk on a remote Linux system using Nagios and NRPE. I assume you have a running Nagios server on your network. Prerequisites You have installed the NRPE client on your Linux system. Use the following commands to install NRPE on your system or visit our tutorials for the NRPE installation on Debian based systems and Redhat based systems. Ubuntu and Debian based systems: sudo apt install nagios-nrpe-server Redhat, CentOS systems: sudo dnf install…
VPN or Virtual Private Network is a group of computers connected to the private network over the public network (Internet). These days security is the primary concern for everyone and it’s more required while working over the public network. Like you have a group of computers in a remote location. Now you need to access those computers as a LAN network in your system. Also, you need all data should be encrypted during transfer between computers. The solution is a VPN. You can use a VPN network to connect two remote location systems with each other as they are on…
Sphinx is a simple, relevance and open source full-text search server. It is written in C++ programming language and works with Linux and other popular operating systems. This tutorial will help you to install and configure Sphinx full-text search server on Ubuntu 16.04, 14.04 LTS operating systems. Prerequisites Before you begin this guide, you must have the followings. Ubuntu server with sudo access Pre installed MySQL server Step 1 — Install Sphinx Installing Sphinx on Ubuntu is easy because it’s in the native package repository. Install it using the apt-get package manager on your Ubuntu system. sudo add-apt-repository ppa:builds/sphinxsearch-rel22 sudo…
Swift is a safe, fast, expressive general-purpose programming language build for the software design patterns. It is best for the systems programming, to mobile and desktop applications. Swift provides a large number of features that make programming easier while giving the developer the control needed in a true systems programming language. This tutorial will help you to install swift programming language on your Ubuntu and Debian system. Step 1 – Prerequisites Login to your Ubuntu system using SSH (Shell) access. Now install the required dependencies for swift installation on your system. sudo apt-get install clang libicu-dev On a fresh Ubuntu…
Question – How to reset Joomla admin password via SQL query? How to reset Joomla admin password using phpMyAdmin? How to Reset Joomla forgotten password with SQL query? How to find Joomla default admin password? If you have forgotten your Joomla admin password or due to any reason, you are not able to login to Joomla with admin user. You can simply check the active admin user using SQL query and reset the password with simple SQL query. After updating password with any of below method your Joomla administrator user password will be secret. Reset Joomla Admin Password via SQL…