How to fix Ubuntu network service discovery disabled. How to enable Ubuntu network service discovery. Sorry about the background noise. I have just enabled noise cancellation on Ubuntu 16.04
How to Enable Linux Ubuntu Noise Cancellation
How to enable noise cancellation on Linux Ubuntu, echo-canceled feature
I’m going to show you how to enable noise cancellation or echo cancelled feature on Ubuntu 16.04 and above this may work on 14.04 and 15.10 too.
Definitely going to work on 17.1 0 and above. this is my 16.04 and I am using a USB webcam it’s Logitech c310 and it was producing a lot of noise so I figured out; basically I had to search a lot and I found this code.
I’m going to show you how it works, once it’s enabled. I’ll show you how to enable it. It’s just one line of code which you have to put somewhere I will show you, once it’s enabled.
Let me go ahead and show you how to enable it; so first of all let’s go ahead and launch the terminal and this is the terminal and let’s go ahead enlarge it and then type sudo I’m going to use sublime you can use any text editor like Nano whatever gedit and then you go to etc’ folder then you go to cows okay and then ability for dot g a press enter and then type in the password and press enter
And this is the basically line you have to go to so it’s it’s on 100 and under this section basically 139 line number the line number may vary on your operating system if you’re not using 16.04 and ok so make sure you are you can put it wherever you want but sounds very much organized so it’s under you can see modules to allow order loading of filters such as echo cancellation.
So you can search for it and then type this line of code just one line of code and let me enlarge it so it slowed – module space module – echo – cancel and once you’ve written it simply save it close.
$ sudo nano /etc/pulse/default.pa
### Enable Echo/Noise-Cancelation
load-module module-echo-cancel aec_method=webrtc aec_args="analog_gain_control=0 digital_gain_control=1" source_name=echoCancel_source sink_name=echoCancel_sink
set-default-source echoCancel_source
set-default-sink echoCancel_sink
To stop and restart the pulse audio
$ pulseaudio -k
$ pulseaudio --start
You have to restart your Ubuntu so make sure you restart your computer and once its up. Simply go to settings and then go to sound and the sound you go to input, then under input you will see one more option with go cancel with built-in audio and log studio so you have to select it. this is the the recently in a predict you cancelled feature.
Once it’s selected, just close it this is going to be available for any other screencast recorder or any webcam like cheese or something similar to that so to enable it on Kasam or Cheese if you are using simply open it go to file and preferences are not about preferences basically go to preferences and then you see under microphone I’ve selected a go cancel one before I was using webcam c310 and it was producing lot of noise.
So once I’ve selected it and restarted my Kazam it’s producing good quality sound now and the noise has gone so this is how you can disable sorry enable the noise on your input microphone or webcam
Progressive Web App – PWA Example
This is a WordPress website converted into a progressive web app (PWA). If you have any question, you can comment your questions about making WordPress a PWA.
WordPress Progressive Web App Service
Soon I’ll start selling this service on this website. If you want to convert your WordPress into a PWA.
- You need to have SSL installed on your domain
- I’ll need a temp wp-admin username, password, and cPanel login info too
- I charge only $100 for WP PWA service
Thanks! You can reach me at [email protected]
How to Install Chrome on Ubuntu 16.04 / 17.04
How to Uninstall Google Chrome from Ubuntu
How to Uninstall or Remove Google Chrome Ubuntu
Remove Chrome Using Ubuntu Terminal:
sudo apt-get purge google-chrome-stable
Remove Google Chrome through Ubuntu Apps
1. Open Ubuntu Software Centre
2. Click on INSTALLED on the top
3. Look up for Google Chrome
4. Click REMOVE
5. Enter Root Password.
You are done. In case, if you do not find chrome under installed section. You can use terminal command to remove Google Chrome
How to Install WordPress on Ubuntu 20.04 and 20.10
This post will help you install latest version of WordPress on Ubuntu desktop and server using terminal.
Here are system requirement for installing WordPress; you need to have PHP, MySQL and web server like apache2 or NGINX. I am going to user apache2 as a web server.
Install MySQL Server on Ubuntu
sudo apt update && sudo apt upgrade
sudo apt install mysql-server -y
sudo mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'XXXXX';
FLUSH PRIVILEGES;
exit
mysql -u root -p
Login with your newly created MySQL password.
Install apache2 and PHP
sudo apt install apache2
sudo apt install php libapache2-php-mod-php php-mcrypt php-mysql
sudo systemctl restart apache2
Check your web server in your preferred web browser by visiting localhost
Test PHP Script
Create a php file under /var/www/html/
touch /var/www/html/info.php
<?php echo "hello from apache";
Visit localhost/info.php in your web browser and it should work.
Download & Install WordPress on Ubuntu
I assume that you have installed wget and unzip on your ubuntu desktop or server.
If you have not yet.
sudo apt install wget && sudo apt install unzip
To download and install WordPress
cd /var/www/html/
wget https://wordpress.org/latest.zip
unzip wordpress.zip && rm -R wordpress.zip
Give Write Permission to WordPress directory
sudo a2enmod rewrite
To give write permission to the folder
sudo chown -R username /var/www/html/
html $ sudo nano wp-config.php
define(‘FS_METHOD’, ‘direct’);
WordPress – file write permission for apache server
sudo chown -R www-data:www-data /var/www/html
Create Database for WordPress
To create database for your WordPress installation, login to your MySQL server and create a new database.
mysql -u root -p
CREATE DATABASE mywp1;
exit
Install WordPress
- Launch your web browser and pull up localhost/wordpress
- Click Let’s Go
- Feed Database credential
- Click Run Installation Script
- Create Admin profile
- Login to your admin area localhost/wordpress/wp-admin