Compare commits
7 Commits
develop
...
60af7d8a0e
| Author | SHA1 | Date | |
|---|---|---|---|
| 60af7d8a0e | |||
| 4522ce9da7 | |||
| cbb3a9721c | |||
| bd1853ff1f | |||
| 612616e4ec | |||
| d60cbe24d2 | |||
| 1196ab20dd |
29
qemuselect.sh
Executable file
29
qemuselect.sh
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ISO_DIR="$HOME/Documents/HogelandLinux/LinuxDistros"
|
||||||
|
ISO_LIST=("$ISO_DIR"/*.iso)
|
||||||
|
|
||||||
|
# Bail out if no ISOs
|
||||||
|
if [ ${#ISO_LIST[@]} -eq 0 ]; then
|
||||||
|
echo "No ISO files found in $ISO_DIR"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
PS3="Select a distro to boot with QEMU (or Ctrl+C to quit): "
|
||||||
|
|
||||||
|
select iso in "${ISO_LIST[@]}"; do
|
||||||
|
if [ -n "$iso" ]; then
|
||||||
|
echo "Launching $iso ..."
|
||||||
|
qemu-system-x86_64 \
|
||||||
|
-m 2048 \
|
||||||
|
-cdrom "$iso" \
|
||||||
|
-boot d \
|
||||||
|
-enable-kvm \
|
||||||
|
-cpu host \
|
||||||
|
-smp 2
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "Invalid choice."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
BIN
static/images/a5-fyer.kra
Normal file
BIN
static/images/a5-fyer.kra
Normal file
Binary file not shown.
BIN
static/images/qr.png
Normal file
BIN
static/images/qr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 384 B |
BIN
static/images/qr.svg
Normal file
BIN
static/images/qr.svg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 384 B |
@ -52,6 +52,74 @@
|
|||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Contactpagina voor Linux-migratieservice in Het Hogeland.",
|
||||||
|
"url": "https://{{.Domain}}/contact",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -38,6 +38,74 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Diensten en tarieven: Linux-installaties, advies, datamigratie en ondersteuning.",
|
||||||
|
"url": "https://{{.Domain}}/diensten",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -60,9 +60,33 @@
|
|||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "LocalBusiness",
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
"name": "{{.CompanyName}}",
|
"name": "{{.CompanyName}}",
|
||||||
"description": "Linux-migratieservice voor Windows 10 end-of-life. Professionele installatie, datamigratie en ondersteuning.",
|
"description": "Linux-migratieservice voor Windows 10 end-of-life. Professionele installatie, datamigratie en ondersteuning.",
|
||||||
"url": "https://{{.Domain}}",
|
"url": "https://{{.Domain}}",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
"telephone": "{{.Phone}}",
|
"telephone": "{{.Phone}}",
|
||||||
"email": "{{.Email}}",
|
"email": "{{.Email}}",
|
||||||
"address": {
|
"address": {
|
||||||
@ -74,18 +98,72 @@
|
|||||||
},
|
},
|
||||||
"geo": {
|
"geo": {
|
||||||
"@type": "GeoCoordinates",
|
"@type": "GeoCoordinates",
|
||||||
"latitude": "53.4107",
|
"latitude": "53.36045",
|
||||||
"longitude": "6.4684"
|
"longitude": "6.46010"
|
||||||
},
|
},
|
||||||
"areaServed": {
|
"areaServed": [
|
||||||
"@type": "Place",
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
"name": "gemeente Het Hogeland"
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" },
|
||||||
},
|
{ "@type": "Place", "name": "Adorp" },
|
||||||
"serviceType": "Linux migratie service",
|
{ "@type": "Place", "name": "Baflo" },
|
||||||
"priceRange": "€€",
|
{ "@type": "Place", "name": "Bedum" },
|
||||||
"image": "https://{{.Domain}}/static/TuxAinrom.webp",
|
{ "@type": "Place", "name": "Den Andel" },
|
||||||
|
{ "@type": "Place", "name": "Doodstil" },
|
||||||
|
{ "@type": "Place", "name": "Eenrum" },
|
||||||
|
{ "@type": "Place", "name": "Eppenhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Kloosterburen" },
|
||||||
|
{ "@type": "Place", "name": "'t Lage van de Weg" },
|
||||||
|
{ "@type": "Place", "name": "Mensingeweer" },
|
||||||
|
{ "@type": "Place", "name": "Hornhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Houwerzijl" },
|
||||||
|
{ "@type": "Place", "name": "Kantens" },
|
||||||
|
{ "@type": "Place", "name": "Lauwersoog" },
|
||||||
|
{ "@type": "Place", "name": "Leens" },
|
||||||
|
{ "@type": "Place", "name": "Niekerk" },
|
||||||
|
{ "@type": "Place", "name": "Noordwolde" },
|
||||||
|
{ "@type": "Place", "name": "Onderdendam" },
|
||||||
|
{ "@type": "Place", "name": "Oosteinde" },
|
||||||
|
{ "@type": "Place", "name": "Oosternieland" },
|
||||||
|
{ "@type": "Place", "name": "Oldenzijl" },
|
||||||
|
{ "@type": "Place", "name": "Pieterburen" },
|
||||||
|
{ "@type": "Place", "name": "Rasquert" },
|
||||||
|
{ "@type": "Place", "name": "Roodeschool" },
|
||||||
|
{ "@type": "Place", "name": "Rottum" },
|
||||||
|
{ "@type": "Place", "name": "Saaxumhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Sauwerd" },
|
||||||
|
{ "@type": "Place", "name": "Schouwerzijl" },
|
||||||
|
{ "@type": "Place", "name": "Stitswerd" },
|
||||||
|
{ "@type": "Place", "name": "Tinallinge" },
|
||||||
|
{ "@type": "Place", "name": "Uithuizen" },
|
||||||
|
{ "@type": "Place", "name": "Uithuizermeeden" },
|
||||||
|
{ "@type": "Place", "name": "Ulrum" },
|
||||||
|
{ "@type": "Place", "name": "Usquert" },
|
||||||
|
{ "@type": "Place", "name": "Vierhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Warffum" },
|
||||||
|
{ "@type": "Place", "name": "Warfhuizen" },
|
||||||
|
{ "@type": "Place", "name": "Wehe-den Hoorn" },
|
||||||
|
{ "@type": "Place", "name": "Westernieland" },
|
||||||
|
{ "@type": "Place", "name": "Wetsinge" },
|
||||||
|
{ "@type": "Place", "name": "Winsum" },
|
||||||
|
{ "@type": "Place", "name": "Zandeweer" },
|
||||||
|
{ "@type": "Place", "name": "Zoutkamp" },
|
||||||
|
{ "@type": "Place", "name": "Zuidwolde" },
|
||||||
|
{ "@type": "Place", "name": "Zuurdijk" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://endof10.org"
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -38,6 +38,74 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Informatie over Linux en distributiekeuze. Professionele hulp bij de overstap.",
|
||||||
|
"url": "https://{{.Domain}}/linux",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
@ -45,6 +45,74 @@
|
|||||||
|
|
||||||
<!-- CSS and Fonts -->
|
<!-- CSS and Fonts -->
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
|
|
||||||
|
<!-- Structured Data for Search Engines -->
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "LocalBusiness",
|
||||||
|
"@id": "https://{{.Domain}}/#local-business",
|
||||||
|
"name": "{{.CompanyName}}",
|
||||||
|
"description": "Over mij: wie ik ben en waarom ik Linux promoot in Het Hogeland.",
|
||||||
|
"url": "https://{{.Domain}}/over-mij",
|
||||||
|
"knowsAbout": [
|
||||||
|
"Linux",
|
||||||
|
"Linux migratie",
|
||||||
|
"Windows 10 end-of-life",
|
||||||
|
"Ubuntu",
|
||||||
|
"Linux Mint",
|
||||||
|
"Fedora",
|
||||||
|
"Pop!_OS",
|
||||||
|
"Elementary OS",
|
||||||
|
"Debian",
|
||||||
|
"Zorin OS",
|
||||||
|
"FreeBSD",
|
||||||
|
"OpenBSD",
|
||||||
|
"Arch Linux",
|
||||||
|
"Drivers",
|
||||||
|
"Office-alternatieven",
|
||||||
|
"Back-ups",
|
||||||
|
"Datamigratie",
|
||||||
|
"Computerhulp",
|
||||||
|
"Printerinstallatie",
|
||||||
|
"Software-installatie"
|
||||||
|
],
|
||||||
|
|
||||||
|
"telephone": "{{.Phone}}",
|
||||||
|
"email": "{{.Email}}",
|
||||||
|
"address": {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
"streetAddress": "{{.Street}}",
|
||||||
|
"postalCode": "{{.PostalCode}}",
|
||||||
|
"addressLocality": "{{.Village}}",
|
||||||
|
"addressCountry": "NL"
|
||||||
|
},
|
||||||
|
"geo": {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
"latitude": "53.36045",
|
||||||
|
"longitude": "6.46010"
|
||||||
|
},
|
||||||
|
"areaServed": [
|
||||||
|
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
|
||||||
|
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
|
||||||
|
],
|
||||||
|
"makesOffer": [
|
||||||
|
{
|
||||||
|
"@type": "Offer",
|
||||||
|
"itemOffered": {
|
||||||
|
"@type": "Service",
|
||||||
|
"name": "Linux migratie en ondersteuning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"priceRange": "€",
|
||||||
|
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
|
||||||
|
"sameAs": [
|
||||||
|
"https://endof10.org",
|
||||||
|
"https://nl.wikipedia.org/wiki/Het_Hogeland"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{template "header" .}}
|
{{template "header" .}}
|
||||||
|
|||||||
Reference in New Issue
Block a user