[Linux] RDP remote desktop connection to Windows server with file transfer enabled
[Linux] RDP remote desktop connection to Windows server with file transfer enabled: rdesktop -g 1366x700 -r disk:mydisk=/home/$user/$dir/ $IP_ADDRESS
Paweł Szaga home page
[Linux] RDP remote desktop connection to Windows server with file transfer enabled: rdesktop -g 1366x700 -r disk:mydisk=/home/$user/$dir/ $IP_ADDRESS
Bulk image resize using ImageMagick. Install ImageMagick: sudo yum install ImageMagick Change all *.jpg files resolution within 50%: for i in $( ls *.jpg); do convert -resize 50% $i re_$i; done
At first install kernel-tools (provides cpupower tool): dnf install kernel-tools Get current CPU governor: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor List available CPU governors: cpupower frequency-info --governors Get current CPU frequency: cpupower frequency-info or lscpu | grep "CPU MHz" Set performance governor: cpupower frequency-set --governor performance Set powersave governor: cpupower frequency-set --governor powersave Kernel documentation: CPUFreq Governors
Before running GUI application enable root access to display server: xhost +SI:localuser:root Run GUI application using beesu tool: beesu GUIAPPLICATION After running GUI application disable root access to display server: xhost -SI:localuser:root
How to enable TRIM on LVM on LUKS on SSD on Fedora 25 Linux. If you have an SSD disk in your computer and you are using LVM virtual volumes together with LUKS disk encryption, below you will find how to activate TRIM for better SSD performance and longer lifetime. Edit /etc/fstab file and append… Continue reading TRIM on LVM on LUKS on SSD on Fedora 25