### Install Example Application Package Source: https://wiki.debian.org/BOINC/ServerGuide/AppDeployment Installs the example application package using the distribution's apt-get tool. This is the first step to obtain the necessary binaries. ```bash $ sudo apt-get install boinc-app-examples ``` -------------------------------- ### Install and Start BOINC Client on Debian Source: https://wiki.debian.org/BOINC?action=diff&rev1=12&rev2=198 Installs the BOINC client, starts the service, and enables it to automatically start on boot. Use this for a standard user setup. ```bash # install BOINC sudo apt install boinc # start the BOINC client sudo systemctl start boinc-client # enable autostart of BOINC client sudo systemctl enable boinc-client ``` -------------------------------- ### Install and Start Network Services Source: https://wiki.debian.org/LXC?action=diff&rev1=211&rev2=212 Install necessary packages and start the default network service for host-shared bridge setup. This ensures the network is active and configured to start on boot. ```bash sudo apt-get install -qy libvirt-clients libvirt-daemon-system iptables ebtables dnsmasq-base sudo virsh net-start default sudo virsh net-autostart default ``` -------------------------------- ### Kernel Installation Process Example Source: https://wiki.debian.org/DebianEdu/Documentation/ITIL/AllInOne?action=diff&rev1=8&rev2=9 This output demonstrates the typical process when updating package lists and installing a new SMP kernel using apt-get. It shows package fetching, dependency resolution, and disk space usage confirmation. ```text tjener:~# apt-get update tjener:~# apt-get install kernel-image-2.6-686-smp Reading Package Lists... Done Building Dependency Tree... Done The following extra packages will be installed: kernel-image-2.6.8-2-686-smp Suggested packages: lilo kernel-doc-2.6.8 kernel-source-2.6.8 Recommended packages: irqbalance The following NEW packages will be installed: kernel-image-2.6-686-smp kernel-image-2.6.8-2-686-smp 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 15.3MB of archives. After unpacking 44.9MB of additional disk space will be used. Do you want to continue? [Y/n] Get:1 http://ftp.debian.org sarge/main kernel-image-2.6.8-2-686-smp 2.6.8-16 [15.3MB] Get:2 http://ftp.debian.org sarge/main kernel-image-2.6-686-smp 101 [2154B] Fetched 15.3MB in 1m13s (208kB/s) Selecting previously deselected package kernel-image-2.6.8-2-686-smp. (Reading database ... 80762 files and directories currently installed.) Unpacking kernel-image-2.6.8-2-686-smp (from .../kernel-image-2.6.8-2-686-smp_2.6.8-16_i386.deb) ... Selecting previously deselected package kernel-image-2.6-686-smp. Unpacking kernel-image-2.6-686-smp (from .../kernel-image-2.6-686-smp_101_i386.deb) ... ``` -------------------------------- ### Example Package Installation Script Source: https://wiki.debian.org/AideDeL%27InstallateurDePaquets This script demonstrates the basic commands for creating a MoinMoin package. It includes commands for replacing underlay pages, adding revisions, and installing plugins. ```text MoinMoinPackage|1 ReplaceUnderlay|mypage.txt|HelpContents AddRevision|mypage2.txt|FrontPage InstallPlugin|myparser.py|global|parser|myparser.py ``` -------------------------------- ### Get Debian Installer AMI Source: https://wiki.debian.org/Cloud/AmazonEC2DebianInstaller?action=diff&rev1=44&rev2=45 Starts a helper instance using a specified Debian Installer AMI. ```bash HELPER_INSTANCE=$(runHelperInstance $INSTALLER_AMI) ``` -------------------------------- ### Install BOINC Package on Debian Source: https://wiki.debian.org/BOINC?action=diff&rev1=1&rev2=141 Installs the BOINC package on Debian. This is the primary method for users to get started with BOINC. ```bash sudo apt-get install boinc-client ``` -------------------------------- ### InstallPlugin Example Source: https://wiki.debian.org/AideDeL%27InstallateurDePaquets Installs a plugin file. Specify the source filename, visibility (local or global), plugin type, and target filename. ```text InstallPlugin|myparser.py|global|parser|myparser.py ``` -------------------------------- ### Install Networking Dependencies and Start Default Bridge Source: https://wiki.debian.org/LXC Installs necessary packages for network bridging and starts the default libvirt network. This setup provides a DHCP and NATed IPv4 network for containers. ```bash $ sudo apt-get install -y libvirt-clients libvirt-daemon-system iptables ebtables dnsmasq-base libxml2-utils iproute2 $ sudo virsh net-start default $ sudo virsh net-autostart default ``` -------------------------------- ### Example sources.list Configuration Source: https://wiki.debian.org/InstallingDebianOn/TUXEDO/NOTEBOOKS/Infinity-Pro-15-v5 A sample configuration for the /etc/apt/sources.list file, including main repositories, security updates, and backports. ```bash # deb cdrom:[Official Debian GNU/Linux Live 10.10.0 xfce 2021-06-19T12:01]/ buster main # deb cdrom:[Official Debian GNU/Linux Live 10.10.0 xfce 2021-06-19T12:01]/ buster main deb http://deb.debian.org/debian/ buster main # deb-src http://deb.debian.org/debian/ buster main deb http://security.debian.org/debian-security buster/updates main # deb-src http://security.debian.org/debian-security buster/updates main # buster-updates, previously known as 'volatile' deb http://deb.debian.org/debian/ buster-updates main # deb-src http://deb.debian.org/debian/ buster-updates main deb http://deb.debian.org/debian buster-backports main ``` -------------------------------- ### Prepare System and Install Dependencies Source: https://wiki.debian.org/MultiarchCrossToolchainBootstrap Initial setup for bootstrapping a multiarch toolchain. This includes creating a chroot environment, updating package lists, and installing necessary build tools for the target architecture. ```bash sudo debootstrap sid sid-chroot sudo pbuilder login --no-targz --buildplace sid-chroot sed -i ’s/^deb http/deb [arch=amd64] http/‘ /etc/apt/sources.list echo “deb-src http://httpredir.debian.org/debian sid main” >> /etc/apt/sources.list dpkg --add-architecture mips64el apt-get update apt-get install binutils-mips64el-linux-gnuabi64 devscripts rdfind symlinks ``` -------------------------------- ### Example Buster Backports Packages Source: https://wiki.debian.org/InstallingDebianOn/Acer/Aspire%205%20A515-56?highlight=%28powered%29 A list of packages that were installed from buster-backports to get GNOME working on a default Buster install. Not all may be necessary. ```text e2fsprogs/buster-backports,now 1.45.5-2~bpo10+1 amd64 [installed] firmware-amd-graphics/buster-backports,now 20200918-1~bpo10+1 all [installed,automatic] firmware-intel-sound/buster-backports,now 20200918-1~bpo10+1 all [installed] firmware-linux-nonfree/buster-backports,now 20200918-1~bpo10+1 all [installed] firmware-linux/buster-backports,now 20200918-1~bpo10+1 all [installed] firmware-misc-nonfree/buster-backports,now 20200918-1~bpo10+1 all [installed] firmware-realtek/buster-backports,now 20200918-1~bpo10+1 all [installed] libcom-err2/buster-backports,now 1.45.5-2~bpo10+1 amd64 [installed] libcryptsetup12/buster-backports,now 2:2.3.4-2~bpo10+2 amd64 [installed] libext2fs2/buster-backports,now 1.45.5-2~bpo10+1 amd64 [installed] libnss-systemd/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] libpam-systemd/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] libpolkit-agent-1-0/stable,now 0.105-25 amd64 [installed,automatic] libpolkit-backend-1-0/stable,now 0.105-25 amd64 [installed,automatic] libpolkit-gobject-1-0/stable,now 0.105-25 amd64 [installed,automatic] libpoppler-glib8/stable,now 0.71.0-5 amd64 [installed,automatic] libpoppler82/stable,now 0.71.0-5 amd64 [installed,automatic] libpopt0/stable,now 1.16-12 amd64 [installed] libpostproc55/stable,stable,now 7:4.1.6-1~deb10u1 amd64 [installed,automatic] libseccomp2/buster-backports,now 2.4.4-1~bpo10+1 amd64 [installed] libss2/buster-backports,now 1.45.5-2~bpo10+1 amd64 [installed] libsystemd0/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] libudev1/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] libzstd1/buster-backports,now 1.4.4+dfsg-3~bpo10+1 amd64 [installed] linux-image-5.9.0-0.bpo.5-amd64/buster-backports,now 5.9.15-1~bpo10+1 amd64 [installed] linux-image-amd64/buster-backports,now 5.9.15-1~bpo10+1 amd64 [installed] logsave/buster-backports,now 1.45.5-2~bpo10+1 amd64 [installed] systemd-sysv/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] systemd-timesyncd/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] systemd/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] udev/buster-backports,now 247.2-4~bpo10+1 amd64 [installed] wireless-regdb/buster-backports,now 2020.04.29-2~bpo10+1 all [installed,automatic] ```