CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/packages/raspi/export-image/02-set-sources/01-run.sh
Views: 3960
1
#!/bin/bash -e
2
3
rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
4
find "${ROOTFS_DIR}/var/lib/apt/lists/" -type f -delete
5
on_chroot << EOF
6
apt-get update
7
apt-get -y dist-upgrade
8
apt-get clean
9
EOF
10
11