Skip to main content

Centos 5 Live CD, Rescue CD or Workstation

Have you ever try CENTos 5 Live CD? I had tried it. This Centos 5 Live Cd can be use as rescue cd and workstation cause it based on CentOS 5.0 i386 distribution.
The following software that include with it :
  • OpenOffice.org 2.0.4
  • Firefox 1.5.0.10
  • Thunderbird 1.5.0.10
  • Gaim-2.0.0
  • Scribus-1.3.3
  • xchat-2.6.6
  • k3b-0.12.17
  • Gimp-2.2.13

And for rescue, there is another software or tool :
  • Full set of LVM and RAID command line tools
  • QTParted
  • Nmap and NMapFE
  • Graphical Traceroute
  • samba-3.0.23c with cifs kernel support to connect to Windows file shares
  • System Log Viewer
  • GUI Hardware Device Manager

Unfortunately, in first release, this Centos Live CD doesn't hvae installer like Fedora Live CD.  And i have a problem when using it as workstation, i can connected to network just for a while. But, when i restart network service it worked but for a while and then it was drop. You have a same problem or solution ? Please tell me.  I will be appreciated it.

Last, if you want to use root account, use this password : 12qwaszx.

Please, try it.

source: centos.org and milist

Another article about CentOS and Linux

Centos 5 Live CD Password For root
Build Ubuntu Repository (feisty) from file .iso using CentOS
debmirror on centOS
/bin/rm: Argument list too long
Ubuntu “GNOME Settings Daemon”

Comments

Popular posts from this blog

Google Search Result Can Be Changed by User

Do you know? Now you can change the Google Search Result. Google invite users to change the Google search results as you wish. Want to raise the ranking of search results or remove it. How it works? It can be done through a feature called SearchWiki. Features change the results of this search can be accessed by users who have an account at Google. However, not all users can enjoy the services that are gradually spread. Through Google Read More

Website Using HTTPS Protocol

Last week, I changed protocol of my website from http to https. There were steps that i had to do. First, I installed openssl package and mod_ssl # yum install mod_ssl openssl Then, I configured the openssl  and created certificate # cd /etc/pki/tls/certs # make server.key # openssl rsa -in server.key -out server.key # make server.csr # openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 3650 # chmod 400 server.* After that, I changed configuration of httpd/apache #nano /etc/httpd/conf.d/ssl.conf DocumentRoot "/var/www/html" ServerName www.server.world:443 SSLCertificateFile /etc/pki/tls/certs/server.crt SSLCertificateKeyFile /etc/pki/tls/certs/server.key Last, I restarted the webserver #service httpd restart That's all what i did last week to change my website protocol from http to https.