Search found 50 matches

by wroomwroom
Wed Aug 26, 2026 7:04 pm
Forum: Hosting An Evernode
Topic: safekeep last slot for rep contract
Replies: 0
Views: 48

safekeep last slot for rep contract

https://evernode.forum/viewtopic.php?p=2103
by wroomwroom
Wed Aug 26, 2026 6:32 pm
Forum: EverPanel
Topic: block deployment with 1 instance left when rep contract aint running
Replies: 0
Views: 68

block deployment with 1 instance left when rep contract aint running

In /bin/sashimono/user-install.sh

After...
max_instance_count=$(jq -r ".system.max_instance_count | select( . != null )" "$SA_CONFIG")
if [ -n "$max_instance_count" ] && [ "$max_instance_count" -gt 0 ]; then
nofile_soft_limit=$((nofile_soft_limit / ( max_instance_count + 1 )))
echo "setting ...
by wroomwroom
Wed Aug 19, 2026 2:32 am
Forum: Evernode Python Smart Contracts
Topic: Evernode Kivy GUI
Replies: 1
Views: 117

Re: Evernode Kivy GUI

I really love your approach and mindset, it is an outstanding use of the network... I know that myself because I have for the last 20 hours been renting multiple instances on multiple operation systems for the purpose of compiling scripts into bins. It's sometimes very tricky to find the right tools ...
by wroomwroom
Wed Aug 19, 2026 12:49 am
Forum: Sashimono Development
Topic: monitor sagent
Replies: 0
Views: 65

monitor sagent

journalctl -fu sashimono-agent
by wroomwroom
Tue Aug 18, 2026 9:51 pm
Forum: Sashimono Development
Topic: acquire logic change experiment to increase max characters
Replies: 1
Views: 99

Re: acquire logic change experiment to increase max characters

My compilation:
87B011E2F2B49C251BBD99CA49975F38255ED07E27671A433147236DBE03272C sha256

Steps:
1. Acquire everbackup/markz:latest--gptcp1 , connect to it with VNCViewer password default, open up firefox and enter this website to copy/paste stuff.

2. First run ubuntu20 dependency script to grab ...
by wroomwroom
Tue Aug 18, 2026 6:20 pm
Forum: Sashimono Development
Topic: dependency script for compilations
Replies: 2
Views: 196

Re: dependency script for compilations

Remember permissions after switch
sudo chown root:root /usr/bin/sashimono/sagent
sudo chmod 755 /usr/bin/sashimono/sagent
by wroomwroom
Tue Aug 18, 2026 5:49 pm
Forum: EverPanel
Topic: user-install additions for saagent split docker image
Replies: 0
Views: 57

user-install additions for saagent split docker image

Replace
cpu=$1
memory=$2
swapmem=$3
disk=$4
contract_dir=$5
contract_uid=$6
contract_gid=$7
peer_port=$8
user_port=$9
gp_tcp_port_start=${10}
gp_udp_port_start=${11}
docker_image=${12}
docker_registry=${13}
outbound_ipv6=${14}
outbound_net_interface=${15}

with

cpu=$1
memory=$2
swapmem=$3
disk ...
by wroomwroom
Tue Aug 18, 2026 4:51 pm
Forum: Sashimono Development
Topic: acquire logic change experiment to increase max characters
Replies: 1
Views: 99

acquire logic change experiment to increase max characters

hp_manager.cpp


std::string image_name = image;

change to


std::string docker_request = image;
std::string image_name = image;

auto image_settings_pos = image_name.find("--");
if (image_settings_pos != std::string::npos)
{
image_name = image_name.substr(0, image_settings_pos);
}



int ...
by wroomwroom
Tue Aug 18, 2026 4:09 pm
Forum: Sashimono Development
Topic: dependency script for compilations
Replies: 2
Views: 196

Re: dependency script for compilations

UBUNTU 24 Build scripts (seem to fail compiling)

This fetches sashimono 1.0.0 and builds it for the first time.

#!/usr/bin/env bash
set -Eeuo pipefail

# ============================================================
# Sashimono Ubuntu-24 / sagent v1.0.0
# INITIAL BUILD SCRIPT
#
# Run the ...
by wroomwroom
Tue Aug 18, 2026 4:02 pm
Forum: Sashimono Development
Topic: dependency script for compilations
Replies: 2
Views: 196

dependency script for compilations

UBUNTU 24 Compiler Dependencies (doesn't seem to succeed with compiling)
I like to work in evergui/evergui24:latest (everpanel deployable, ubuntu24, shows up on your browser with https and gptcp1 port. Password is default)

Of course, this is done on a disposable instance, so there's probably ...