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 /
libexec /
shotwell /
[ HOME SHELL ]
Name
Size
Permission
Action
shotwell-settings-migrator
1.03
KB
-rwxr-xr-x
shotwell-video-thumbnailer
14.3
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : shotwell-settings-migrator
#!/bin/sh ################################################################################ # # Copyright 2016 Software Freedom Conservancy Inc. # # This software is licensed under the GNU LGPL (version 2.1 or later). # See the COPYING file in this distribution. # # Helper script to copy settings data from /apps/shotwell/ to # /org/yorba/shotwell/ # # NOTE: this should only be run ONCE as part of the upgrade process; otherwise, # any stale data in the old location may be inadvertently copied over again, # overwriting newer data. # ################################################################################ sec_since_epoch=`date +%s` temp_file_path_prefix=/tmp/shotwell-migrate-settings-path- temp_file_path=$temp_file_path_prefix$sec_since_epoch # Copy from deprecated path... dconf dump /apps/shotwell/ > $temp_file_path # ...and into officially-blessed one. dconf load /org/yorba/shotwell/ < $temp_file_path # Clean out the stale paths... dconf reset -f /apps/shotwell/ # temp file not needed anymore, zap it. rm -f $temp_file_path
Close