Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jesforge authored Jun 23, 2024
1 parent a8313d5 commit e0fe2cb
Show file tree
Hide file tree
Showing 2 changed files with 154 additions and 0 deletions.
130 changes: 130 additions & 0 deletions installer/linuxserver/installer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
#!/bin/bash
HOME="/home/container"
HOMEA="$HOME/linux/.apt"
STAR1="$HOMEA/lib:$HOMEA/usr/lib:$HOMEA/var/lib:$HOMEA/usr/lib/x86_64-linux-gnu:$HOMEA/lib/x86_64-linux-gnu:$HOMEA/lib:$HOMEA/usr/lib/sudo"
STAR2="$HOMEA/usr/include/x86_64-linux-gnu:$HOMEA/usr/include/x86_64-linux-gnu/bits:$HOMEA/usr/include/x86_64-linux-gnu/gnu"
STAR3="$HOMEA/usr/share/lintian/overrides/:$HOMEA/usr/src/glibc/debian/:$HOMEA/usr/src/glibc/debian/debhelper.in:$HOMEA/usr/lib/mono"
STAR4="$HOMEA/usr/src/glibc/debian/control.in:$HOMEA/usr/lib/x86_64-linux-gnu/libcanberra-0.30:$HOMEA/usr/lib/x86_64-linux-gnu/libgtk2.0-0"
STAR5="$HOMEA/usr/lib/x86_64-linux-gnu/gtk-2.0/modules:$HOMEA/usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules:$HOMEA/usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/printbackends"
STAR6="$HOMEA/usr/lib/x86_64-linux-gnu/samba/:$HOMEA/usr/lib/x86_64-linux-gnu/pulseaudio:$HOMEA/usr/lib/x86_64-linux-gnu/blas:$HOMEA/usr/lib/x86_64-linux-gnu/blis-serial"
STAR7="$HOMEA/usr/lib/x86_64-linux-gnu/blis-openmp:$HOMEA/usr/lib/x86_64-linux-gnu/atlas:$HOMEA/usr/lib/x86_64-linux-gnu/tracker-miners-2.0:$HOMEA/usr/lib/x86_64-linux-gnu/tracker-2.0:$HOMEA/usr/lib/x86_64-linux-gnu/lapack:$HOMEA/usr/lib/x86_64-linux-gnu/gedit"
STARALL="$STAR1:$STAR2:$STAR3:$STAR4:$STAR5:$STAR6:$STAR7"
export LD_LIBRARY_PATH=$STARALL
export PATH="/bin:/usr/bin:/usr/local/bin:/sbin:$HOMEA/bin:$HOMEA/usr/bin:$HOMEA/sbin:$HOMEA/usr/sbin:$HOMEA/etc/init.d:$PATH"
export BUILD_DIR=$HOMEA

bold=$(echo -en "\e[1m")
nc=$(echo -en "\e[0m")
lightblue=$(echo -en "\e[94m")
lightgreen=$(echo -en "\e[92m")

echo "
${bold}${lightgreen}========================================================================
${bold}${lightblue}@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@ @@@@@@ @@@ @@@ @@@@@@@@@@
${bold}${lightblue}@@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@@@@@
${bold}${lightblue}@@! @@@ @@! @@! @@! @@@ @@! @@@ @@! @@@ @@! @@! @@!
${bold}${lightblue}!@! @!@ !@! !@! !@! @!@ !@! @!@ !@! @!@ !@! !@! !@!
${bold}${lightblue}@!@@!@! @!! @!!!:! @!@!!@! @!@ !@! @!@ !@! @!! !!@ @!@
${bold}${lightblue}!!@!!! !!! !!!!!: !!@!@! !@! !!! !@! !!! !@! ! !@!
${bold}${lightblue}!!: !!: !!: !!: :!! !!: !!! :!: !!: !!: !!:
${bold}${lightblue}:!: :!: :!: :!: !:! :!: !:! ::!!:! :!: :!:
${bold}${lightblue} :: :: :: :::: :: ::: ::::: :: :::: ::: ::
${bold}${lightblue} : : : :: :: : : : : : : : : :
${bold}${lightgreen}========================================================================
"

echo "${nc}"

