cf: https://askubuntu.com/questions/422026/mathematica-installation-problem
Don't use directory/folder name with space
cf: https://askubuntu.com/questions/422026/mathematica-installation-problem
Don't use directory/folder name with space
Edit /etc/rsyslog.conf and comment the following lines.
#
# Set the default permissions for all log files.
#
#$FileOwner syslog
#$FileGroup adm
#$FileCreateMode 0640
#$DirCreateMode 0755
#$Umask 0022
#$PrivDropToUser syslog
#$PrivDropToGroup syslog
Restart rsyslog
cf: https://forums.raspberrypi.com/viewtopic.php?t=278033
First run the command:
route -n
It will show the metrics of the interface.
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.2.1 0.0.0.0 UG 202 0 0 eth1
0.0.0.0 192.168.1.12 0.0.0.0 UG 303 0 0 wlan0
The lower the route priority first. So eth0 is higher than wlan0.
interface wlan0
metric 100
And run route -n, it will then show:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.12 0.0.0.0 UG 100 0 0 wlan0
0.0.0.0 192.168.2.1 0.0.0.0 UG 204 0 0 eth1
Thus, wlan0 will is higher than eth1.
Becuase wlan0 is the external interface, while eth1 is for internal interface, the wlan0 priority
need to be higher than eth1. Otherwise, the outside internet can not be reached.
For windows:
The following image shows the NIC is set to metric 5.