error with installation script

Why this error appears?
No description
27 Replies
Jake
Jake2y ago
@Growtoups | elixior.cloud Your up!
root@david1117:~#
I would say that something is wrong with yarn
MonkeyTryhard
MonkeyTryhardOP2y ago
Any way to uninstall blueprint auto to make a clean install?
root@david1117:~#
GitHub
GitHub - growtoups/bp-utilities: BP-UTILITIES, an unofficial bluepr...
BP-UTILITIES, an unofficial blueprint script, now allows for hassle-free installation and uninstallation of blueprint, with the added capability to simultaneously update Pterodactyl and Blueprint, ...
root@david1117:~#
Try that one
MonkeyTryhard
MonkeyTryhardOP2y ago
Uninstalled and re run with the script and happens this
No description
MonkeyTryhard
MonkeyTryhardOP2y ago
It was like 10 percent and then says that error It gets stuck in a file for some reanson
Growtoups | elixior.cloud
uhhh on the panel it doesnt show blueprint or anything?
MonkeyTryhard
MonkeyTryhardOP2y ago
yea but I try to install addons Like darkenate theme And happens the same error Then the page doesnt work for 5 minutes And then you can see the theme its installed on the extensions tab but not working
Growtoups | elixior.cloud
huh could you run the update pterodactyl & blueprint on the script
MonkeyTryhard
MonkeyTryhardOP2y ago
doesnt work
Growtoups | elixior.cloud
huhh strange So yeah no idea
MonkeyTryhard
MonkeyTryhardOP2y ago
update
MonkeyTryhard
MonkeyTryhardOP2y ago
No description
MonkeyTryhard
MonkeyTryhardOP2y ago
this is the complete error message after sometime it gets deleted so i screenshot at the moment
Growtoups | elixior.cloud
Huhhhh Tf
root@david1117:~#
Not enough resources How much ram do you have @MonkeyTryhard
MonkeyTryhard
MonkeyTryhardOP2y ago
1gb for the panel 24gb for wings
root@david1117:~#
yeah, 1 gb is not enough for building the panel use at least 2
MonkeyTryhard
MonkeyTryhardOP2y ago
Ok
Growtoups | elixior.cloud
Didn't know that one I'll add a warning to the script when installing on a less than 2gb ram vps If I find out how
root@david1117:~#
free -m get the ram with grep and done (there is certainly a better alternative to that tho)
Growtoups | elixior.cloud
Asked chatgpt
#!/bin/bash

# Get total available memory in kilobytes
total_mem=$(free -tk | awk 'NR==2 {print $2}')

# Convert kilobytes to gigabytes
total_mem_gb=$(echo "scale=2; $total_mem / 1024 / 1024" | bc)

# Check if total memory is less than 2GB
if (( $(echo "$total_mem_gb < 2" | bc -l) )); then
echo "Warning: System has less than 2GB of RAM"
fi
#!/bin/bash

# Get total available memory in kilobytes
total_mem=$(free -tk | awk 'NR==2 {print $2}')

# Convert kilobytes to gigabytes
total_mem_gb=$(echo "scale=2; $total_mem / 1024 / 1024" | bc)

# Check if total memory is less than 2GB
if (( $(echo "$total_mem_gb < 2" | bc -l) )); then
echo "Warning: System has less than 2GB of RAM"
fi
root@david1117:~#
Similar to mine tho You can just remove the kilobytes to gigabytes and just check the kilobytes number Ez
#!/bin/bash

# Get total available memory in kilobytes
total_mem=$(free -tk | awk 'NR==2 {print $2}')

# Check if total memory is less than 2GB
if (( $total_mem < 2*1024*1024 )); then
echo "Warning: System has less than 2GB of RAM"
fi
#!/bin/bash

# Get total available memory in kilobytes
total_mem=$(free -tk | awk 'NR==2 {print $2}')

# Check if total memory is less than 2GB
if (( $total_mem < 2*1024*1024 )); then
echo "Warning: System has less than 2GB of RAM"
fi
according to chatgpt
Growtoups | elixior.cloud
Yh Classic Chatgpt being inconsistant
Jake
Jake2y ago
GPT 3.5 moment

Did you find this page helpful?