__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.184: ~ $
#!/bin/sh

# Chromium launcher

# Authors:
#  Fabien Tassin <fta@sofaraway.org>
# License: GPLv2 or later

APPNAME=chromium

GDB=/usr/bin/gdb
LIBDIR=/usr/lib/$APPNAME
CHROMIUM_FLAGS=""

usage () {
  echo "$APPNAME [-h|--help] [-g|--debug] [--no-memcheck] [--temp-profile] [options] [URL]"
  echo
  echo "        -g or --debug              Start within $GDB"
  echo "        -h or --help               This help screen"
  echo "        --no-memcheck              Skip warning on low RAM devices"
  echo "        --temp-profile             Start with a new and temporary profile"
  echo "        --enable-remote-extensions Allow extensions from remote sites"
  echo
  echo " Other supported options are:"
  MANWIDTH=80 man chromium | sed -e '1,/OPTIONS/d; /ENVIRONMENT/,$d'
  echo " See 'man chromium' for more details"
}

display_msg() {
  if [ -z "$DISPLAY" ]; then
    echo "$@" 1>&2
  else
    zenoty --title=Chromium --text="$@"
  fi
}

display_qstn() {
  if [ -z "$DISPLAY" ]; then
    echo "$1"
  else
    zenoty --title=Chromium --text="$1" --question --ok-label="$2" \
      --cancel-label=Cancel --icon-name=dialog-warning
  fi
}

nosse3="\
The hardware on this system lacks support for the sse3 instruction set.
The upstream chromium project no longer supports this configuration.
For more information, please read and possibly provide input to their
bug tracking system at http://crbug.com/1123353"

noneon="\
The hardware on this system lacks support for NEON SIMD extensions.
We now require NEON or equivalent architecture extensions on ARM-based
machines. See https://lists.debian.org/debian-devel/2023/09/msg00175.html
for more information."

lowmem="\
It is not recommended to run Chromium on devices with less than 1GB of RAM."

lowmemok="Launch anyway"

case `uname -m` in
    i386|i586|i686|x86_64)
        # Check whether this system supports SSE3 (aka PNI)
        if ! grep -q 'sse3\|pni' /proc/cpuinfo; then
            display_msg "$nosse3"
            exit 1
        fi
        ;;
    armv?l)
        # Check whether this system supports NEON or ASIMD. Even though there
        # could be ARMv8 systems without ASIMD, we're far more likely to hit
        # v8 hardware emulating v7 systems with buggy VMs; so don't even
        # bother checking armv8l for now. If we do check in the future, they
        # advertise 'asimd' instead of 'neon'.
        if ! grep -q 'neon\|asimd' /proc/cpuinfo; then
            display_msg "$noneon"
            exit 1
        fi
        ;;
esac

# Clean up old crash reports (see https://bugs.debian.org/1015931)
# after 30 days.
test -d "$HOME/.config/chromium/Crash Reports/pending/" && \
  find "$HOME/.config/chromium/Crash Reports/pending/" -mtime +30 \
  \( -name "*.meta" -o -name "*.dmp" \) -exec rm \{\} \;

