버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
apt -y purge netplan.io
reboot

Config network

https://pnetlab.com/pages/documentation?slug=fix-name-resolution-error

  • /etc/network/interfaces
  • /etc/resolv.conf

...

코드 블럭
linenumberstrue
# cd /opt
# git clone https://github.com/ishare2-org/ishare2-web-gui.git
# cd ishare2-web-gui
# docker images
REPOSITORY          TAG           IMAGE ID       CREATED          SIZE
ishare              latest        b8d5dcdcbe12   10 minutes ago   87.6MB
python              3.11-alpine   a6fe4140edea   10 days ago      52.5MB

Patch

https://pnetlab.com/pages/documentation?slug=fix-bug-file-get-contents

코드 블럭
sed -i '/skip_ssl/d' /etc/mysql/mysql.conf.d/mysqld.cnf
echo "skip_ssl" >> /etc/mysql/mysql.conf.d/mysqld.cnf
sed -i 's/Update-Package-Lists "1"/Update-Package-Lists "0"/g' /etc/apt/apt.conf.d/20auto-upgrades

...