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
/
usr /
lib /
python3 /
dist-packages /
softwareproperties /
[ HOME SHELL ]
Name
Size
Permission
Action
dbus
[ DIR ]
drwxr-xr-x
gtk
[ DIR ]
drwxr-xr-x
__pycache__
[ DIR ]
drwxr-xr-x
AptAuth.py
3.02
KB
-rw-r--r--
cloudarchive.py
5.56
KB
-rw-r--r--
CountryInformation.py
1.96
KB
-rw-r--r--
distro.py
2.15
KB
-rw-r--r--
extendedsourceslist.py
22
KB
-rw-r--r--
__init__.py
1.39
KB
-rw-r--r--
MirrorTest.py
7.28
KB
-rw-r--r--
ppa.py
8.83
KB
-rw-r--r--
shortcuthandler.py
24.35
KB
-rw-r--r--
shortcuts.py
1.58
KB
-rw-r--r--
SoftwareProperties.py
31.43
KB
-rw-r--r--
sourceslist.py
1.89
KB
-rw-r--r--
uri.py
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
# __init__.py - defines globals # # Copyright (c) 2007 Canonical Ltd. # # Author: Sebastian Heinlein <glatzor@ubuntu.com> # Michael Vogt <mvo@debian.org> # # 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA # Level of the update automation (UPDATE_MANUAL, UPDATE_NOTIFY, UPDATE_DOWNLOAD, UPDATE_INST_SEC) = list(range(4)) # Provide more readable synonyms for apt configuration options CONF_MAP = { "autoupdate" : "APT::Periodic::Update-Package-Lists", "autodownload" : "APT::Periodic::Download-Upgradeable-Packages", "autoclean" : "APT::Periodic::AutocleanInterval", "unattended" : "APT::Periodic::Unattended-Upgrade", "max_size" : "APT::Archives::MaxSize", "max_age" : "APT::Archives::MaxAge" }
Close