Showing headlines posted by tecmint

« Previous ( 1 2 3 4 5 6 7 8 9 10 11 ... 15 ) Next »

Translate rwx Permissions into Octal Format in Linux

  • Tecmint; By Tecmint (Posted by tecmint on Jul 29, 2021 11:24 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Sometimes you may find it useful to display the access rights of files or directories in octal form instead of rwx or perhaps you want to display both. Instead of using good old ls -l command, in most modern Linux distributions (if not all) you will find stat, an utility that displays file or filesystem status.

How To Import and Export MySQL Databases in Linux

  • LinuxShellTips; By LinuxShellTips (Posted by tecmint on Jul 29, 2021 8:55 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Importing and exporting MySQL or MariaDB databases is a regular task in system administration. You can use data dumps to back up and restore your databases or migrate them to a new server.

How To Set Up SSH Public and Private Key in Linux

  • LinuxShellTips; By LinuxShellTips (Posted by tecmint on Jul 29, 2021 11:10 AM EDT)
  • Story Type: Tutorial; Groups: Linux
SSH or Secure Shell Protocol is a cryptographic network protocol that is used to securely access a remote machine from another computer over an unsecured network via the command line. With SSH, you can execute commands on remote Linux systems and servers, send/transfer files, and normally manage everything you do from one place.

How to Run Multiple Linux Commands in One Single Command

  • LinuxShellTips; By Ravi Saive (Posted by tecmint on Jul 29, 2021 4:59 AM EDT)
  • Story Type: Tutorial; Groups: Linux
If you use Linux daily, you will know that the command line is the most powerful tool when you working with files, installing and configuring system software, and running them. It becomes even more efficient if you run two or more commands at once on the command line and save a good deal of time.

How to Install LAMP Stack on Rocky Linux 8

  • Tecmint; By Tecmint (Posted by tecmint on Jul 28, 2021 9:42 AM EDT)
  • Story Type: Tutorial; Groups: Linux
LAMP is a popular stack used in development circles for hosting both static and dynamic web applications. It’s an acronym for Linux, Apache, MySQL (or MariaDB) & PHP. Notably, it comprises the Apache web server, MySQL or MariaDB database server, and PHP.

5 Best Linux Gaming Distributions That You Should Give a Try

  • Tecmint; By Tecmint (Posted by tecmint on Jul 28, 2021 8:27 AM EDT)
  • Story Type: Tutorial; Groups: Linux
One of the major reasons why Linux usage has lagged behind in comparison to Windows and Mac OS X operating systems has been it’s minimal support for gaming. Before some of the powerful and exciting desktop environments came to existence on Linux,

How to Install NodeJS 14 / 16 & NPM on Rocky Linux 8

  • Tecmint; By James Kiare (Posted by tecmint on Jul 26, 2021 8:40 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Built on Chrome’s V8 engine, Node.JS is open-source, and event-driven Javascript runtime that is designed to build scalable applications and backend APIs. NodeJS is lightweight and efficient, thanks to its non-blocking I/O model and event-driven architecture. This makes it a perfect choice for handling data-intensive real-time applications. It is cross-platform and totally free to download and use.

How to Change and Secure Default PhpMyAdmin Login URL

By default, the login page of phpmyadmin is located at http:// <ip address>/phpmyadmin. The first thing that you will want to do is changing that URL. This will not necessarily stop attackers from targeting your server, but will lower the risks of a successful break-in.

10 Top Open Source Artificial Intelligence Tools for Linux

  • Tecmint; By Tecmint (Posted by tecmint on Jul 21, 2021 6:00 PM EDT)
  • Story Type: Tutorial; Groups: Linux
In this post, we shall cover a few of the top, open-source artificial intelligence (AI) tools for the Linux ecosystem. Currently, AI is one of the ever advancing fields in science and technology, with a major focus geared towards building software and hardware to solve every day life challenges in areas such as health care, education, security, manufacturing, banking and so much more.

How to Find Recent or Today’s Modified Files in Linux

  • Tecmint; By Tecmint (Posted by tecmint on Jul 21, 2021 8:18 AM EDT)
  • Story Type: Tutorial; Groups: Linux
One of the common problems Linux users encounter on the command line is locating files with a particular name, it can be much easier when you actually know the filename.

How to Install Latest PHP 8.0 on Rocky Linux 8

  • Tecmint; By Tecmint (Posted by tecmint on Jul 21, 2021 1:31 AM EDT)
  • Story Type: Tutorial; Groups: Linux
PHP 8.0 was officially released back on November 26, 2020, and is a major update to PHP 7.4. At the time of publishing this guide, the latest stable release is PHP 8.0.8, which was released on July 1, 2021.

How to Install LEMP Stack on Rocky Linux 8

  • Tecmint; By James Kiare (Posted by tecmint on Jul 16, 2021 4:12 PM EDT)
  • Story Type: Tutorial; Groups: Linux
LEMP is a popular stack that comprises open-source software that is collectively used to host and serve web applications, whether in production or any stage along the development cycle.

How to Find Number of Files in a Directory and Subdirectories

  • Tecmint; By Aaron Kili (Posted by tecmint on Jul 16, 2021 12:29 PM EDT)
  • Story Type: Tutorial; Groups: Linux
We will use the find command which is used to search for files in a directory hierarchy together with wc command which prints newline, word, and byte counts for each file, alternatively data read from standard input.

PhotoRec – Recover Deleted or Lost Files in Linux

  • Tecmint; By Aaron Kili (Posted by tecmint on Jul 16, 2021 8:46 AM EDT)
  • Story Type: Tutorial; Groups: Linux
When you delete a file accidentally or intentionally on your system using ‘shift + delete‘ or delete option or empty Trash, the file content is not destroyed from the hard disk (or any storage media).

The Best Microsoft Excel Alternatives for Linux

When it comes to creating and editing spreadsheets, Microsoft Excel is probably the most popular program that can make everything from household budget spreadsheets to management reports for large companies. However, the Microsoft software is not natively available for Linux and its cost might be a formidable obstacle for many users.

Elementary OS – A Linux Distro for Windows and macOS Users

  • Tecmint; By Tecmint (Posted by tecmint on Jul 15, 2021 5:54 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Elementary OS is a Ubuntu-based GNU/Linux distribution, which started as a theme and application set for Ubuntu which later turns out to be an independent Linux distribution. It inherits the legacy of Ubuntu OS and shares Ubuntu’s software Center for package management.

How to Install OwnCloud to Create Own Cloud Storage in Linux

  • Tecmint; By Tecmint (Posted by tecmint on Jul 15, 2021 11:42 AM EDT)
  • Story Type: Tutorial; Groups: Linux
Cloud storage stands for a virtualized pool of network storage most commonly hosted by third parties. Cloud storage is a network-based service that physically does not exist but remains somewhere in the cloud. To be more clear, cloud storage means sharing data over a network, rather than having local servers or personal devices.

How to Find and Kill Running Processes in Linux

  • Tecmint; By Aaron Kili (Posted by tecmint on Jul 14, 2021 2:38 PM EDT)
  • Story Type: Tutorial; Groups: Linux
Process management is one of the important aspects of System Administration in Linux, and it includes killing of processes using the kill command.

How to Install Akaunting Accounting Software on Ubuntu 20.04

  • Tecmint; By James Kiarie (Posted by tecmint on Jul 14, 2021 10:55 AM EDT)
  • Story Type: Tutorial; Groups: Linux
Written in PHP, Akaunting is a feature-rich and open-source online accounting software that allows users to manage finances and keep track of all the invoices, payments, and expenses, to mention just but a few of the financial-related tasks.

How to Install ONLYOFFICE Desktop Editors in Linux

ONLYOFFICE Desktop Editors is an open-source office suite that is available for Linux, Windows, and macOS users. Freely distributed under the terms of AGPLv3, it combines three editors for text documents, spreadsheets, and presentations that are natively compatible with the Microsoft Office formats (DOCX, XLSX, PPTX).

« Previous ( 1 2 3 4 5 6 7 8 9 10 11 ... 15 ) Next »