Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.188.218.219
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
ubuntu /
s3fs-fuse /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
26.2
KB
-rw-rw-r--
Makefile.am
1.14
KB
-rw-rw-r--
Makefile.in
26.06
KB
-rw-rw-r--
filter-suite-log.sh
4.72
KB
-rwxrwxr-x
integration-test-common.sh
7.27
KB
-rw-rw-r--
integration-test-main.sh
21.38
KB
-rwxrwxr-x
keystore.jks
2.19
KB
-rw-rw-r--
mergedir.sh
4.25
KB
-rwxrwxr-x
passwd-s3fs
32
B
-rw-rw-r--
require-root.sh
103
B
-rwxrwxr-x
s3proxy.conf
318
B
-rw-rw-r--
sample_ahbe.conf
1.89
KB
-rw-rw-r--
sample_delcache.sh
2.45
KB
-rwxrwxr-x
small-integration-test.sh
1.35
KB
-rwxrwxr-x
test-utils.sh
5.94
KB
-rw-rw-r--
write_multiple_offsets.py
375
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : small-integration-test.sh
#!/bin/bash # # Test s3fs-fuse file system operations with # set -o errexit set -o pipefail # Require root REQUIRE_ROOT=require-root.sh #source $REQUIRE_ROOT source integration-test-common.sh CACHE_DIR="/tmp/s3fs-cache" rm -rf "${CACHE_DIR}" mkdir "${CACHE_DIR}" #reserve 200MB for data cache source test-utils.sh CACHE_DISK_AVAIL_SIZE=`get_disk_avail_size $CACHE_DIR` if [ `uname` = "Darwin" ]; then # [FIXME] # Only on MacOS, there are cases where process or system # other than the s3fs cache uses disk space. # We can imagine that this is caused by Timemachine, but # there is no workaround, so s3fs cache size is set +1gb # for error bypass. # ENSURE_DISKFREE_SIZE=$((CACHE_DISK_AVAIL_SIZE - 1200)) else ENSURE_DISKFREE_SIZE=$((CACHE_DISK_AVAIL_SIZE - 200)) fi export CACHE_DIR export ENSURE_DISKFREE_SIZE FLAGS=( "use_cache=${CACHE_DIR} -o ensure_diskfree=${ENSURE_DISKFREE_SIZE}" enable_content_md5 enable_noobj_cache nocopyapi nomultipart notsup_compat_dir sigv2 singlepart_copy_limit=$((10 * 1024)) # limit size to exercise multipart code paths #use_sse # TODO: S3Proxy does not support SSE ) start_s3proxy for flag in "${FLAGS[@]}"; do echo "testing s3fs flag: $flag" start_s3fs -o $flag ./integration-test-main.sh stop_s3fs done stop_s3proxy echo "$0: tests complete."
Close