#rm /var/lib/dpkg/info/$nomdupaquet* -f
Command Credit: stackoverflow
No where is a great place to be, but being with you is great pleasure I ever wish!
I tried to access from home WiFi to a workplace L2TP/IPSec Pre-Shared Key VPN gateway, but the Windows 10 built-in VPN kept connecting. I had asked my ISP customer service team, and they told me that their technical support team would contact me to sort out this problem. I had a doubt that there would be something to be configured or enabled in my Internet WiFi router. I accessed to the route, and enable ALG switch as the below snapshot, and then I tested it again; the VPN gets connected; booom, it works!
Firmware Version: LEDE Reboot 17.01.5 r3919-38e704be71 / LuCI lede-17.01 branch (git-18.180.55366-b78664c)
DHCP Server Configuration:
uci set dhcp.lan.interface="lan"
uci set dhcp.lan.ra="server"
uci set dhcp.lan.dhcpv4="server"
uci set dhcp.lan.start="1"
uci set dhcp.lan.limit="250"
uci set dhcp.lan.leasetime="120"
uci add_list dhcp.lan.dhcp_option="3,192.168.1.1"
uci add_list dhcp.lan.dhcp_option="6,8.8.8.8"
uci add_list dhcp.lan.dhcp_option="6,8.8.4.4"
uci add_list dhcp.lan.dhcp_option="42,192.168.1.100"
uci show dhcp.lan.interface
uci show dhcp.lan.ra
uci show dhcp.lan.dhcpv4
uci show dhcp.lan.start
uci show dhcp.lan.limit
uci show dhcp.lan.leasetime
uci show dhcp.lan.dhcp_option
DHCP Client Address Reservation:
uci add dhcp host
uci set dhcp.@host[-1].name="EndianEFW"
uci set dhcp.@host[-1].dns="1"
uci set dhcp.@host[-1].mac="08:00:27:F3:9C:74"
uci set dhcp.@host[-1].ip="192.168.1.29"
Save DHCP Configuration:
uci commit dhcp
After upgrading Spyder to version 4.2.1 on Ubuntu 18.04, it complaints, for dependencies, about
jedi = 0.17.2 : None (NOK)
parso = 0.7.0 : 0.8.1 (NOK)
I tried to install jedi, and parso using pip3 as below:
pip3 install jedi parso
But it does not fix the error.
It seems the problem is fixed when I install "Anaconda3-2020.11-Linux-x86_64.sh"
cd ~ballah/Downloads
chmod +x Anaconda3-2020.11-Linux-x86_64.sh
sudo ./Anaconda3-2020.11-Linux-x86_64.sh
You can check the dependencies from Help menu whether all they are resolved.
This error is due to the permission, and it is fixed with command chown as below snapshots:
Error in /var/log/httpd/ssl_errror_log:
PHP Fatal error: Uncaught --> Smarty: unable to create directory /var/www/html/var/templates_c
#cd /var/www/html
#chown -R asterisk:asterisk var
#systemctl restart httpd
File System
|
File System Type
|
Size
|
/
|
ext4
|
28 GiB
|
/boot
|
ext4
|
512 MiB
|
/home
|
ext4
|
512 MiB
|
swap
|
swap
|
2 GiB
|
/var
|
ext4
|
6 GiB
|
/tmp
|
ext4
|
2 GiB
|
An example of disk usage after the OS installation |