Asparagus0098

joined 5 months ago
[–] [email protected] 3 points 1 week ago

My bash prompt is just me copying the prompt I have set on fish.

# Prompt
green=$'\e[38;5;2m'
bright_red=$'\e[38;5;9m'
bright_green=$'\e[38;5;10m'
reset=$'\e[0m'

prompt_command()
{
    local exit_status=$?

    if [[ $exit_status != 0 ]]; then
        exit_color=$bright_red
        exit_prompt=" [$exit_status]"
    else
        exit_color=$bright_green
        exit_prompt=""
    fi
}

PROMPT_COMMAND=prompt_command
PS1='\[$green\]\w\[$exit_color\]$exit_prompt\n❯ \[$reset\]'

I have a small issue with this prompt though. Sometimes the ❯ ends up turning white for some reason.

[–] [email protected] 1 points 2 weeks ago

I haven't had any issues with the kernel yet. The worst thing that I can remember doing is messing up the systemd boot entry on my Arch Linux install.

[–] [email protected] 2 points 2 weeks ago

Yeah. I just found out about it by accident when I ran it with the --help flag.

[–] [email protected] 5 points 2 weeks ago (2 children)

I'd like to add that you can setup desktop shortcuts pretty easily for Mullvad and TOR browser manual installs. For TOR browser simply run this after opening a terminal in the folder it was extracted to:

./start-tor-browser.desktop --register-app

Same thing should work for mullvad.

[–] [email protected] 1 points 2 weeks ago* (last edited 2 weeks ago)

Containers within a pod can use localhost to access each other. Containers outside of the pod needs to use the pod name to access the containers in the pod.

[–] [email protected] 2 points 3 weeks ago (2 children)

I looked up when pasta became the default networking backend for rootless and it seems to have been with podman 5.0. I do remember using podman 5.x versions, so I was most likely using pasta.

The reason why I seperated each app into their own network was indeed for security. The only container with access to all the networks is the reverse proxy.

[–] [email protected] 3 points 3 weeks ago* (last edited 3 weeks ago) (4 children)

I made a comment on another post a while ago, talking a bit about inter-container/pod networking.

https://sh.itjust.works/comment/17072681

[–] [email protected] 2 points 3 weeks ago

It is the default atime option used when mounting if I'm correct. If it's an ubuntu specific mount option it will be specified in /etc/fstab file.

[–] [email protected] 5 points 3 weeks ago (2 children)

You can run this to check

findmnt --real
[–] [email protected] 1 points 3 weeks ago* (last edited 3 weeks ago) (2 children)

Do you actually need to move the admin ui off of port 80/443 if you are just forwarding ports? I don't think you need to. That said I actually don't know much about port forwarding since I use Tailscale because of CGNAT.

My understanding of port forwarding is that you are forwarding connections to your WAN IP/port to a LAN IP/port. Since the router admin ui is available only on LAN by default, you don't need to change it's port from 80/443.

view more: next ›