Linux - get external IP address
Linux - get external IP address: curl ifconfig.co
Paweł Szaga home page
Linux - get external IP address: curl ifconfig.co
Upgrading Nextcloud from CLI on Linux system with systemd. /var/www/html/owncloud/ - Nextcloud installation directory apache - HTTP server service user cd /var/www/html/ wget https://download.nextcloud.com/server/prereleases/nextcloud-13.0.0beta1.zip systemctl stop httpd rm owncloud-old/ -rf mv owncloud/ owncloud-old/ unzip nextcloud-13.0.0beta1.zip mv nextcloud/ owncloud/ mv owncloud-old/data/ owncloud/data/ cp owncloud-old/config/config.php owncloud/config/config.php chown apache: owncloud/ -R chcon -R -t httpd_sys_rw_content_t /data/var/www/html/owncloud/config chcon -R… Continue reading Nextcloud - upgrade to 13.0beta1
VMware ESXi restarting Management Agents to resolve issues with DRS: /etc/init.d/hostd restart /etc/init.d/vpxa restart
CentOS 7 without GUI - disable suspend on laptop lid close Inside /etc/systemd/logind.conf configuration file set following option: HandleLidSwitch=ignore You can find more info in manual: man logind.conf
Using Amazon AWS S3 via s3cmd tool Listing containers: ./s3cmd ls Lisitng container (including MD5 checksum): ./s3cmd ls s3://container/ --list-md5 Uploading large files: ./s3cmd put /home/user/path/file s3://contianer/file -v