u/hobovirginity

Ryobi 4 cycle s430 string trimmer won't start after replacing primer bulb and fuel lines.

Ryobi 4 cycle s430 string trimmer won't start after replacing primer bulb and fuel lines.

I have this Ryobi s430 4 cycle string trimmer that won't start. It was working fine until Thursday I went to prime it to start and the primer bulb split open. Replaced the primer bulb and also put new fuel lines and fuel filter. It primes great now, but I can't get it to start. I then took apart the carburetor and it looked fine so just put it back together no cleaning. Took out the spark plug and cleaned it up some but it looked good too. For some reason I think its just not getting fuel for some reason.

u/hobovirginity — 4 days ago

I have several aji nortenos but only this one plants is looking sick with yellowing droopy leaves. What could the cause and solution be?

u/hobovirginity — 4 days ago

Why is it our politicians never have spines unless its to torpedo the success of actual progressives within their own parties?

u/hobovirginity — 6 days ago
▲ 8 r/Harley

This is a really nice windshield I had on my 2005 road king from long ride shields that had a chrome colored bracket. Bought a new black bracket to match the black trim of my new 2021 road king special but it also came with chrome colored hardware. Just trying to find black ones so it all matches.

u/hobovirginity — 9 days ago

First off I am new to Linux, writing any sort of code, and new to docker and tailscale. The first few containers I got running fine on my tailscale network were premade tailscale sidecars so I didn't create the compose and env files myself. This is my first attempt at doing a container without premade files, and please just don't just paste the fixed file show me what I did wrong so I can learn.

The docker container I'm trying to run is called Cannery. When I run sudo docker compose up even though I get an error it does show up online in my tailscale machines list as cannery.funny-name.ts.net but of course connecting to it fails.

The error I am getting is:

ERROR! Config provider Config.Reader failed with: app-cannery | ** (RuntimeError) No hostname set! Must be the domain and tld like `cannery.bubbletea.dev`.

Here is my docker yml file if you could read it and show me where I am messing up. Thanks for any help!

configs:
ts-serve:
content: |
{"TCP":{"443":{"HTTPS":true}},
"Web":{"$${TS_CERT_DOMAIN}:443":
{"Handlers":{"/":
{"Proxy":"http://127.0.0.1:4000"}}}},
"AllowFunnel":{"$${TS_CERT_DOMAIN}:443":false}}

services:

# Make sure you have updated/checked the .env file with the correct variables.

# All the ${ xx } need to be defined there.

# Tailscale Sidecar Configuration
tailscale:
image: tailscale/tailscale:latest # Image to be used
container_name: tailscale-${SERVICE} # Name for local container management
hostname: ${SERVICE} # Name used within your Tailscale environment
environment:

- TS_AUTHKEY=hiddenforreddit
- TS_STATE_DIR=/var/lib/tailscale
- TS_SERVE_CONFIG=/config/serve.json # Tailscale Serve configuration to expose the web interface on your local Tailnet - remove this line if not required
- TS_USERSPACE=false
- TS_ENABLE_HEALTH_CHECK=true # Enable healthcheck endpoint: "/healthz"
- TS_LOCAL_ADDR_PORT=127.0.0.1:41234 # The <addr>:<port> for the healthz endpoint
- TS_ACCEPT_DNS=true # Uncomment when using MagicDNS
- TS_AUTH_ONCE=true
configs:
- source: ts-serve
target: /config/serve.json
volumes:
- ./config:/config # Config folder used to store Tailscale files - you may need to change the path
- ./ts/state:/var/lib/tailscale # Tailscale requirement - you may need to change the path
devices:
- /dev/net/tun:/dev/net/tun # Network configuration for Tailscale to work
cap_add:
- net_admin # Tailscale requirement
#ports:
#- 127.0.0.1:4000:4000 # Binding port ${SERVICE}PORT to the local network - may be removed if only exposure to your Tailnet is required
# If any DNS issues arise, use your preferred DNS provider by uncommenting the config below
#dns:
# - ${DNS_SERVER}
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:41234/healthz"\] # Check Tailscale has a Tailnet IP and is operational
interval: 1m # How often to perform the check
timeout: 10s # Time to wait for the check to succeed
retries: 3 # Number of retries before marking as unhealthy
start_period: 10s # Time to wait before starting health checks
restart: always

