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 /
share /
apport /
symptoms /
[ HOME SHELL ]
Name
Size
Permission
Action
_audio_checks.py
8
KB
-rw-r--r--
_audio_data.py
9.54
KB
-rw-r--r--
_audio_mixercontrol.py
3.84
KB
-rw-r--r--
audio.py
7.94
KB
-rw-r--r--
display.py
3.42
KB
-rw-r--r--
dist-upgrade.py
214
B
-rw-r--r--
installation.py
684
B
-rw-r--r--
installer.py
684
B
-rw-r--r--
release-upgrade.py
214
B
-rw-r--r--
security.py
3.1
KB
-rw-r--r--
storage.py
5.12
KB
-rw-r--r--
ubuntu-release-upgrader.py
214
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : installation.py
# ubuntu-release-upgrader related problems # Author: Brian Murray <brian.murray@canonical.com> # (C) 2020 Canonical Ltd. # License: GPL v3 or later. import os def run(report, ui): if not os.path.exists('/var/log/installer'): return with os.scandir('/var/log/installer') as entries: for entry in entries: if entry.name.startswith('subiquity'): return 'subiquity' elif entry.name == 'telemetry': return 'ubiquity' # d-i leaves a few unique things including # lsb-release, hardware-summary, status elif entry.name == 'status': return 'debian-installer'
Close