This is an old revision of the document!
A collection of update guides on everything linked from their pages.
brew cask upgrade
System:
DSM
> Control Panel
> Update & Restore
> DSM Update
:Download
Update Now
when the download is finishedPackages:
Package Center
> Installed
> Attention Required
:Update All
or Update
each package individually
Run systemctl enable docker
after updating to re-enable docker starting on boot
tdnf upgrade
tdnf clean all
reboot # If desired/needed
Reconnect and run:
# Update the Portainer image: docker pull portainer/portainer-ce # If it responds with: # Status: Downloaded newer image for portainer/portainer-ce:latest # then run the following to update the container docker stop Portainer docker rm Portainer docker run --name Portainer --restart=always -d -p 8000:8000 -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
Unifi Controller
containerRecreate
Pull latest image
Recreate
apt update && upgrade
runuser -l AMP -c "ampinstmgr upgradeall"
Shift+F5 or Shift+Command+R
to refresh the AMP page with a clear cache after updatingtdnf upgrade
tdnf clean all
reboot # If desired/needed
# Download cd /tmp curl --output terraria-server.zip https://terraria.org/system/dedicated_servers/archives/000/000/036/original/terraria-server-1402.zip?1589675482 unzip terraria-server.zip # Stop the server tmux send-keys -t terraria "exit" Enter # Replace server files FIXME rm -r /terraria/server mv 1402/Linux /terraria/server chmod u+x /terraria/server/TerrariaServer* # Remove temp files rm terraria-server.zip rm -r 1402 # Start the server tmux new -d -s terraria "/terraria/server/TerrariaServer.bin.x86_64 -config /terraria/serverconfig.txt" \; pipe-pane -o -t terraria "cat >>/terraria/server.log" exit