Download Parallels Pro Control Panel 10.3.4 for Linux

Parallels Pro Control Panel for Linux (formerly known as Ensim Pro Linux) is a single-server hosting automation and control panel solution for hosted websites, email, and online applications. It includes comprehensive tools that enable hosting providers to create, control, and deliver a variety of professional-quality hosting plans in minutes.

Reference:

Installation

http://download.pro.parallels.com/10.3.4/docs/linux/Guides/ppcpl-10.3.4-installation-guide.pdf

Upgrade Process:

http://download.pro.parallels.com/10.3.4/docs/linux/Guides/ppcpl-10.3.4-upgrade-guide.pdf

minimum requirements for installing Parallels Pro Control Panel

Operating system: Any of the following operating systems: FC 6 (Fedora™ Core 6), FC 4, CentOS 4.x (Community Enterprise Operating System 4.x), CentOS 5.x, RHEL 5 (Red Hat® Enterprise Linux ES Release 5), RHEL 4 ES, RHEL 4 AS.

Note: FC 4 operating system is supported only with 32-bit architecture, and all other operating systems are supported with both 32-bit and 64-bit architecture.

The system files /etc/hosts, /etc/resolv.conf, /etc/sysconfig/network, and /etc/sysconfig/network-scripts/ifcfg-eth0 on the target server must include the entries as specified below. If the entries are not present, use an editor to modify the files.

/etc/hosts file.

—/etc/hosts begin file–
127.0.0.1 localhost.localdomain localhost
1.2.3.4 myhost.mydomain.com myhost
—/etc/hosts end file–

tar - tape archiver

tar (tape archiver)

Type tar then -option(s)

Options list:

-c — create.
-v — verbose, give more output, show what files are being worked with (extracted or added).
-f — file (create or extract from file) - should always be the last option otherwise the command will not work.
-z — put the file though gzip or use gunzip on the file first.
-x — extract the files from the tarball.
-p — preserves dates, permissions of the original files.
-j — send archive through bzip2.
–exclude=pattern — this will stop certain files from being archived (using a standard wild-card pattern) or a single file name.

tar examples

tar -cvpf name_of_file.tar files_to_be_backed_up

This would create a tape archive (no compressing).

tar -zxvpf my_tar_file.tar.gz

This would extract files (verbosely) from a gzipped tape archive.

restricted deletion flag or sticky bit is a single bit

The restricted deletion flag or sticky bit is a single bit, whose interpretation depends on the file type. For directories, it prevents unprivileged users from removing or renaming a file in the directory unless they own the file or the directory; this is called the restricted deletion flag for the directory, and is commonly found on world-writable directories like /tmp.

For regular files on some older systems, the bit saves the program’s text image on the swap device so it will load more quickly when run; this is called the sticky bit.

The letters rwxXst select file mode bits for the affected users: read (r), write (w), execute (or search for directories) (x), execute/search only if the file is a directory or already has execute permission for some user (X), set user or group ID on execution (s), restricted deletion flag or sticky bit (t). Instead of one or more of these let-ters, you can specify exactly one of the letters ugo: the permissions granted to the user who owns the file (u), the permissions granted to other users who are members of the file’s group (g), and the permissions granted to users that are in neither of the two preceding categories (o).

A numeric mode is from one to four octal digits (0-7), derived by adding up the bits with values 4, 2, and 1. Omitted digits are assumed to be leading zeros. The first digit selects the set user ID (4) and set group ID (2) and restricted deletion or sticky (1) attributes. The second digit selects permissions for the user who owns the file: read (4), write (2), and execute (1); the third selects permissions for other users in the file’s group, with the same values; and the fourth for other users not in the file’s group, with the same values.

Only the person who created the file within a directory may delete it, even if other people have write permission. You can turn it on by typing:

chmod 1700 somedirectory (where 1 = sticky bit)

Query/enable (E)IDE 32-bit I/O support using hdparm

Check your current disk status.

hdparm -tT /dev/hda

-c Query/enable (E)IDE 32-bit I/O support. A numeric parameter can be used to enable/disable 32-bit I/O support: Currently sup-ported values include 0 to disable 32-bit I/O support, 1 to enable 32-bit data transfers, and 3 to enable 32-bit data trans-fers with a special sync sequence required by many chipsets.

The value 3 works with nearly all 32-bit IDE chipsets, but incurs slightly more overhead. Note that “32-bit” refers to data transfers across a PCI or VLB bus to

« Prev - Next »