Bug Nautilus slow SMB Performance gvfs-smb

If you use Samba as File Share (NAS) Samba mounts often hang by listing huge amount files like Photos. Known Problem is the gfvs-backend is hanging up on switching between smb protocol (smb1-2-3) versions! Faster is to use the cifs Kernel mount without the gnome-backend communication open Terminal enter: id myusername mkdir /home/myusername/nas/ with known id do: Workaround edit /etc/fstab insert: sudo nano /etc/fstab insert at the end !! //192.168.1XX.XXX/nas /home/myusername/nas cifs file_mode=0777,dir_mode=0777,username=myusername,password=XXXX,domain=home.local,uid=10XX 0 0 Now over 50MB’s per second should by possible over gigabit cable. If not needed disable Samba Logging!

Redis Monitoring command line

Open a Console to checkout the IO of the REDIS Socket on Ubuntu Linux do: redis-cli -s /var/run/redis/redis-server.sock at the Prompt enter “MONITOR” ! redis /var/run/redis/redis-server.sock > MONITOR Lines run should be seen.. like 1643798561.129268 [0 unix:/var/run/redis/redis-server.sock] "EXPIRE" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/5cd93670745f7ff4ef4b456cc9c8b126" "3600" 1643798561.130843 [0 unix:/var/run/redis/redis-server.sock] "INCRBY" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/262023e9d503ea4158010bfebc4124bd" "1" 1643798561.131158 [0 unix:/var/run/redis/redis-server.sock] "EXPIRE" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/262023e9d503ea4158010bfebc4124bd" "3600" 1643798561.132725 [0 unix:/var/run/redis/redis-server.sock] "INCRBY" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/84b5072ee7801482b6bf7d661003df87" "1" 1643798561.133044 [0 unix:/var/run/redis/redis-server.sock] "EXPIRE" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/84b5072ee7801482b6bf7d661003df87" "3600" 1643798561.138752 [0 unix:/var/run/redis/redis-server.sock] "WATCH" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/84b5072ee7801482b6bf7d661003df87" 1643798561.139097 [0 unix:/var/run/redis/redis-server.sock] "GET" "98f4dfa05f67a630e9a828ad8a7c30d9/lockfiles/84b5072ee7801482b6bf7d661003df87"  

Nextcloud Owncloud Upgrade Traps

If you use Nextcloud (Owncloud) and you login into the Admin Panel the Updater display you that your Setup is outdated, you MUST handle as follows to PREVENT System Problems: Do FULL-BACKUP the Server Setup before you CHANGE something! Pre-Check Nextcloud Version dependency‘s of PHP-Version and MYSQL Version! Cause Nextcloud offers NO System PRECHECK or Auto-Stop! Login into the Server via SSH Console and go to the /var/www/nextcloud folder. Run: sudo -u www-data php /var/www/nextcloud/updater/updater.phar Read Upgrade Echos on Console Advantage the Console-Version is mostly faster and more stable than the browser! Relogin as Admin to the Nextcloud Panel! In 99% of Problems the […]

WordPress Cleanup Speedup Source Code

Remove all Emoji Code at the Header which is always pulled! (Homecall) go to your themes folder and add last area at functions.php: remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles'); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'admin_print_styles', 'print_emoji_styles' );

Android OS vs Linux Widevine Support on ARM64

If you use a odroid device like my odroid n2 you should know that the OFTEN needed DRM Browser Plugin “Widevine” in NOT available by default for ARM64. Google free Browser Chromium does not support Widevine without hacking (extracting from a Chromebook OS Recovery ARMHf/32bit Image.) I was not able to get it to run on Armbian or ubuntu for odroid. Its much simpler to setup Android and use the Apps like Amazon Video or else.. Google does NOT offer a Widevine to ARM64 CPU Support by default. Try x86 TV Sticks or Boxes like the intel tv stick if […]

Ubuntu Bug NetworkManager openvpn plugin fails

If you setup Ubuntu 18.04 with openvpn you must install all Network Manager Plugins to run a stable VPN do: sudo apt-get install network-manager-openvpn network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager network-manager-gnome This fixes dependencies of Plugins to openvpn like pptp and more! The Syslog does not show any informations whats happening! only like this: vpn-connection[ID-XXXX-XXXX-XXXX-XXXX,”vpn”,34:(tun0)]: VPN plugin: failed: connect-failed (1) seen: 2019/10/31

Bug: AVM Router Repeater Mesh Stream Problems

