mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-27 09:22:18 +00:00
Merge branch 'main' into drafts
This commit is contained in:
commit
fd514117ed
2 changed files with 12 additions and 0 deletions
BIN
content/posts/tailscale-on-vmware-photon/Tailscale-AppIcon.png
Normal file
BIN
content/posts/tailscale-on-vmware-photon/Tailscale-AppIcon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 336 KiB |
|
@ -1,7 +1,11 @@
|
||||||
---
|
---
|
||||||
title: "Tailscale on VMware Photon OS" # Title of the blog post.
|
title: "Tailscale on VMware Photon OS" # Title of the blog post.
|
||||||
date: 2022-12-14T10:21:12-06:00 # Date of post creation.
|
date: 2022-12-14T10:21:12-06:00 # Date of post creation.
|
||||||
|
<<<<<<< HEAD
|
||||||
# lastmod: 2022-12-14T10:21:12-06:00 # Date when last modified
|
# lastmod: 2022-12-14T10:21:12-06:00 # Date when last modified
|
||||||
|
=======
|
||||||
|
lastmod: 2022-12-15T10:21:12-06:00 # Date when last modified
|
||||||
|
>>>>>>> main
|
||||||
description: "How to manually install Tailscale on VMware's Photon OS - or any other systemd-based platform without official Tailscale packages." # Description used for search engine.
|
description: "How to manually install Tailscale on VMware's Photon OS - or any other systemd-based platform without official Tailscale packages." # Description used for search engine.
|
||||||
featured: false # Sets if post is a featured post, making appear on the home page side bar.
|
featured: false # Sets if post is a featured post, making appear on the home page side bar.
|
||||||
draft: false # Sets whether to render this page. Draft of true will not be rendered.
|
draft: false # Sets whether to render this page. Draft of true will not be rendered.
|
||||||
|
@ -11,7 +15,11 @@ usePageBundles: true
|
||||||
# featureImage: "file.png" # Sets featured image on blog post.
|
# featureImage: "file.png" # Sets featured image on blog post.
|
||||||
# featureImageAlt: 'Description of image' # Alternative text for featured image.
|
# featureImageAlt: 'Description of image' # Alternative text for featured image.
|
||||||
# featureImageCap: 'This is the featured image.' # Caption (optional).
|
# featureImageCap: 'This is the featured image.' # Caption (optional).
|
||||||
|
<<<<<<< HEAD
|
||||||
# thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage.
|
# thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage.
|
||||||
|
=======
|
||||||
|
thumbnail: "Tailscale-AppIcon.png" # Sets thumbnail image appearing inside card on homepage.
|
||||||
|
>>>>>>> main
|
||||||
# shareImage: "share.png" # Designate a separate image for social media sharing.
|
# shareImage: "share.png" # Designate a separate image for social media sharing.
|
||||||
codeLineNumbers: false # Override global value for showing of line numbers within code block.
|
codeLineNumbers: false # Override global value for showing of line numbers within code block.
|
||||||
series: Tips # Projects, Scripts, vRA8, K8s on vSphere
|
series: Tips # Projects, Scripts, vRA8, K8s on vSphere
|
||||||
|
@ -39,7 +47,11 @@ cd tailscale_1.34.1_arm64/
|
||||||
```shell
|
```shell
|
||||||
sudo install -m 755 tailscale /usr/bin/
|
sudo install -m 755 tailscale /usr/bin/
|
||||||
sudo install -m 755 tailscaled /usr/sbin/
|
sudo install -m 755 tailscaled /usr/sbin/
|
||||||
|
<<<<<<< HEAD
|
||||||
sudo install -m 644 systemd/tailscaled_defaults /etc/defaults/tailscaled
|
sudo install -m 644 systemd/tailscaled_defaults /etc/defaults/tailscaled
|
||||||
|
=======
|
||||||
|
sudo install -m 644 systemd/tailscaled.defaults /etc/default/tailscaled
|
||||||
|
>>>>>>> main
|
||||||
sudo install -m 644 systemd/tailscaled.service /usr/lib/systemd/system/
|
sudo install -m 644 systemd/tailscaled.service /usr/lib/systemd/system/
|
||||||
```
|
```
|
||||||
4. Start the service:
|
4. Start the service:
|
||||||
|
|
Loading…
Reference in a new issue