Posts

Showing posts with the label centOS

Install chrome on CentOS

Image
When installing CentOS7, This might be one of application everybody probably wanna installed. Google Chrome! Just few step, you can install it! 1. Add google repo to your yum. $ vim /etc/yum.repos.d/google.repo or $ nano /etc/yum.repos.d/google.repo Add content:  we are CentOS so...use "rpm" instead. [google64] name=Google - x86_64 baseurl=http://dl.google.com/linux/ rpm /stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub And install! $ sudo yum install google-chrome-stable Now you can have chrome ! THE END                    provide

PXE server (Preboot Execution Environment)

PXE server (Preboot Execution Environment) Combine DHCP service as well as tftp service. Provide ip address through client MAC address, and send boot image for boot up. Condition NIC (Network interface card) have to support PXE function. DHCP and TFTP services are needed. DHCP Ubuntu Install : sudo apt-get install -y isc-dhcp-server Set NIC : vim /etc/default/isc-dhcp-server INTERFACES=<Interface Name> Set Config: sudo vim /etc/dhcp/dhcpd.conf CentOS7 Install : sudo yum install -y dhcp Set NIC : vim /etc/sysconfig/dhcpd DHCPDARGS=<Interface Name> Set Config : vim /etc/dhcp/dhcpd.conf DHCP config (Ubuntu & CentOS) ignore client-updates; default-lease-time 600; max-lease-time 7200; option routers 192.168.1.254; option broadcast-address 192.168.1.255; allow booting; allow bootp; subnet 192.168.1.0 netmask 255.255.255.0 {          ...