Categories for Computer Science

Find an article
Nov 15

How to fix Ubuntu DNS problems

Published by in · Leave your thoughts
Warning! There was an error loading some of the images for this post.

If you’re experiencing DNS related problems on Ubuntu, follow the below steps to use Google’s public DNS servers: Open network interfaces: sudo vim /etc/network/interfaces Add the following after “# dns-* options are implemented by the resolvconf package, if installed“: dns-nameservers 8.8.8.8 8.8.4.4 Restart the networking service: sudo /etc/init.d/networking restart You should then be able to ping google.com and continue with... Read Arcticle

Jan 23

Understanding SELinux Errors

Published by in · Leave your thoughts
Warning! There was an error loading some of the images for this post.

Recently I’ve been using Centos a lot and SELinux has been somewhat painful to get used to in comparison to other systems, for example Debian. With some determination to not disable SELinux, I eventually found out how to understand why certain functionality was not performing as expected: Error log file: /var/log/audit/audit.log Converting to human readable error messages: yum install setroubleshoot-server... Read Arcticle