Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
etc /
X11 /
Xsession.d /
[ HOME SHELL ]
Name
Size
Permission
Action
20dbus_xdg-runtime
1.04
KB
-rw-r--r--
20x11-common_process-args
1.82
KB
-rw-r--r--
30x11-common_xresources
878
B
-rw-r--r--
35x11-common_xhost-local
389
B
-rw-r--r--
40x11-common_xsessionrc
187
B
-rw-r--r--
50x11-common_determine-startup
1.53
KB
-rw-r--r--
55gnome-session_gnomerc
743
B
-rw-r--r--
60x11-common_xdg_path
991
B
-rw-r--r--
70im-config_launch
1.54
KB
-rw-r--r--
90atk-adaptor
511
B
-rw-r--r--
90gpg-agent
880
B
-rw-r--r--
90qt-a11y
335
B
-rw-r--r--
90x11-common_ssh-agent
385
B
-rw-r--r--
90xbrlapi
431
B
-rw-r--r--
99x11-common_start
166
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 70im-config_launch
#!/bin/sh # vim: set sts=4 expandtab: # Copyright (C) 2012 Osamu Aoki <osamu@debian.org> # Copyright (C) 2012 Aron Xu <aron@debian.org> # GNU General Public License version 2 or later. # # Input Method launcher hook ... see im-launch(1). # The hook script for dbus-launch is in 75 which changes $STARTUP string. # This shuld be befor this dbus-launch hook to ensure the working dbus # for input method. Thus moved from 80 to 70. IMLAUNCH=/usr/bin/im-launch if [ "$IM_CONFIG_PHASE" = 1 ]; then IM_CONFIG_CHECK_ENV=1 export IM_CONFIG_CHECK_ENV fi # If already tweaked, keep hands off :-) # If im-config is removed but not purged, keep hands off :-) if [ -z "$XMODIFIERS" ] && \ [ -z "$GTK_IM_MODULE" ] && \ [ -z "$QT_IM_MODULE" ] && \ [ -z "$CLUTTER_IM_MODULE" ] && \ [ -r /usr/share/im-config/xinputrc.common ]; then IM_CONFIG_PHASE=1 export IM_CONFIG_PHASE # initialize all im-config common functions and parameters . /usr/share/im-config/xinputrc.common unset TEXTDOMAIN unset TEXTDOMAINDIR # source the first found configuration file if [ -r "$IM_CONFIG_XINPUTRC_USR" ]; then . $IM_CONFIG_XINPUTRC_USR elif [ -r "$IM_CONFIG_XINPUTRC_SYS" ]; then . $IM_CONFIG_XINPUTRC_SYS fi # always export variables even for manual configuration. export XMODIFIERS export GTK_IM_MODULE export QT_IM_MODULE export CLUTTER_IM_MODULE fi # Change $STARTUP string to im-launch while keeping the old $STARTUP string # as its arguments if [ -x "$IMLAUNCH" ]; then STARTUP="$IMLAUNCH $STARTUP" fi
Close