You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are already running T-Pot 22.04.x you simply run the update script ***after you backed up any relevant data***:
557
574
```
558
575
sudo su -
559
576
cd /opt/tpot/
560
577
./update.sh
561
578
```
562
579
580
+
## Known Issues
581
+
The following issues are known, simply follow the described steps to solve them.
582
+
<br><br>
583
+
584
+
### **Grub Fails to Reconfigure**
585
+
In some cases Grub fails to reconfigure, follow these commands to correct that error:
586
+
```
587
+
sudo su -
588
+
DEBIAN_FRONTEND=dialog dpkg --configure grub-pc
589
+
```
590
+
591
+
### **Docker Images Fail to Download**
592
+
Some time ago Docker introduced download [rate limits](https://docs.docker.com/docker-hub/download-rate-limit/#:~:text=Docker%20Hub%20limits%20the%20number,pulls%20per%206%20hour%20period.). If you are frequently downloading Docker images via a single or shared IP, the IP address might have exhausted the Docker download rate limit. Login to your Docker account to extend the rate limit.
593
+
```
594
+
sudo su -
595
+
docker login
596
+
```
597
+
598
+
### **Network Interface Fails**
599
+
After the installation it is possible your network interfaces are using a different naming scheme (`ens` => `eth`). In this case you need to adjust `/etc/network/interfaces` to reflect your NIC.
600
+
601
+
Example:
602
+
```
603
+
# This file describes the network interfaces available on your system
604
+
# and how to activate them. For more information, see interfaces(5).
605
+
606
+
source /etc/network/interfaces.d/*
607
+
608
+
# The loopback network interface
609
+
auto lo
610
+
iface lo inet loopback
611
+
612
+
# The primary network interface
613
+
auto ens33
614
+
iface ens33 inet dhcp
615
+
```
616
+
617
+
`ifconfig` / `ip a` revealed the interface is now named `eth0`, so you need to adjust `interfaces` accordingly:
618
+
```
619
+
# This file describes the network interfaces available on your system
620
+
# and how to activate them. For more information, see interfaces(5).
621
+
622
+
source /etc/network/interfaces.d/*
623
+
624
+
# The loopback network interface
625
+
auto lo
626
+
iface lo inet loopback
627
+
628
+
# The primary network interface
629
+
auto eth0
630
+
iface eth0 inet dhcp
631
+
```
632
+
633
+
563
634
## Start T-Pot
564
635
The T-Pot service automatically starts and stops on each reboot (which occurs once on a daily basis as setup in `/etc/crontab` during installation).
0 commit comments