clickasnap – get paid sharing your images
kamua – fastest way to resize yout videos
how to install xibo as a docker container
Find out whether MySQL, or MariaDB service is used: # systemctl list-unit-files | grep -E ‘mysql|mariadb’ mariadb.service enabled Create an override for the service file from the previous step: # systemctl edit mariadb.service Note: In case mysql.service, or mysqld.service was displayed on the previous step, replace “mariadb.service” with it. Add the following content to the opened text editor and save the file: … Read more
https://bootswatch.com/
https://unsplash.com https://generated.photos https://pexels.com
Basic syntax of rsync command # rsync options source destination Some common options used with rsync commands -v : verbose -r : copies data recursively (but don’t preserve timestamps and permission while transferring data -a : archive mode, archive mode allows copying files recursively and it also preserves symbolic links, file permissions, user & group ownerships and timestamps … Read more
Installing Samba on CentOS Samba is available from the standard CentOS repositories. To install it on your CentOS system run the following command: sudo yum install samba samba-client Once the installation is completed, start the Samba services and enable them to start automatically on system boot: sudo systemctl start smb.servicesudo systemctl start nmb.service sudo systemctl … Read more
The list includes many PC disk images, but also memory images, network packets, mobile phone and drone image data, and email data. Image data provided by NIST for forensics The CFReDS Project https://www.cfreds.nist.gov/ The CFReDS Project This is a forensic dataset provided by NIST called “Computer Forensic Reference Data Sets (CFReDS)”. It’s probably one of … Read more
To set the timezone in Linux, update /etc/localtime with the appropriate timezone file from /usr/share/zoneinfo. rm -f /etc/localtime ln -sf /usr/share/zoneinfo/Europe/Rome /etc/localtime This would set your time zone to Europe/Rome.