deepin - UNIX.Cafe https://unix.cafe/wp/en/tag/distro-deepin/ Thu, 21 Dec 2023 09:23:11 +0000 en-US hourly 1 https://wordpress.org/?v=7.0.4 131122441 Securely remove files using 4 tools (Paranoid mode) https://unix.cafe/wp/en/2020/07/securely-remove-files-using-4-tools-paranoid-mode/?utm_source=rss&utm_medium=rss&utm_campaign=securely-remove-files-using-4-tools-paranoid-mode https://unix.cafe/wp/en/2020/07/securely-remove-files-using-4-tools-paranoid-mode/#respond Wed, 08 Jul 2020 21:00:13 +0000 https://unix.cafe/wp/?p=386 Let’s see how to create a tiny BASH script as a result of combining scrub, wipe, shred and srm to securely remove files on Linux, FreeBSD and MacOSX. Let’s call it the Paranoid mode. 😉 Requirements: We need to have the following packages installed on our system. scrub: how to install scrub. wipe: how to […]

The post Securely remove files using 4 tools (Paranoid mode) first appeared on UNIX.Cafe.

The post Securely remove files using 4 tools (Paranoid mode) appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/securely-remove-files-using-4-tools-paranoid-mode/feed/ 0 386
Toggle between CPU powersave and performance in Linux https://unix.cafe/wp/en/2020/07/toggle-between-cpu-powersave-and-performance-in-linux/?utm_source=rss&utm_medium=rss&utm_campaign=toggle-between-cpu-powersave-and-performance-in-linux https://unix.cafe/wp/en/2020/07/toggle-between-cpu-powersave-and-performance-in-linux/#comments Tue, 07 Jul 2020 21:00:16 +0000 https://unix.cafe/wp/?p=379 If you’re using an application that needs lots of CPU power, or you’re a gamer, you need to be able to switch your CPU mode (governor) from power-saving to full-performance mode. And of course vice-versa. Usually your Linux CPU scaling is set to powersave by default, which is more than enough and sufficient for most […]

The post Toggle between CPU powersave and performance in Linux first appeared on UNIX.Cafe.

The post Toggle between CPU powersave and performance in Linux appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/toggle-between-cpu-powersave-and-performance-in-linux/feed/ 1 379
Securely remove files using scrub tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-scrub-tool/?utm_source=rss&utm_medium=rss&utm_campaign=securely-remove-files-using-scrub-tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-scrub-tool/#respond Mon, 06 Jul 2020 21:00:20 +0000 https://unix.cafe/wp/?p=361 scrub is one of the most popular tools that specialized in securely remove files on UNIX, MacOS X and Linux distros. Let’s see how to install and use it to prevent or at least decrease the possibilities of recovering them. As usual, become a root or use sudo whenever is needed with the following commands. Installation: scrub too […]

The post Securely remove files using scrub tool first appeared on UNIX.Cafe.

The post Securely remove files using scrub tool appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/securely-remove-files-using-scrub-tool/feed/ 0 361
Securely remove files using wipe tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-wipe-tool/?utm_source=rss&utm_medium=rss&utm_campaign=securely-remove-files-using-wipe-tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-wipe-tool/#respond Sun, 05 Jul 2020 21:00:52 +0000 https://unix.cafe/wp/?p=359 Let’s learn how to install and use the wipe tool on our UNIX, MacOS X and Linux distros to securely remove files to prevent or at least decrease the possibilities of recovering them for the sake of privacy. Wipe is a secure file wiping utility. There are some low level issues that must be taken […]

The post Securely remove files using wipe tool first appeared on UNIX.Cafe.

The post Securely remove files using wipe tool appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/securely-remove-files-using-wipe-tool/feed/ 0 359
Securely remove files using srm tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-srm-tool/?utm_source=rss&utm_medium=rss&utm_campaign=securely-remove-files-using-srm-tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-srm-tool/#respond Sat, 04 Jul 2020 21:00:08 +0000 https://unix.cafe/wp/?p=357 In this tutorial we will learn how to install and use the srm command line tool to securely remove files on our system. To prevent or at least decrease the possibilities of recovering them. srm (or Secure Remove) is a command line utility for Unix-like computer systems for secure file deletion. Source: Wikipedia As usual, become a root or use sudo whenever is needed […]

The post Securely remove files using srm tool first appeared on UNIX.Cafe.

The post Securely remove files using srm tool appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/securely-remove-files-using-srm-tool/feed/ 0 357
Securely remove files using shred tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-shred-tool/?utm_source=rss&utm_medium=rss&utm_campaign=securely-remove-files-using-shred-tool https://unix.cafe/wp/en/2020/07/securely-remove-files-using-shred-tool/#respond Thu, 02 Jul 2020 00:57:38 +0000 https://unix.cafe/wp/?p=350 In this tutorial we will learn one of the most popular tools to securely remove files from disks on Linux and UNIX systems. Which called shred. To prevent or decrease the possibilities of recovering them. shred is a Unix command that can be used to securely delete files and devices so that it is extremely difficult to recover them, even […]

