usbhid couldn’t find an input interrupt endpoint

21. August 2015 SysAdmin 0
Issue usbhid couldn't find an input interrupt endpoint The server is showing the above error and not booting at all. Some systems will give you a blinking booting window. Resolution * Remove all the USB device like Keybord and Mouse. * Restart your server Effected Systems RHEL 5, RHEL 6, CentOS 5, CentOS6 tag: usbhid ...

usbhid couldn’t find an input interrupt endpoint

21. August 2015 SysAdmin 1
Issue usbhid couldn't find an input interrupt endpoint The server is showing the above error and not booting at all. Some systems will give you a blinking booting window. Resolution Remove all the USB devices like Keyboard and Mouse. Restart your server Affected Systems RHEL 5, RHEL 6, CentOS 5, CentOS6 tag: usbhid couldn’t find ...

How to fix / Patch FREAK vulnerability on my server

06. March 2015 SysAdmin 0
###Issue How can i fix FREAK Vulnerabiltity on my server ### Effected Versions * All RHEL / CentOS Versions including 7 ###Solution * run the below yum update command to update `yum update -y openssl` ####Disable EXPORT ciphers in httpd * Change the below in you `/etc/httpd/conf.d/ssl.conf` file. `SSLCipherSuite HIGH:!aNULL:!MD5:!EXP` Jobin Josephnixhive.com/

Allow a user to run specific sudo command only

06. March 2015 SysAdmin 0
Issue I need to give permission to my develper to specific sudo command only. I need to give permission to restart apache httpd service. Versions Any Linux Flavour. CentOS, RHEL, Ubuntu , SuSE etc Solution run visudo to get the sudo access editor. add the below line to the file and save and exit mydeveloper ...

Gaana Listen to Indian Music in HQ

28. February 2015 SysAdmin 0
There is a new webapp called gaana.com available for all users who is intrested in listening music in HQ. Gaana App is available for iOS and Android. Also you can use the webapp from Any desktop You can also Download the music for Offline usage. To Signup visit [gaana.com](http://refer.gaana.com/A2C5HX) Jobin Josephnixhive.com/

tail: cannot watch `messages’: No space left on device

18. February 2015 SysAdmin 0
**Issue** You are trying to tail -f on a file (/var/log/messages , secure or any text file), the command is throwing the below message and command is also not working tail: cannot watch `messages': No space left on device **Solution** Just edit the sysctl.conf file with vi /etc/sysctl.conf and add/change the below line. fs.inotify.max_user_watches=16384 Then ...

How to replace TAB in file

18. December 2014 SysAdmin 0
If you have a large file and you want to replace TAB with a comma or a new Text. Please use the below command from a Linux Bash Shell sed  's/t/NEWTEXT/g' inputfile.txt > outfile.txt Eg: Replace TAB to Comma sed  's/t/,/g' inputfile.txt > outfile.txt Jobin Josephnixhive.com/

How to replace TAB in file

18. December 2014 SysAdmin 0
If you have a large file and you want to replace TAB with a comma or a new Text. Please use the below command from a Linux Bash Shell sed  's/t/NEWTEXT/g' inputfile.txt > outfile.txt Eg: Replace TAB to Comma sed  's/t/,/g' inputfile.txt > outfile.txt Jobin Josephnixhive.com/