# Source additional settings
for file in /etc/chromium.d/*; do
  test $file = /etc/chromium.d/README || expr $file : .*\.dpkg > /dev/null || . $file
done

# Use the /usr/bin helper script for generated launchers
if test -z "$CHROME_WRAPPER"; then
    export CHROME_WRAPPER="/usr/bin/$APPNAME"
fi

# Set the correct file name for the desktop file
export CHROME_DESKTOP="chromium.desktop"

# Set CHROME_VERSION_EXTRA text, which is displayed in the About dialog
export CHROME_VERSION_EXTRA="built on Debian GNU/Linux 13 (trixie)"

want_debug=0
want_gles=1
want_memcheck=1
want_temp_profile=0
extra_args=0
while [ $# -gt 0 -a $# -ne $extra_args ]; do
  case "$1" in
    -h | --help | -help )
      usage
      exit 0 ;;
    -g | --debug )
      want_debug=1
      shift ;;
    --temp-profile )
      want_temp_profile=1
      shift ;;
    --no-gl-override)
      want_gles=0
      shift ;;
    --no-memcheck )
      want_memcheck=0
      shift ;;
    --enable-remote-extensions )
      CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-remote-extensions"
      shift ;;
    -- ) # Stop option processing
      shift
      break ;;
    --* ) # Preserve (unknown to us) chromium flags at the end of the stack
      set -- "$@" "$1"
      extra_args=$((extra_args+1))
      shift ;;
    * )
      break ;;
  esac
done

if [ $want_memcheck -eq 1 ]; then
  memkb=$(awk '/^MemTotal/{print $2; exit}' /proc/meminfo)
  if [ $memkb -le 524288 ]; then
    if ! display_qstn "$lowmem" "$lowmemok"; then
	    exit 1
    fi
  fi
fi

if [ $want_gles -eq 1 ]; then
	CHROMIUM_FLAGS="$CHROMIUM_FLAGS --use-angle=gles"
fi

# Whitelist installed extensions that are specified via --load-extension
if [ -z "$(echo $CHROMIUM_FLAGS | grep \\-\\-enable-remote-extensions)" ]; then
  export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disable-background-networking"
  export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disable-extensions-except=$(echo $CHROMIUM_FLAGS | tr ' ' \\n | grep \\-\\-load-extension | cut -d= -f2 | tr \\n ,)"
fi

if [ $want_temp_profile -eq 1 ] ; then
  TEMP_PROFILE=`mktemp -d`
  echo "Using temporary profile: $TEMP_PROFILE"
  CHROMIUM_FLAGS="$CHROMIUM_FLAGS --user-data-dir=$TEMP_PROFILE"
fi

if [ $want_debug -eq 1 ] ; then
  if [ ! -x $GDB ] ; then
    echo "Sorry, can't find usable $GDB. Please install it."
    exit 1
  fi
  tmpfile=`mktemp /tmp/chromiumargs.XXXXXX` || { echo "Cannot create temporary file" >&2; exit 1; }
  trap " [ -f \"$tmpfile\" ] && /bin/rm -f -- \"$tmpfile\"" 0 1 2 3 13 15
  echo "set args $CHROMIUM_FLAGS --single-process ${1+"$@"}" > $tmpfile
  echo "# Env:"
  echo "#     LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
  echo "#                PATH=$PATH"
  echo "#            GTK_PATH=$GTK_PATH"
  echo "#      CHROMIUM_FLAGS=$CHROMIUM_FLAGS"
  echo "$GDB $LIBDIR/$APPNAME -x $tmpfile"
  $GDB "$LIBDIR/$APPNAME" -x $tmpfile
  if [ $want_temp_profile -eq 1 ] ; then
    rm -rf $TEMP_PROFILE
  fi
  exit $?
else
  if [ $want_temp_profile -eq 0 ] ; then
    exec $LIBDIR/$APPNAME $CHROMIUM_FLAGS "$@"
  else
    # we can't exec here as we need to clean-up the temporary profile
    $LIBDIR/$APPNAME $CHROMIUM_FLAGS "$@"
    rm -rf $TEMP_PROFILE
  fi
fi

Filemanager

Name Type Size Permission Actions
Phosh-OSK File 4.22 KB 0644
README File 100 B 0644
awk File 776.39 KB 0755
awk.1.gz File 18.96 KB 0644
builtins.7.gz File 508 B 0644
c++ File 1.07 MB 0755
c89 File 428 B 0755
c89.1.gz File 1.33 KB 0644
c99 File 454 B 0755
c99.1.gz File 1.39 KB 0644
cc File 1.07 MB 0755
cpp File 1.07 MB 0755
cyfmac43455-sdio.bin File 595.03 KB 0644
default-GM.sf2 File 5.69 MB 0644
default-GM.sf3 File 5.69 MB 0644
editor File 324.81 KB 0755
editor.1.gz File 8.1 KB 0644
ex File 1.79 MB 0755
ex.1.gz File 6.09 KB 0644
ex.da.1.gz File 5.51 KB 0644
ex.de.1.gz File 7.56 KB 0644
ex.fr.1.gz File 6.37 KB 0644
ex.it.1.gz File 6.85 KB 0644
ex.ja.1.gz File 6.69 KB 0644
ex.pl.1.gz File 6.15 KB 0644
ex.ru.1.gz File 9.99 KB 0644
ex.tr.1.gz File 5.74 KB 0644
faked.1.gz File 1.16 KB 0644
faked.es.1.gz File 1.39 KB 0644
faked.fr.1.gz File 1.41 KB 0644
faked.sv.1.gz File 1.36 KB 0644
fakeroot File 3.91 KB 0755
fakeroot.1.gz File 3.93 KB 0644
fakeroot.es.1.gz File 4.5 KB 0644
fakeroot.fr.1.gz File 4.64 KB 0644
fakeroot.sv.1.gz File 4.43 KB 0644
gnome-www-browser File 5.78 KB 0755
idmap-plugin File 66.01 KB 0644
idmap-plugin.8.gz File 664 B 0644
jsondiff File 1004 B 0755
libblas.so.3-aarch64-linux-gnu File 385.86 KB 0644
liblapack.so.3-aarch64-linux-gnu File 5.51 MB 0644
lightdm-greeter File 185 B 0644
lua-compiler File 194.68 KB 0755
lua-compiler-manual File 1.63 KB 0644
lua-interpreter File 259.18 KB 0755
lua-manual File 1.61 KB 0644
lzcat File 130.76 KB 0755
lzcat.1.gz File 23.44 KB 0644
lzcmp File 7.41 KB 0755
lzcmp.1.gz File 787 B 0644
lzdiff File 7.41 KB 0755
lzdiff.1.gz File 787 B 0644
lzegrep File 10.17 KB 0755
lzegrep.1.gz File 1006 B 0644
lzfgrep File 10.17 KB 0755
lzfgrep.1.gz File 1006 B 0644
lzgrep File 10.17 KB 0755
lzgrep.1.gz File 1006 B 0644
lzless File 2.33 KB 0755
lzless.1.gz File 780 B 0644
lzma File 130.76 KB 0755
lzma.1.gz File 23.44 KB 0644
lzmore File 2.18 KB 0755
lzmore.1.gz File 772 B 0644
mt File 131.48 KB 0755
mt.1.gz File 1.98 KB 0644
my.cnf File 1.1 KB 0644
nawk File 776.39 KB 0755
nawk.1.gz File 18.96 KB 0644
nc File 66.49 KB 0755
nc.1.gz File 6.29 KB 0644
netcat File 66.49 KB 0755
netcat.1.gz File 6.29 KB 0644
open File 31.53 KB 0755
open.1.gz File 2 KB 0644
pager File 275.29 KB 0755
pager.1.gz File 28.26 KB 0644
phar File 14.88 KB 0755
phar.1.gz File 2.75 KB 0644
phar.phar File 14.88 KB 0755
phar.phar.1.gz File 36 B 0644
php File 5.76 MB 0755
php.1.gz File 3.71 KB 0644
pico File 324.81 KB 0755
pico.1.gz File 8.1 KB 0644
pinentry File 130.52 KB 0755
pinentry-x11 File 130.52 KB 0755
pinentry-x11.1.gz File 1.38 KB 0644
pinentry.1.gz File 1.38 KB 0644
pybabel File 956 B 0755
regulatory.db File 6.23 KB 0644
regulatory.db.p7s File 1.09 KB 0644
rmt File 67.12 KB 0755
rmt.8.gz File 2.34 KB 0644
rview File 1.79 MB 0755
tdbbackup File 66.16 KB 0755
tdbbackup.8.gz File 1.62 KB 0644
unlzma File 130.76 KB 0755
unlzma.1.gz File 23.44 KB 0644
vi File 1.79 MB 0755
vi.1.gz File 6.09 KB 0644
vi.da.1.gz File 5.51 KB 0644
vi.de.1.gz File 7.56 KB 0644
vi.fr.1.gz File 6.37 KB 0644
vi.it.1.gz File 6.85 KB 0644
vi.ja.1.gz File 6.69 KB 0644
vi.pl.1.gz File 6.15 KB 0644
vi.ru.1.gz File 9.99 KB 0644
vi.tr.1.gz File 5.74 KB 0644
view File 1.79 MB 0755
view.1.gz File 6.09 KB 0644
view.da.1.gz File 5.51 KB 0644
view.de.1.gz File 7.56 KB 0644
view.fr.1.gz File 6.37 KB 0644
view.it.1.gz File 6.85 KB 0644
view.ja.1.gz File 6.69 KB 0644
view.pl.1.gz File 6.15 KB 0644
view.ru.1.gz File 9.99 KB 0644
view.tr.1.gz File 5.74 KB 0644
which File 1.05 KB 0755
which.1.gz File 463 B 0644
which.de1.gz File 859 B 0644
which.es1.gz File 588 B 0644
which.fr1.gz File 909 B 0644
which.it1.gz File 590 B 0644
which.ja1.gz File 726 B 0644
which.pl1.gz File 786 B 0644
which.sl1.gz File 652 B 0644
www-browser File 1.98 MB 0755
www-browser.1.gz File 14.34 KB 0644
x-cursor-theme File 30 B 0644
x-session-manager File 657 B 0755
x-terminal-emulator File 133.7 KB 0755
x-terminal-emulator.1.gz File 1.48 KB 0644
x-window-manager File 451.63 KB 0755
x-window-manager.1.gz File 1.55 KB 0644
x-www-browser File 848 B 0755
x-www-browser.1.gz File 1.27 KB 0644
Filemanager