If you get this irritating pop-up all the time, go to programs and type âPasswordâ a program utility called âPassword and keysâ will be displayed. Right click on the displayed item called âLoginâ. This will ask for the old and new password. If you have not changed your user password, just enter the âŠ
Read more âTech
Posts tagged with
Find and delete files
find . -type f -iname “file(s)-to-delete” -exec rm -f {} ; The -iname makes it case insensitive, otherwise use -name. Of course you can also move them to say /tmp rather than deleting find . -type f -iname “file(s)-to-delete” -exec mv {} /tmp/ ;
Read more âChange to Fedora 17
Recently I installed Ubuntu 12.04 server only to find that the samba server was horribly slow. I replaced it with Fedora 15 and it runs like a train. Yes, I know 15 is an old version but for a production site you donât want the latest bugs. Also, howtoforge has a stunningly good article on how to âŠ
Read more âWindow 8? Think again!
Planning to buy a computer with a Windows 8 sticker, think again! Microsoft has said that Windows 8 will ship with a so-called UEFI Secure Boot, a replacement of the old BIOS. This will hurt Linux distributions that donât have the resources to sign everything to meet Microsoftâs unilaterally imposed âŠ
Read more âStrip HTML code
Use the sed terminal command with an input file called say test.html sed 's/<[^>]*>//g' input.html if you want to save the output just do the following sed 's/<[^>]*>//g' input.html > output.txt
Read more â