This is more of a self documentation – the problems I faced and how I solved them.
1) Bluetooth is available but device is not visible. Functions are disabled.
1 2 3 |
su root systemctl enable bluetooth.service service bluetooth start |
Thanks to @roytush for the tweet I was in need so badly đ
2) File permission set to 777 but still php can’t include() the file.
Changed the SELinux Context to: httpd_user_script_exec_t
3) WiFi not working
First I updated the kernel to the latest version:
1 |
yum update kernel |
Then installed required packages:
1 |
yum install kernel-headers kernel-devel make gcc |
I downloaded this file : http://download.wireless-driver.com/driver/Realtek/RTL8191_8192_SE/rtl8192se_linux_2.6.0015.0127.2010.tar.gz
Extracted it and then run:
1 2 3 |
su root make make install |
I restarted my system and My WiFi came up! đ
I shall face more issues as I go. I shall try to update this post with updates. Stay tuned!