Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ayush23027 /
.nvm /
test /
installation_iojs /
[ HOME SHELL ]
Name
Size
Permission
Action
install already installed uses...
1007
B
-rwxr-xr-x
install from binary
996
B
-rwxr-xr-x
install from source
664
B
-rw-r--r--
install two versions and use t...
924
B
-rwxr-xr-x
install version specified in ....
652
B
-rwxr-xr-x
install version specified in ....
632
B
-rw-r--r--
install while reinstalling pac...
1.13
KB
-rwxr-xr-x
nvm install v1 works
679
B
-rwxr-xr-x
setup_dir
62
B
-rwxr-xr-x
teardown_dir
243
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install two versions and use the latest one
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../nvm.sh # Remove the stuff we're clobbering. [ -e "${NVM_DIR}/versions/io.js/v1.0.0" ] && rm -R "${NVM_DIR}/versions/io.js/v1.0.0" [ -e "${NVM_DIR}/versions/io.js/v1.0.1" ] && rm -R "${NVM_DIR}/versions/io.js/v1.0.1" # Install from binary nvm install iojs-v1.0.0 || die "'nvm install iojs-v1.0.0' failed" nvm i iojs-v1.0.1 || die "'nvm i iojs-v1.0.1' failed" # Check [ -d "${NVM_DIR}/versions/io.js/v1.0.0" ] || die "iojs v1.0.0 didn't exist" [ -d "${NVM_DIR}/versions/io.js/v1.0.1" ] || die "iojs v1.0.1 didn't exist" # Use the first one nvm use iojs-1.0.0 || die "'nvm use iojs-1.0.0' failed" # Use the latest one nvm use iojs-1 || die "'nvm use iojs-1' failed" [ "_$(node --version)" = "_v1.0.1" ] || die "'node --version' was not v1.0.1, got: $(node --version)" [ "_$(iojs --version)" = "_v1.0.1" ] || die "'iojs --version' was not v1.0.1, got: $(iojs --version)"
Close