The post Securely remove files using shred tool first appeared on UNIX.Cafe.

The post Securely remove files using shred tool appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/07/securely-remove-files-using-shred-tool/feed/ 0 350
How to backup your website from terminal https://unix.cafe/wp/en/2020/06/how-to-backup-your-website-from-terminal/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-backup-your-website-from-terminal https://unix.cafe/wp/en/2020/06/how-to-backup-your-website-from-terminal/#respond Wed, 03 Jun 2020 21:00:49 +0000 http://unix.cafe/wp/?p=227 Why don’t we make the backup process as simple as possible? I mean by issuing one command, the website contents and database should be backed up remotely and locally. Let’s see how can we achieve this. Intro: If we think about it, we’ll know that we need two files/scripts. One of them should stay in […]

The post How to backup your website from terminal first appeared on UNIX.Cafe.

The post How to backup your website from terminal appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2020/06/how-to-backup-your-website-from-terminal/feed/ 0 227
HowTo: Manage a service in systemd, SysVinit, Upstart, runit and OpenRC https://unix.cafe/wp/en/2017/04/howto-manage-a-service-in-systemd-sysvinit-upstart-runit-and-openrc/?utm_source=rss&utm_medium=rss&utm_campaign=howto-manage-a-service-in-systemd-sysvinit-upstart-runit-and-openrc https://unix.cafe/wp/en/2017/04/howto-manage-a-service-in-systemd-sysvinit-upstart-runit-and-openrc/#respond Fri, 31 Mar 2017 21:00:35 +0000 http://unix.cafe/wp/?p=156 In this howto, you’ll learn the very minimum needed commands you’d have to know in order to manage your system’s startup processes (services). Whether it was Systemd, SysV init, Upstart, runit or OpenRC. First, please note that: Whenever you see {SERVICE_NAME} it’s a variable and meant to be replaced with actual service name, like sshd, […]

The post HowTo: Manage a service in systemd, SysVinit, Upstart, runit and OpenRC first appeared on UNIX.Cafe.

The post HowTo: Manage a service in systemd, SysVinit, Upstart, runit and OpenRC appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2017/04/howto-manage-a-service-in-systemd-sysvinit-upstart-runit-and-openrc/feed/ 0 156
dpkg : 10 practical common examples of dpkg command https://unix.cafe/wp/en/2017/01/dpkg-10-practical-common-examples-of-dpkg-command/?utm_source=rss&utm_medium=rss&utm_campaign=dpkg-10-practical-common-examples-of-dpkg-command https://unix.cafe/wp/en/2017/01/dpkg-10-practical-common-examples-of-dpkg-command/#respond Sat, 31 Dec 2016 21:00:43 +0000 http://unix.cafe/wp/?p=20 If you happen to be a Debian or one of its based distros user (like: Ubuntu, Linux Mint, deepin, Elementary OS, Zorin OS, SparkyLinux … etc), you should definitely know the essential uses of dpkg command. dpkg is the software at the base of the package management system in the free operating system Debian and its numerous derivatives. dpkg […]

The post dpkg : 10 practical common examples of dpkg command first appeared on UNIX.Cafe.

The post dpkg : 10 practical common examples of dpkg command appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2017/01/dpkg-10-practical-common-examples-of-dpkg-command/feed/ 0 20
How to solve the LC_ locales issue in Debian https://unix.cafe/wp/en/2016/12/how-to-solve-the-lc_-locales-issue-in-debian/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-solve-the-lc_-locales-issue-in-debian https://unix.cafe/wp/en/2016/12/how-to-solve-the-lc_-locales-issue-in-debian/#respond Wed, 30 Nov 2016 21:00:29 +0000 http://unix.cafe/wp/?p=17 Does your Debian‘s based distro such as Ubuntu, Linux Mint, Elementary OS, Linux Lite, deepin, antiX, Zorin OS, LXLE, Peppermint OS and SparkyLinux,  complain about LC_* locales. Like the following complaining message. perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = "en_US:en", LC_ALL = (unset), LC_MESSAGES = "en_US.UTF-8", LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: […]

The post How to solve the LC_ locales issue in Debian first appeared on UNIX.Cafe.

The post How to solve the LC_ locales issue in Debian appeared first on UNIX.Cafe.

]]>
https://unix.cafe/wp/en/2016/12/how-to-solve-the-lc_-locales-issue-in-debian/feed/ 0 17