NFS file sharing server and client on Ubuntu Linux

When you want to share files between Linux and Windows machines you don't have a lot of choice, you end up using Samba. This situation is very common so most Linux distributions including Ubuntu Linux make configuring Samba a breeze. But what if you want to share files between Linux PCs? Sure you can use Samba but you have more flexible and faster choice - NFS (Network File System). In this article I'll show you how to do basic NFS server and client setup on Ubuntu Linux and other Ubuntu based distributions.

Continue reading

Configure MySQL and Apache not to start at boot on Ubuntu Linux

MySQL logoI often do my web development on the move using my laptop. Because of that I must run Apache with PHP and MySQL servers on both my desktop and my laptop PC. You can probably guess that this doesn't help to conserve my laptop battery so I've configured my laptop not to start MySQL and Apache automatically at boot. Instead I start those services manually when I plan to do some coding. In this article I'll show you how to configure your Ubuntu based PC to do the same.

Continue reading

Change WordPress RSS Widget refresh interval

AskUbuntu LogoYesterday I've added AskUbuntu RSS Feed to TechyTalk.info sidebar to display feed of Ubuntu related questions with links to answers all provided by the Ubuntu community. This is really useful service. I've used WordPress RSS widget to display this RSS feed. The problem I've ran into was that WordPress RSS widget feed was refreshing only once in every 12 hours and for my purpose this is not often enough. In this article I will show you how to change WordPress RSS widget refresh interval.

Continue reading

Mount remote share at login on Ubuntu Linux using gvfs-mount

In this article I'm going to show you how to mount remote shares at login as regular user Ubuntu Linux using gvfs-mount. To mount shares at boot (as root user) you would normally edit fstab, but to automatically mount shares as regular user with your shares password inside Gnome keyring you would use gvfs-mount. I will also show you how to make sure that your share password is stored inside "login" keyring so your share could be mounted at login without requiring you to enter any password. Continue reading

Configure MySQL to keep log of all queries on Ubuntu Linux

MySQL logoIn this article I will show you how to enable keeping general log of all SQL queries for MySQL DBMS on Ubuntu based operating systems. I find this very useful when debugging Ajax powered applications like my Quick Chat for WordPress. This way it is also easier to understand how application works by monitoring SQL queries it uses. So lets get started...

Continue reading