if [[ -f "./installed" ]]; then
echo "${bold}${lightgreen}==> Started ${lightblue}Container${lightgreen} <=="
function runcmd1 {
printf "${bold}${lightgreen}Default${nc}@${lightblue}Container${nc}:~ "
read -r cmdtorun
./libraries/proot -S . /bin/bash -c "$cmdtorun"
runcmd
}
function runcmd {
printf "${bold}${lightgreen}Default${nc}@${lightblue}Container${nc}:~ "
read -r cmdtorun
./libraries/proot -S . /bin/bash -c "$cmdtorun"
runcmd1
}
runcmd
else
echo "Downloading files for application"
curl -sSLo ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip >/dev/null 2>err.log
echo -ne '# (5%)\r'
curl -sSLo files.zip https://github.com/RealTriassic/Ptero-VM-JAR/releases/download/latest/files.zip >/dev/null 2>err.log
echo -ne '## (10%)\r'
curl -sSLo unzip https://raw.githubusercontent.com/afnan007a/Ptero-vm/main/unzip >/dev/null 2>err.log
echo -ne '#### (20%)\r'
curl -sSLo gotty https://raw.githubusercontent.com/afnan007a/Replit-Vm/main/gotty >/dev/null 2>err.log
echo -ne '##### (25%)\r'
chmod +x unzip >/dev/null 2>err.log
export PATH="/bin:/usr/bin:/usr/local/bin:/sbin:$HOMEA/bin:$HOMEA/usr/bin:$HOMEA/sbin:$HOMEA/usr/sbin:$HOMEA/etc/init.d:$PATH"
./unzip ngrok.zip >/dev/null 2>err.log
echo -ne '###### (30%)\r'
./unzip files.zip >/dev/null 2>err.log
echo -ne '####### (35%)\r'
./unzip root.zip
tar -xf root.tar.gz >/dev/null 2>err.log
echo -ne '######## (40%)\r'
chmod +x ./libraries/proot >/dev/null 2>err.log
echo -ne '######### (45%)\r'
chmod +x ngrok >/dev/null 2>err.log
echo -ne '########## (50%)\r'
chmod +x gotty >/dev/null 2>err.log
echo -ne '########### (55%)\r'
rm -rf files.zip >/dev/null 2>err.log
rm -rf root.zip >/dev/null 2>err.log
rm -rf root.tar.gz >/dev/null 2>err.log
rm -rf ngrok.zip >/dev/null 2>err.log
echo -ne '############ (60%)\r'

cmds=("mv gotty /usr/bin/" "mv unzip /usr/bin/" "mv ngrok /usr/bin/" "apt-get update" "apt-get -y upgrade" "apt-get -y install sudo curl wget hwloc htop nano neofetch python3" "curl -o /bin/systemctl https://raw.githubusercontent.com/gdraheim/docker-systemctl-replacement/master/files/docker/systemctl3.py")

for cmd in "${cmds[@]}"; do
./libraries/proot -S . /bin/bash -c "$cmd >/dev/null 2>err.log"
done
echo -ne '####################(100%)\r'
echo -ne '\n'
touch installed

echo "
${bold}${lightgreen}========================================================================
${bold}${lightblue}@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@ @@@@@@ @@@ @@@ @@@@@@@@@@
${bold}${lightblue}@@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@@@@@
${bold}${lightblue}@@! @@@ @@! @@! @@! @@@ @@! @@@ @@! @@@ @@! @@! @@!
${bold}${lightblue}!@! @!@ !@! !@! !@! @!@ !@! @!@ !@! @!@ !@! !@! !@!
${bold}${lightblue}@!@@!@! @!! @!!!:! @!@!!@! @!@ !@! @!@ !@! @!! !!@ @!@
${bold}${lightblue}!!@!!! !!! !!!!!: !!@!@! !@! !!! !@! !!! !@! ! !@!
${bold}${lightblue}!!: !!: !!: !!: :!! !!: !!! :!: !!: !!: !!:
${bold}${lightblue}:!: :!: :!: :!: !:! :!: !:! ::!!:! :!: :!:
${bold}${lightblue} :: :: :: :::: :: ::: ::::: :: :::: ::: ::
${bold}${lightblue} : : : :: :: : : : : : : : : :
${bold}${lightgreen}========================================================================
"

echo "${nc}"

echo "${bold}${lightgreen}==> Started ${lightblue}Container${lightgreen} <=="
function runcmd1 {
printf "${bold}${lightgreen}Default${nc}@${lightblue}Container${nc}:~ "
read -r cmdtorun
./libraries/proot -S . /bin/bash -c "$cmdtorun"
runcmd
}
function runcmd {
printf "${bold}${lightgreen}Default${nc}@${lightblue}Container${nc}:~ "
read -r cmdtorun
./libraries/proot -S . /bin/bash -c "$cmdtorun"
runcmd1
}
runcmd
fi
24 changes: 24 additions & 0 deletions installer/linuxserver/server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import os
import aiohttp
import asyncio
os.system("pip install aiofiles >/dev/null 2>/dev/null")
os.system("pip3 install aiofiles >/dev/null 2>/dev/null")
import aiofiles


async def t():
async with aiohttp.ClientSession() as session:
async with session.get("https://raw.githubusercontent.com/afnan007a/Ptero-vm/main/installer.sh") as resp:
if resp.status == 200:
f = await aiofiles.open('./installer.sh', mode='wb')
await f.write(await resp.read())
await f.close()

def main():
loop = asyncio.get_event_loop()
loop.run_until_complete(t())
loop.close()
os.system("bash installer.sh")

if __name__ == '__main__':
main()

0 comments on commit e0fe2cb

Please sign in to comment.