
Q. Does WebEx works under Linux or UNIX operating system?
{ 0 comments }
Posts tagged as:
by Vivek Gite
by Vivek Gite
I’d like to bash under FreeBSD for bash programming. How do I install bash shell under FreeBSD UNIX operating system?
{ 0 comments }
by Vivek Gite
Q. How do I install and run MySQL version 5 database Server under OpenBSD UNIX operating system?
A. OpenBSD has pkg_add command. It is used to install packages created with the pkg_create command. Selected packages containing pre-compiled applications from the /usr/ports tree can be found on the OpenBSD FTP site or on the official [...]
{ 1 comment }
Q. How do I display information about loaded kernel modules under Sun Solaris UNIX operating system?
A. You need to use modinfo command which is a trivial program to display information about the loaded modules. The format of the information is as follows:
Id Loadaddr Size Info Rev Module Name
where Id is the module ID, [...]
{ 0 comments }
by Vivek Gite
Q. How do I find out subnet mask on UNIX operating system? Can you tell us the name of command and configuration file to store subnetmask under UNIX?
A. A subnetwork/ subnet is a range of logical addresses within the address space that is assigned to an organization. Subnetting is a hierarchical partitioning of the [...]
{ 0 comments }
Q. How do I display the absolute path to the current working directory under Linux or UNIX operating system?
A. The pwd command displays the absolute pathname of the current working directory to the computer screen.
Print name of current/working directory
Type pwd command:
pwd
Output:
/home/vivek
Above command print the full filename of the current working directory i.e /home/vivek.
Display actual directory [...]
{ 0 comments }
Q. How do I view and verify Apache server performance status under Linux / UNIX operating system?
A. The Status module (mod_status) allows a server administrator to find out how well their server is performing. A HTML page is presented that gives the current server statistics in an easily readable form. If required this page can [...]
{ 1 comment }
by Vivek Gite
Q. I made MySQL backup using mysqldump -u user -h localhost -ppassword forumdb | -gzip -9 > forumdb.sql.gz command. How do I restore MySQL database backup using a shell prompt under Linux / UNIX operating system?
{ 1 comment }
Q. How do I list or find all the files owned by a particular system user or group under Linux or UNIX operating system?
A. Only find command (search for files in a directory hierarchy) got options that allow you to search files owned by a specific user or groups.
Find file owned by group
Use following syntax:
find [...]
{ 0 comments }