Tag: debian
When copying a large file on Linux transfer hangs at the end… And you want to f**king kill someone.
There’s an annoying bug in almost every Linux distribution I’ve worked with. When your copying a large file to usb device (pendrive etc.) it hangs at the end (I mean it haaaaaaaaaaaaangs). I’ve found a solution that works on Elementary and Ubuntu (at least). Simply paste this two commands in your terminal: Add this to […]
Bulletproof method of how to convert Raspberry Pi into kiosk
I’ve tried lots of tutorials but nothing seems to work with newer versions of Raspbian. So I’ve decided to write my own simple tutorial on this matter.
Easiest way to headless Debian
This article will provide instructions for anyone interested in using headless Debian (or any derivatives).
Problems with internet connectivity on Debian guest
When you’re experiencing problems with internet connection on VirtualBoxe’s guest hosts. double check your gateway settings. Here are commands that may help you: ip route del default ip route add default via [gateway address] dev [device name] And to list available interfaces: ip address
How to unfreeze KDE’s plasmashell?
I’m using Debian 9.4 and this freaking KDE5 is freezing very often! What you can do when your desktop stops responding? Restart computer? Use ALT+CTRL+F1…12? Nah! There’s a better solution! Simply edit your ~/.bash_aliases: nano ~/.bash_aliases And append to it: alias restart-plasma=’kquitapp5 plasmashell && kstart plasmashell’ Now whenever your plasma desktop starts trolling you, go to your console and […]
Improvised Pomodoro Technique® timer on KDE based Linux…
There’s no freaking working tomato timer available on a KDE based Linux distros! Can you believe it? I’ve become a nerdy MacGyver to overcome this.
Permission denied when script is trying to execute ps_files_cleanup_dir
This is pretty common problem. I’ve encountered it on recent version of the Debian operating system. When you see something like that: Notice: session_start(): ps_files_cleanup_dir: opendir(/var/lib/php5/sessions) failed: Permission denied (13) in /mnt/www-data/htdocs/raportMNW/inc/bryanjhv/slim-session/src/Slim/Middleware/Session.php on line 110 You can fix that easily with following Linux commands: sudo nano /etc/php5/apache2/php.ini Now use CTRL+W to find following string session.save_path and configure it […]