Since latest Updates of AVM Router Firmware the Devices are sold with MESH Option but this FAILS! Background: Mesh should handle the best Connect between Router + Repeater and used Devices Mesh Service produces own Communication Traffic which is added to your default WIFI TRAFFIC! The Repeaters do NOT offer 3 or 4 seperated WIFI NICs for handling the Traffic If you buy new Repeaters look that they have minimum 4 Channels (2,4+5GHZ to Router and 2,4+5GHZ to the Devices like TV,Laptop and more.. If you have LAN Cables next to the Repeaters, you should prefer at the Repeater LAN-to-WIFI […]

Script DNS Blocker DNSMASQ

If you tested pihole, you perhaps look for a smaller Command Line version? Install dnsmasq by: sudo apt-get install dnsmasq Here DNS Rule Injector Script (copy & paste): blocker.sh # www.linuxonlinehelp.eu 2019 # DNS Blocker for Small Linux with dnsmasq # #!/bin/bash # goto tmp (tmpfs) cd /tmp/ # get URL-Blocklists wget -O blocklist.txt https://v.firebog.net/hosts/Kowabit.txt # get Templates #SET Variables txt='blocklist.txt' IP='0.0.0.0' # set to 0.0.0.0 or to a Webserver with "white Page" showing Text "URL-blocked!! #merge URLs and redirect to wanted IP – Rule creation n=1; while read line; do echo 'address=/'$line'/$IP '>> 02-blocked1.conf ; n=$((n+1)); done < $txt […]

Briar decentralized Peer to Peer Messenger

If you have used Whatsapp, Facebook Messenger, Telegram etc. last time and other Messenger, you perhaps now looking for a more secure Messenger, thats the point to Test Briar Messenger a Peer to Peer Messenger which uses NO SERVER as INTERFACE ! Source: briarproject.org Download-APK ..kick your old Messenger  from the Phone !!  

Pihole DNS Adblocker

If you have outdated PC’s you can give them a Second Life as DNS Adblocker!   You can get the free Software Package at pi-hole.net Don’t buy high priced preinstalled devices on NET cause a lot of the Resellers DONT DONATE the pi-hole Developers Group!!! Advantages: Less Homecalls of all Devices at your Home, like TV’s, Tablets, Phones and more Less Advertisement by Internet Browsing Less Fingerprints on Internet Faster Website Access Live Logview by “pihole -t” shows the Spy’s of your Network Reduce Network Load of all Wifi Routers an Repeaters (MESH LOAD) Reduce Heat and Power Consumption of […]

Android Cleanup NonRoot

If you use a Android Phone you should cleanup by Reset every 6 Month: Remove of Background Apps Remove blown up Updates Remove unused Apps Disable unused Apps preinstalled Raise Security Raise Privacy Reduce burned Bandwith from App Homecalls Use Siteload to reinstall LESS Apps Use Browser against Apps ! Reduce Backlinks of Apps to Cloud Remove Google Account Reset Advertisment-ID at Google Settings Reset Phone Settings, often useful! Disable Mobile Net+Wifi Access to unused preinstalled Apps! Control Homecalls by connect to a OpenWRT Router with iftop! Increase Battery runtime. Remove E-Mail, Social-Media Apps against Viruses over Chat and Mails […]

mj12bot hammer mediawiki

Here some IP’s of some Botnet Servers of mj12bot.com: the Botnet ignores robots.txt and hammers on Mediawiki’s! A sorted output of a Log done with :   cat /var/log/apache2/other*.log|grep MJ | awk '{ print $2 }' | sort | uniq -c | sort -n Output for ufw Firewalls: 162.210.196.97 144.76.3.131 148.251.195.14 5.9.158.195 173.208.157.186 176.31.255.65 178.63.34.189 69.30.198.186 144.76.60.198 40.121.210.108 5.189.152.91 5.9.66.153 69.30.198.242 69.30.205.218 81.109.126.245 192.99.10.47 If this doesn’t help the use “Apache AUTH Basic” to block unwanted access!! It’s easy to setup.

Social Bots the Business Killer

If you have  a small Company and you want to raise up your Startup Business you often asked to buy Support by Developers (eMail) or Big Data Companies (goo, fb .. etc.) to use their Marketing Tools like Social Bots, automated Scripts and more.. But take care this can be your Business Killer cause: Trust is lost if Bots are recognized by the Users too much Ads or Trash Posts forces Humans to leave if trust is gone the Users logoff from current Social Media Channel, for example “fb” loses much Users last time and was enforced to integrate new […]

Impressum Datenschutz-DSGVO-GDPR

Last Update 08.10.2023 www.linuxonlinehelp.eu - Nonprofit Linux PC & Server Support since 2004 Tags: Linux Online Help, Linuxonlinehelp, Linux Support, Linux Hilfe