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 /
gdm3 /
[ HOME SHELL ]
Name
Size
Permission
Action
Init
[ DIR ]
drwxr-xr-x
PostLogin
[ DIR ]
drwxr-xr-x
PostSession
[ DIR ]
drwxr-xr-x
PreSession
[ DIR ]
drwxr-xr-x
Prime
[ DIR ]
drwxr-xr-x
PrimeOff
[ DIR ]
drwxr-xr-x
config-error-dialog.sh
996
B
-rw-r--r--
custom.conf
554
B
-rw-r--r--
greeter.dconf-defaults
1.44
KB
-rw-r--r--
Xsession
7.11
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config-error-dialog.sh
# Copyright (C) 2014 Canonical Ltd # Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.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, version 3 of the License. # # See http://www.gnu.org/copyleft/gpl.html the full text of the license. # This file may be sourced by the function source_with_error_check() in # /etc/gdm/Xsession export TEXTDOMAIN=gdm . /usr/bin/gettext.sh PARA1=$(eval_gettext 'Error found when loading $CONFIG_FILE:') PARA2=$(gettext 'As a result the session will not be configured correctly. You should fix the problem as soon as feasible.') TEXT="$PARA1\n\n$(fold -s $ERR)\n\n$PARA2" if [ -x /usr/bin/kdialog ]; then TEXT_FILE=$(mktemp --tmpdir config-err-kdialog-XXXXXX) echo -n "$TEXT" > "$TEXT_FILE" kdialog --textbox "$TEXT_FILE" 500 300 rm -f "$TEXT_FILE" elif [ -x /usr/bin/zenity ]; then zenity --warning --no-wrap --text="$TEXT" fi
Close