Posts

Showing posts from February, 2017

Dell web Drac - how to install centos

Dell web Drac - how to install centos wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash yum -y install srvadmin-all edit to adjust settings: mcedit /opt/dell/srvadmin/sbin/srvadmin-services.sh to S TART: /opt/dell/srvadmin/sbin/srvadmin-services.sh start check if console is running on port 1311 netstat -tulpn | grep 1311 access v ia https:// <ip address> :1311/OMSALogin?msgStatus=null to STOP: /opt/dell/srvadmin/sbin/srvadmin-services.sh stop

How to restart network interfaces in Raspberry Pi 'service networking restart'

How to restart network interfaces in Raspberry Pi If you use command service networking restart there will be warn message and sometimes eth0 interface will not come. To fix it please add auto eth0 into /etc/network/interfaces root@pi:~# service networking restart  [warn] Running /etc/init.d/networking restart is deprecated because it may not re-enable some interfaces ... (warning). [ ok ] Reconfiguring network interfaces...done.

How to force time sync on Raspberry Pi

How to force time sync on Raspberry Pi sudo /etc/init.d/ntp stop sudo ntpd -q -g sudo /etc/init.d/ntp start