Linux
Basic commands for SSH
The simplest ... What is SSH? You will find a very clear explanation and something else by following this link. But in summary, it is a way in which you manage your remote server in a fast and secure way, although… it is not as easy to use as an FTP. The difficulty is that this is a non-visual system, ...
How to install RVSiteBuilder from command line (Linux)
1 ssh to the server as root and run # / Usr / local / cpanel / scripts / makecpphp (Don't fill this if your server doesn't have makecpphp) run 2. download the installer using the following command: #cd / usr / local / cpanel / whostmgr / docroot / cgi / #rm-rf / usr /…
Backup Mysql Databases on Linux
Well, here is a practical example of how to back up all your databases quickly. Explanation of the command «USER» == User registered in mysql can be root or the one who has "PASSWORD" permissions == Password of the user «–all -databases »== We indicate the databases to be backed up (with this it supports ...
How to configure and use Sudo on Linux
Introduction. Sudo is a system tool that allows users to execute commands as superuser or another user according to how it is specified in the / etc / sudoers file, where it is determined who is authorized. The actual and effective user and group identity numbers (UID and GID) are set to equal ...
How to configure a DHCP server on a LAN in Linux
Introduction. DHCP (acronym for Dynamic Host Configuration Protocol which translates to Dynamic Server Configuration Protocol) is a protocol that allows individual devices on a network of IP addresses to obtain their own network configuration information (IP address; subnet mask, gateway, etc.) from a DHCP server. Its main purpose is to do ...
Zip and unzip on Linux .Zip, .Rar, .Gz, .bz2, .Bzip2, .Lha, .Arj, .Zoo
Files .tar tar packs several files into one, but does not compress. Install the tool: # emerge -n tar Pack: # tar cf archive.tar files Unpack: # tar -xvf archive.tar See content: # tar -tf archive.tar Files .gz gzip only compresses file by file, does not pack several files in one nor does it compress directories. Install the tool: # emerge -n gzip Compress: # gzip…