It's simple: Login remotely to your Linux based home computer via ssh. Create a text file with the contents you want to say in it. vi ilu.txt Lisa, I love you. :wq Then run festival with the following arguments festival --tts ilu.txt If all runs well your computer...
GNU/Linux
Error: Missing Dependency: libc-client.so.2006 is needed by package php-imap
Error: Missing Dependency: libc-client.so.2006 is needed by package php-imap To fix it I did: # remove the package that is causing the complaint yum remove php-imap # do the update yum update # install php-imap it will then pull in the correct version of...
crontabs/username: Permission denied
I just had an issue where I tried to issue crontab -e as a user and got crontabs/username: Permission denied The problem was traced to deleting an old account that had a crontab then recreating the account later which had a different user id. Note here how the...
Using Knoppix to remove the GRUB password option and blank the root password
I went on three weeks holiday recently and when I got back I had forgotten what I had configured as the GRUB and root passwords on a CentOS 5.1 box. I ended up using two FAQ's that I stored for future reference. One I had written -...
QCAD uses /etc/printcap which doesn’t have correct printer entries
Just thought I would share my experiences with a printing problem I was having. QCAD (at least some versions) seems to look at /etc/printcap to populate the printing dialog box. I have had an issue where the wrong printer was being listed in the print dialog (one that...
Ubuntu 8.04 Devel – Acrobat Reader 8.1.2
I had an issue with Adobe Reader 8.1.1 printing Landscape layout on Portrait paper (not rotating properly). However it appears that the new 8.1.2 has fixed this. So if you are having problems with printing PDF's under Ubuntu 8.04 Devel try upgrading to Adobe Reader...
Sometimes xpdf does the job where Acrobat Reader 8.x can’t
Just about everything in the GNU/Linux world is working pretty much as advertised these days. I had an interesting issue with trying to print a restaurant menu from Legends Grill at The Vintage which incidentally is where we had our Wedding reception a few years ago...
Current Reading or “Let’s get down to business”
Hi Mum 🙂 These are the current titles I am ingesting. The E-Myth Revisited - Michael Gerber How to Grow Your Business by taking 3 Months Off - Louise Woodbury & William De Ora How to Organize and Operate a Small Business in Australia - John English As the economic...
Avoiding arguments while sharing a computer with your wife.
My Wife and I share a workstation which is a Ubuntu 8.04 development release box and while my wife prefers Windows, we are sharing till we get another computer. Anyway the way I have it configured, is to have one user account on the computer which is configured for...
How to attach a file to an email using the Linux mail command
How to attach a binary file to an email using the Linux mail command: ( cat bodyofmail.txt; uuencode filetoattach attachmentnameinemail ) |\ mail -s "The subject" [email protected] # for example # if I had the text body of my email in "body.txt" # and I had a PDF file...