Categories
-
Recent Posts
- Configure CentOS Firewall From Command Line
- Add CentOS Package From Command Line
- Consume Web Service With Ruby
- Develop Web Service With Ruby on Rails
- Restore MySQL Database
- Install Ruby 1.8.5, Rails, FastCGI on OpenBSD 4.1
- Install MySQL 5.0 on OpenBSD 4.1
- Install Lighttp 1.4 w/ FastCGI on OpenBSD 4.1
- Quick UNIX Reference
- Backup File Using Amazon S3 And Ruby 1.8.4
- Backup MySQL Database
- Install WordPress on OpenBSD 4.0
- Make An ISO File From a CD in UNIX/Linux
- Install/Configure VMWare Server on CentOS
- Update All CentOS Packages From Command Line
Category Archives: Linux
Add CentOS Package From Command Line
Install Package By Calling YUM With Install
yum install gcc
Also posted in CentOS Comments closed
Quick UNIX Reference
Secure Copy
scp <source file> <remote user>@<remote server>:<target file>
TAR And GZIP a Directory Into Single File
tar -czf /<output file name>.tar.gz /<input directory>
Extract Contents Of a TAR.GZ File
tar -xzf /<input file name>.tar.gz
Check Disk Usage
df
Also posted in Unix Leave a comment
Make An ISO File From a CD in UNIX/Linux
Mount The CD-ROM
mount /dev/cdrom
Issue The Disk Dump Command
dd if=/dev/cdrom of=/software/<filename>.iso
Also posted in Unix Leave a comment
Install/Configure VMWare Server on CentOS
Stop VM Servers
/etc/init.d/vmware stop
Install VMWare Package
rpm -Uhv /tmp/VMware-server-<version>.i386.rpm
Run Installation Script
vmware-config.pl
Also posted in CentOS, VMWare Leave a comment
Update All CentOS Packages From Command Line
Run YUM update, answer yes to all prompts
yum update -y
Also posted in CentOS Leave a comment
Configure CentOS Firewall From Command Line