Category: centos

Setup new CentOS 7 dev machine 1

Setup new CentOS 7 dev machine

hostnamectl set-hostname your-new-hostname Install Remote Desktop (RDP) rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum -y install xrdp systemctl start xrdp systemctl enable xrdp firewall-cmd --permanent --add-port=3389/tcp firewall-cmd --reload chcon --type=bin_t /usr/sbin/xrdp chcon --type=bin_t /usr/sbin/xrdp-sesman Troubleshooting netstat -antup...

Install OpenVPN on CentOS 6.8 0

Install OpenVPN on CentOS 6.8

1. Install EPEL Repo http://tech.yipp.ca/linux/adding-epel-repo-centos-6-8/ 2. Install openvpn $> sudo yum install openvpn 3. Find the proper configuration, run VPN client using this command $> sudo openvpn --config myconfig.conf  

Install Node.js on CentOS 6 or 7 0

Install Node.js on CentOS 6 or 7

Following https://nodejs.org/en/download/package-manager/ curl --silent --location https://rpm.nodesource.com/setup | sudo bash - ## Run `yum install -y nodejs` (as root) to install Node.js v0.10 and npm. You may also need development tools to build native addons:...

error: drm/drm.h: No such file or directory 0

error: drm/drm.h: No such file or directory

include/drm/drmP.h:70:21: error: drm/drm.h: No such file or directory Solution #!/bin/bash KERNEL_RELEASE=`dir -1rt /usr/src/kernels/ | tail -1` echo Patching $KERNEL_RELEASE cd /usr/src/kernels/$KERNEL_RELEASE/include/drm ln -s /usr/include/drm/drm.h drm.h ln -s /usr/include/drm/drm_sarea.h drm_sarea.h ln -s /usr/include/drm/drm_mode.h drm_mode.h ln...

Improve fonts on CentOS 7 0

Improve fonts on CentOS 7

  1. Install the nux repo Instructions to install the nux repo in CentOS 7 is here 2. Install the necessary packages $> yum --enablerepo=nux-dextop install fontconfig-infinality

Install NTFS on CentOS 7 10

Install NTFS on CentOS 7

How to install ntfs-3g on CentOS 7 $> su - $> cd $> wget https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm $> rpm -ivUh epel-release-7-5.noarch.rpm $> yum install ntfs-3g  

undefined reference to `udev_enumerate_new' 1

undefined reference to `udev_enumerate_new'

libudev-devel.i686 is not available for CentOS 7 undefined reference to `udev_enumerate_scan_devices' undefined reference to `udev_new' undefined reference to `udev_list_entry_get_name' undefined reference to `udev_enumerate_get_list_entry' undefined reference to `udev_list_entry_get_next' undefined reference to `udev_device_new_from_syspath' undefined reference to...

0

"Starting file manager" always opening in CentOS

Problem: Every now and then one or multiple items appear in the taskbar with label "Starting file manager". Solution : Type in console : $> gconftool-2 --type bool --set /apps/nautilus/preferences/show_desktop false This will resolve...