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.226.180.253
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwxr-x
.github
[ DIR ]
drwxrwxr-x
autom4te.cache
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxrwxr-x
src
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.clang-tidy
920
B
-rw-rw-r--
.gitattributes
976
B
-rw-rw-r--
.gitignore
1.42
KB
-rw-rw-r--
.mailmap
467
B
-rw-rw-r--
.travis.yml
4.6
KB
-rw-rw-r--
AUTHORS
493
B
-rw-rw-r--
COMPILATION.md
685
B
-rw-rw-r--
COPYING
17.57
KB
-rw-rw-r--
ChangeLog
24.02
KB
-rw-rw-r--
INSTALL
15.21
KB
-rw-rw-r--
Makefile
26.42
KB
-rw-rw-r--
Makefile.am
1.67
KB
-rw-rw-r--
Makefile.in
26.19
KB
-rw-rw-r--
README.md
5.27
KB
-rw-rw-r--
aclocal.m4
51.17
KB
-rw-rw-r--
autogen.sh
1.2
KB
-rwxrwxr-x
compile
7.16
KB
-rwxr-xr-x
config.guess
43.25
KB
-rwxr-xr-x
config.h
2.5
KB
-rw-rw-r--
config.h.in
2.28
KB
-rw-rw-r--
config.log
25.92
KB
-rw-rw-r--
config.status
33.68
KB
-rwxrwxr-x
config.sub
35.29
KB
-rwxr-xr-x
configure
222.12
KB
-rwxrwxr-x
configure.ac
10.01
KB
-rw-rw-r--
default_commit_hash
8
B
-rw-rw-r--
depcomp
23.01
KB
-rwxr-xr-x
install-sh
14.8
KB
-rwxr-xr-x
missing
6.71
KB
-rwxr-xr-x
stamp-h1
23
B
-rw-rw-r--
test-driver
4.53
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .travis.yml
# # s3fs - FUSE-based file system backed by Amazon S3 # # Copyright(C) 2007 Randy Rizun <rrizun@gmail.com> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # language: cpp matrix: include: - os: linux sudo: required dist: trusty cache: apt before_install: - sudo apt-get update -qq - sudo apt-get install -qq attr cppcheck libfuse-dev openjdk-7-jdk - sudo update-alternatives --set java /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java - sudo pip install --upgrade awscli script: - ./autogen.sh - ./configure CPPFLAGS='-I/usr/local/opt/openssl/include' CXXFLAGS='-std=c++03 -DS3FS_PTHREAD_ERRORCHECK=1' - make - make cppcheck - make check -C src - modprobe fuse - make check -C test - test/filter-suite-log.sh test/test-suite.log - os: osx osx_image: xcode9.2 cache: directories: - $HOME/Library/Caches/Homebrew - /usr/local/Homebrew - $HOME/.osx_cache before_cache: - brew cleanup - cd /usr/local/Homebrew; find . \! -regex ".+\.git.+" -delete - mkdir -p $HOME/.osx_cache; touch $HOME/.osx_cache/cached before_install: - TAPS="$(brew --repository)/Library/Taps"; if [ -e "$TAPS/caskroom/homebrew-cask" ]; then rm -rf "$TAPS/caskroom/homebrew-cask"; fi; if [ ! -f $HOME/.osx_cache/cached ]; then brew tap homebrew/homebrew-cask; else HOMEBREW_NO_AUTO_UPDATE=1 brew tap homebrew/homebrew-cask; fi - HOMEBREW_NO_AUTO_UPDATE=1 brew cask install osxfuse - S3FS_BREW_PACKAGES='awscli cppcheck truncate'; for s3fs_brew_pkg in ${S3FS_BREW_PACKAGES}; do brew list | grep -q ${s3fs_brew_pkg}; if [ $? -eq 0 ]; then brew outdated | grep -q ${s3fs_brew_pkg} && HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade ${s3fs_brew_pkg}; else HOMEBREW_NO_AUTO_UPDATE=1 brew install ${s3fs_brew_pkg}; fi; done - if [ -f /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs ]; then sudo chmod +s /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs; elif [ -f /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse ]; then sudo chmod +s /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse; fi - sudo ln -s /usr/local/opt/coreutils/bin/gstdbuf /usr/local/bin/stdbuf script: - ./autogen.sh - PKG_CONFIG_PATH=/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig ./configure CXXFLAGS='-std=c++03 -DS3FS_PTHREAD_ERRORCHECK=1' - make - make cppcheck - make check -C src - if [ -f /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs ]; then /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs ; elif [ -f /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse ]; then /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse ; fi - make check -C test - test/filter-suite-log.sh test/test-suite.log - os: linux-ppc64le sudo: required dist: trusty cache: apt before_install: - sudo add-apt-repository -y ppa:openjdk-r/ppa - sudo apt-get update -qq - sudo apt-get install -qq attr cppcheck libfuse-dev openjdk-7-jdk - sudo update-alternatives --set java /usr/lib/jvm/java-7-openjdk-ppc64el/jre/bin/java - sudo pip install --upgrade awscli script: - ./autogen.sh - ./configure CPPFLAGS='-I/usr/local/opt/openssl/include' CXXFLAGS='-std=c++03 -DS3FS_PTHREAD_ERRORCHECK=1' - make - make cppcheck - make check -C src - modprobe fuse - make check -C test - test/filter-suite-log.sh test/test-suite.log # # Local variables: # tab-width: 4 # c-basic-offset: 4 # End: # vim600: noet sw=4 ts=4 fdm=marker # vim<600: noet sw=4 ts=4 #
Close