deb http://deb.debian.org/debian buster-backports main
to your /etc/apt/sources.list
apt-get update
apt-get -t buster-backports install cmake
apt-get update
?apt-get update
pleasedeb http://deb.debian.org/debian buster-backports main
to deb http://deb.debian.org/debian stretch-backports main
apt-get -t stretch-backports install cmake libarchive13
apt-get -t stretch-backports install libarchive13
(edited)deb http://deb.debian.org/debian stretch-backports-sloppy main
to /etc/apt/sources.listapt-get -t stretch-backports-sloppy install libarchive13
apt-get update
apt-get -t stretch-backports install cmake
@justabutterflier-DCLIENT=OFF
CMakeLists
cmake -DCLIENT=OFF ..
instead of whatever you were usinggit submodule update --init --recursive
-DCLIENT=OFF
standard in you CMakeLists.txt -DCLIENT=OFF
standard in you CMakeLists.txt
cmake -DCLIENT=OFF ..
for youcd build && cmake -DCLIENT=OFF ..
cd build && rm -r *
cd build && cmake -DCLIENT=OFF ..
make zcatch_srv
make
should suffice make -j$(nproc)
to get a faster buildapt-get update && apt-get upgrade && apt-get dist-upgrade
stretch
with buster
in /etc/apt/sources.list?stretch
by buster
? and removed the lines with backports
?@justabutterflierbackports
completelyapt-get upgrade
stretch
in thereapt-get update
after you updated the /etc/apt/sources.list?apt-get dist-upgrade
pleaseapt --fix-broken install
I guess? ^^rm /var/cache/apt/archives/libc6_2.28-10_amd64.deb
and try again?uname -r
apt install linux-image
?apt install linux-image-amd64
(edited)wget http://ftp.debian.org/debian/pool/main/l/linux-signed-amd64/linux-image-4.19.0-9-amd64_4.19.118-2_amd64.deb
systemd-detect-virt
systemd-detect-virt
failed?wget https://puu.sh/FKN8T/45f15cfc95.xz
(edited)--
function copy(output, input)
print("copy " .. PathFilename(output))
local copy_command
if family == "windows" then
copy_command = "copy"
input = str_replace(input, "/", "\\")
output = str_replace(output, "/", "\\")
else
copy_command = "cp"
end
os.execute(copy_command .. " " .. input .. " " .. output)
return 0
end