Install neofetch on Debian 9
sudo apt-get update sudo apt-get install neofetch
Install screenfetch on Debian 9
sudo apt-get update sudo apt-get install screenfetch
sudo apt-get update sudo apt-get install neofetch
sudo apt-get update sudo apt-get install screenfetch
Watch this video on YouTube to see how easy it is to install WebStorm JavaScript IDE 2017 on Ubuntu 16.04 LTS
Go to Jetbrains Official Website to learn more.
This tutorial should work with any GTK based Desktop Environment such as GNOME 3, Mate, Cinnamon etc.
$ sudo update-mime-database $HOME/.local/share/mime $ sudo update-desktop-database $HOME/.local/share/applications
If you don't have Cisco Packet Tracer installed already, install it right now. It's easy and simple. Just click on the following link and follow the instructions.
You can install Cisco Packet Tracer 7.0 on Ubuntu very easily. Just follow this video tutorial on YouTube.
sudo tasksel
These are the available groups that you can install with 'tasksel' at this moment.
Tested on: Ubuntu 16.04 LTS Server
To fix this issue, simple follow the steps below.
Run the following command to open the vmware preference file.
$ gedit $HOME/.vmware/preferencesNow in the end of this file, add the following line.
mks.gl.allowBlacklistedDrivers = "TRUE"Save the file. Now close the VMware program and re-open it. It shouldn't complain "No 3D support is available from the host" anymore.
Tested on: Ubuntu 16.04 LTS
Software Package: VMware Workstation Pro 12.5.2 build-4638234
You can block a host with a specific IPv4 address with firewalld firewall program. The firewalld program can be managed by the firewall-cmd command. By default the firewall-cmd command don't have any specific options to block an IP address. But we can use firewalld rich rules. Let's see how it's done.
Suppose you want to block a host with the IPv4 address 192.168.17.112, so it can't connect to your computer. You can do that with the following command.
shovon@ubntu-lab$ sudo firewall-cmd --add-rich-rule='rule family=ipv4 source address=192.168.17.112 reject' --permanent successThe rich rule has been added permanently. Now we have to reload the firewalld program configuration for the changes to take effect. To do that, run the following command.
shovon@ubntu-lab$ sudo firewall-cmd --reload successNow you can verify that the rule has been added and it's active with the following command.
shovon@ubntu-lab$ sudo firewall-cmd --list-allpublic (default, active) interfaces: eno16777760 sources: services: dhcpv6-client ftp nfs ssh ports: masquerade: no forward-ports: icmp-blocks: rich rules: rule family="ipv4" source address="192.168.17.112" reject
Now you can try to ping from the host with the IPv4 address 192.168.17.112, and the request now should be denied by the server.
You can also unblock the blocked IPv4 address with the firewall-cmd command with the following command.
shovon@ubntu-lab$ sudo firewall-cmd --remove-rich-rule='rule family=ipv4 source address=192.168.17.112 reject' --permanent successNow reload the firewalld program with the following command.
shovon@ubntu-lab$ sudo firewall-cmd --reload successNow you should be able to ping from the host with the IPv4 address 192.168.17.112.
Yes.
You can get a list of active rich rules with firewall-cmd --list-all command. Just copy and paste the rich rule as shown in the list.
Tested on: CentOS 7