# ${SERVICE}
application:
image: shibaobun/cannery # Image to be used
network_mode: service:tailscale # Sidecar configuration to route ${SERVICE} through Tailscale
container_name: app-cannery # Name for local container management
env_file:

- .env
#- EXAMPLE_VAR=${EXAMPLE_VAR}
volumes:
- ./cannery-data/app/config:/config
depends_on:
tailscale:
condition: service_healthy
healthcheck:
test: ["CMD", "pgrep", "-f", "cannery"] # Check if ${SERVICE} process is running
interval: 1m # How often to perform the check
timeout: 10s # Time to wait for the check to succeed
retries: 3 # Number of retries before marking as unhealthy
start_period: 30s # Time to wait before starting health checks
restart: always

reddit.com
u/hobovirginity — 15 days ago
▲ 0 r/docker

EDIT: Found the fix! in the folder etc/apt/sources.list.d I just had to edit a line in the file additional-respositories.list and change the name from zena to noble. Then the tailscale install command worked perfectly and I have my linux mint machine connect to my tailnet now!

So I'm running Docker Compose and Karakeep on a new little Linux Mint 22.3 "Zena" machine I got going recently. This is my first time both with Linux and selfhosting. When I try to run the followinng command from Tailscale's download page:

sudo curl -fsSL https://tailscale.com/install.sh | sh

Tailscale won't install due to an error about a release file not found. Here is what the command above displays in my terminal:

Installing Tailscale for ubuntu noble, using method apt

- sudo mkdir -p --mode=0755 /usr/share/keyrings

- + sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg

curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/noble.noarmor.gpg

- sudo chmod 0644 /usr/share/keyrings/tailscale-archive-keyring.gpg

- curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/noble.tailscale-keyring.list

- sudo tee /etc/apt/sources.list.d/tailscale.list

# Tailscale packages for ubuntu noble

deb [signed-by=/usr/share/keyrings/tailscale-archive-keyring.gpg] https://pkgs.tailscale.com/stable/ubuntu noble main

- sudo chmod 0644 /etc/apt/sources.list.d/tailscale.list

- sudo apt-get update

Ign:1 http://packages.linuxmint.com zena InRelease

Hit:2 http://packages.linuxmint.com zena Release

Get:3 https://pkgs.tailscale.com/stable/ubuntu noble InRelease

Hit:4 http://security.ubuntu.com/ubuntu noble-security InRelease

Ign:5 https://download.docker.com/linux/ubuntu zena InRelease

Hit:6 https://download.docker.com/linux/ubuntu noble InRelease

Hit:7 http://archive.ubuntu.com/ubuntu noble InRelease

Err:9 https://download.docker.com/linux/ubuntu zena Release

404 Not Found [IP: 2600:9000:2548:d200:3:db06:4200:93a1 443]

Hit:10 http://archive.ubuntu.com/ubuntu noble-updates InRelease

Hit:11 http://archive.ubuntu.com/ubuntu noble-backports InRelease

Reading package lists... Done

E: The repository 'https://download.docker.com/linux/ubuntu zena Release' does not have a Release file.

N: Updating from such a repository can't be done securely, and is therefore disabled by default.

N: See apt-secure(8) manpage for repository creation and user configuration details.

I posted in the r/Tailscale subreddit and someone told me that this looks to be a docker repository issue and not Tailscale, and that I need to clean up the docker apt source first for Tailscale to install.

So what is my fix here? Any help is greatly appreciated.

reddit.com
u/hobovirginity — 21 days ago