Select Page

Puenteando routers Asus RT-N56U y TP-Link WR-740N

IP inicial 192.168.3.1 and DHCP server disabled, when the default should be 192.168.1.1. Found without resetting, creating a Shared Wired Connection in Kubuntu and connecting it to the WAN port, to later see the address assigned to the router in ...

Keyboard shortcuts and other DBUS dependent functions stop working

When upgrading KDE to the latest version (de Kubuntu-Backports) DBUS stopped working:qdbus org.kde.amarok /Playerqdbus: could not find a Qt installation of ”Apparently there is a hodgepodge of dependencies now that they are porting everything to QT5, and you need to install..

Kubuntu shows the time in UTC regardless of the selected timezone

The problem (report here) resides in zic, used by the KDE Date and Time module (and other programs), which copies the timezone to /etc/localtime without checking if the original is a symbolic link and therefore, without properly referencing it, so it ends....

Renaming multiple files with Perl’s Regex power

(you can read this publication in spanish here) Useful one-liner to rename multiple files using regular expressions:perl -we ‘$regex = shift(@ARGV); $rep = shift(@ARGV); $rep =~ s/”/\”/g; $rep = qq(“$rep”); foreach (@ARGV) { if (/$regex/)...