Tony Narlock Living life in the cloud

28Mar/100

5 simple tips for KDE 4

These are the first things I do after get a fresh KDE install.

Double-click to open applications

Make applications on desktop and Dolphin open with double-click.

Open up Dolphin. Go to Settings. Configure Dolphin.

Go to Navtigation pane. Double-click to open. Apply. OK.

Change your background

Right-click on the desktop and go to Desktop Settings.

Pick a fresh desktop theme

In KDE 4.3 you right click the desktop, go to Desktop Settings.

In KDE 4.4 System Settings -> Appearance -> Style -> Workspace.

As a ludite. KDE 3.5's interface is my favorite.

If that's not your cup of tea, you can download your own, sorting the online KDE library by rating and popularity. Surprisingly, Klassik isn't very popular.

Launch Chrome in privacy mode by default

Launching Google Chrome or Chromium in incognito mode is great for privacy.

Right-click an icon on your desktop or taskbar. Go to Icon Settings. Go to the Application tab. Under Command, append -incognito.

Use huge icons

Make huge icons on the desktop for your favorite apps.

I find this hilarious yet useful.

Go to the KDE start menu, search for your favorite apps and add them to desktop.

You will probably want to use Large, transparent png icons for Chrome, Chromium and Firefox.

27Mar/100

Privacy tips for computer data and storage

Computer's are akin to personal black boxes. It records things without you consenting or knowing. A common folk would think they deleted a file, when it's merely be cleared from sight. Files aren't gone until they're overwritten. What's more, applications leave databases, caches, and other logfiles which are impossible to keep track of.

You can help protect and maintain privacy of your data using various methods:

  1. Avoid creation of extraneous logs - Use privacy mode in your browsers, avoid making logs in the first place. Watch out, vendors are always finding new ways to sneak spyware into your PC.
  2. Erase files securely - Overwrite data with scrambled junk, then delete.
  3. Overwrite empty space - Inflate a file with zeroes or random junk to swallow up any remaining data.
  4. Use light encryption for your Hard Disk or User folder - Using crypto will offer piece of mind if a laptop is lost or stolen.

Adobe Flash (cross-platform)

(Formerly known as Macromedia Flash.)

Delete flash cookies (Locally stored objects)

Flash settings manager will allow you to delete flash cookies.

Mozilla Firefox (cross-platform)

Grab, Flashblock and BetterPrivacy.

Locally Stored Objects

Get BetterPrivacy.

Flash junk

Grab Flashblock.

Javascript

Grab NoScript.

Advertisements

Grab Adblock Plus.

Launch Firefox by Privacy Mode by default

Launch Firefox.

In the location bar, type about:config.

It will "void your warranty", click OK.

In "Filter", type "private" and hit enter. This will help filter all those config variables.

Change browser.privatebrowsing.autostart to true.

Change browser.privatebrowsing.dont_prompt_on_enter to true.

Microsoft Windows

Internet Explorer 8 in Privacy Mode

Right-click an Internet Explorer Icon. Properties.  Shortcut.  After target, add " -private". Apply, OK. Click the icon, IE should launch in InPrivate mode.

By right clicking the IE icon on your taskbar, you'll also have the "task" of starting IE in inprivate mode. See this also.

Use Chrome in Incognito mode.

Go into your start menu, search "Chrome". Google Chrome will appear, right click. Go to properties, append (add to the end) -incognito.

Click the wrench icon, Go to Options. Click the "Privacy tab", Uncheck everything under privacy.

Your shortcut will look something like: C:\Users\<Your username>\AppData\Local\Google\Chrome\Application\chrome.exe -incognito

Pin this new shortcut to your taskbar.

Also consider using a privacy-friendly version of Chromium, SRWare Iron has been getting a lot of attention lately.

Shred documents

Download Eraser. Install it. You will now be able to right-click your trash bin to secure delete those files.

Download Ccleaner, go to "Options", Go to "Settings". Change Secure Deletion to "Secure file deletion (Slower)" and choose DOD 5220.22-M (3 passes). Check everything except "Wipe free space", even your form histories, close your browsers, Analyze. Run cleaner.

Wipe your free space

In CCleaner,  Every week or so, check "Wipe free space" then Run Cleaner.

Encrypt your Hard Drive

In 10+ useful applications for Windows 7 I recommended Truecrypt as a free solution for HD encryption. This How-to can help.  With truecrypt you can create containers for your documents and even your whole OS. If you keep a laptop with anything personal or professional on your computer make this a common practice.

Mac OS X

Chrome and Firefox

Use the tips above the Windows section. Firefox will let you go into about:config and change those variables. CoolGeex.com has a helpful post about making an incognito shortcut for Google Chrome.

Delete Locally Stored Objects

Download, install (Drag to Applications) and run Flush.app.

Encrypt your HD

Clear at least half of your hard drive space.

Go into System Preferences. Click Security. Enable Filevault.

Wait like 10 hours.

Secure delete files

Click a Finder Window.

Click File, click Secure Empty Trash.

Grab Cocktail. Drag it to your Applications folder (install) and open.

In Cocktail Preferences, choose to secure delete those files. Schedule it to run nightly and rotate/erase logs, clear browser caches, etc. If you're not open to shelling over a few cents to protect yourself, you can try Onyx.

Wipe your freespace

Open Disk Utility.

Choose your partition on the left. It may be named Macintosh Hard Drive.

Click the Erase tab.

Use Erase free space and run over it at least once. If you have more time, do more passes.

Linux

Chrome and Firefox

Use the tips above the Windows section. Firefox will let you go into about:config and change those variables.

If you use Google Chrome, open ~/.bashrc and append alias chrome='google-chrome -incognito &'. Run source ~/.profile or source ~/.bashrc. Now chrome will run google-chrome in incognito mode.

Encrypt hard drive

Fedora and Ubuntu all offer options on installation to encrypt your /home/ folder. Be sure to pay attention to your install wizard and encrypt them. Remember your password, the encryption is based upon it.

I don't want to go over encryption via pure command line because there is too much chance you can destroy your data if you make a mistake. If you google an article on this, just be sure to go into /home and copy cp -r /home/yourusername /home/yourusernamebackup so your data doesn't just die.

Secure delete commands

Note: These commands are for experienced Linux users. Don't use these unless you can understand what the commands inside mean, or else it's simply too much risk.

Open your terminal of choice. Open .bashrc vim or nano. vim ~/.bashrc.

Append this to the bottom of your .bashrc:

alias deleteeverything='find . -type f -execdir shred -u '{}' \;'
alias salttheearth='dd if=/dev/zero of=junkfile ; rm junkfile'
alias fogettaboutit='shred -u ~/.bash_history'

Run source ~/.profile or source ~/.bashrc. Here is an overview of these commands:

deleteeverything will shred files cursively then delete them. When you're done with this, type rm -rf because the -u flag in shred won't rm folders. This command works relative to the current directory your in. Thanks opentux from LinuxForums.

salttheearth will erase free space by inflating a gigantic file with /dev/zero to fill up all remaining free space, then delete the file. It takes a while. /dev/random can give you better security. Thanks ssd.eff.org.

fogettaboutit will securely delete your .bash_history. When you're done with this, you can exit your term session.

In combo moves, I like to use salttheearth & fogettaboutit.

Safely parting with your old hard drive

Don't sell people equipment with your hard drive data. Destroy it. Buy a cheap one. Find a computer geek friend to help with the hard drive. Go to best buy with your computer (which has your Windows license on a sticker) and ask them to install a windows from an on-hand OEM disc. You just gave someone a cleaner computer.

  1. Secure delete data - delete everything and fill the disk with 0's. Kill Disk is a solution that lets you put the software onto an ISO or floppy to run at boot. Do at least a single run of random data. The more passes and more randomness, the longer it will take. Theoretically, more randomness and passes is more secure.
  2. Physically destroy it - Get a Torx screw driver set. This will help you unscrew the screws that hold the drive together. Many drives now have multiple levels of wafers. Get a hammer to break them. Sand them. Shatter them into a million pieces. Put orange juice and pancake syrup on them. Get creative, make an art project out of it, put the digital flakes into colored sand-filled bottles and sell them at Sea World. Put them in a dumpster. You are secure my friend.

Overkill

Spybot Resident - Spybot resident prompts you everytime a registry alteration is made. This is annoying and unnecessary unless you know computers well enough to understand the warnings.

Norton and other chunky antiviruses - Norton is notorious with slowing and bogging down computers. In my Top 10 applications for Windows I tip my hat to Nod32 for a light, effective and fast AV solution.

Too much encryption - Unless you're really paranoid, is too painstaking. Many encryption appliances simply use your password as a key to encrypt your user folder. Typical people only need very light encryption. However if you have very important data know that using a portable medium is not a good idea, consider consulting professionals.

Updates

Monday May 17th, 2010 - Added Internet Explorer 8 InPrivate Mode.

26Dec/090

10-plus essential applications for Windows 7

As a full-time Linux user, I'm not a very big Windows fan. However, I'd like to present some apps I zealously adhered to over my old days as a poweruser.

When a friend or colleague has a bogged-down system (be it by viruses, badware or general oldness), I often ask if they're willing to Backup their Documents/Music and reformat. This means installing applications over again, but the improvements are always substantial.

Updates

  • March 20, 2010 - Dress up article with some screenshots / images.
  • March 17, 2010 - Added Sumatra PDF, a free, open source PDF viewer.

A note

The install wizards on these programs may bait you into downloading Yahoo! or Ask.com software. If the Terms of Service/Privacy policy in the install wizard says "I agree to xxx and to Installing Yahoo!/Ask.com", Don't check it. Just click next/Install. If you accidentally do, go to Add/Remove apps and uninstall, you don't want them.

Here are some of the apps I download after a fresh OEM install:

Grab all your essentials in one sitting: Ninite

Type (License): Freeware (Proprietary)

Website: http://ninite.com/

This program is a deliverance from the almighty himself. Check the boxes for the programs you want to install and it will create a batch installer. You need internet access to do this. It includes everything from Java and Flash to Dropbox, to VLC, to steam, Open Office, Abiword, Skype, etc.

I could end this post right here, but I'll go on.

Tweaking: TuneUp Utilities 2006-2010

Type (License): $49.00 / Demo (proprietary)

Website: http://www.tune-up.com/products/tuneup-utilities/

The king of all system control apps. Has full features for performance tweaking, removing junk files, optimizing network settings and even theming. The 2010 version even has a turbo mode that removes system services to make your computer zip. It has so many features I can't fit them.

Privacy / Performance: CCleaner

Alternative to: TuneUp Utilities

Type (License): Freeware (proprietary)

Website: http://www.ccleaner.com

This is a free registry/cache/junk file cleaner.

Tip: Make sure you go into settings and choose to "Secure delete". Choose the DoD 3-pass clean.

Tip 2: Consider checking the box to erase "Free space" too. Not all the time because it's time-consuming.

Privacy: Eraser

Type (License): Freeware (Open Source)

Site: http://eraser.heidi.ie/

Description: Delete means delete. Microsoft considers hard drive encryption to be a feature you pay for and its filesystems are extremely insecure (FAT32 has no security, anyone can view anything, NTFS has little). Microsoft is very deceptive that Windows doesn't notify you that you're not really permanently deleting your files until you overwrite them.

Read more about eraser at Stanford's SLAC: http://www.stanford.edu/services/encryption/desktop/windows/securedelete.html

Tip: Make sure to erase any free space on your hard drive as well.

Tip 2: You can also right click your Recycle bin and securely erase your bin.

Privacy: Truecrypt

Alternative to: Microsoft Bitlocker

Type (License): Freeware (Open Source)

Site: http://truecrypt.org

Even though you'll never need it. You never know when you'll get blindsided. You could lose your laptop, have it stolen, etc. Even having one layer of weak encryption will throw off thieves and give you great peace of mind.

Lite, Effective Antivirus: NOD32

Type (License): $40/yr Subscription (Proprietary)

Website: https://www.eset.de

ASM-based virus scanner. Very low memory footprint. Fast.

It also works great when using Windows 7 as a guest (a la VirtualBox)

Free Antivirus Alternatives

AVG Free

Type (License): Free (Proprietary)

Website: http://free.avg.com/de-en/homepage

ClamAV

Type (License): Free (Open Source)

Website: http://clamwin.com

Micro$oft Security Essentials

Type (License): Free (Proprietary)

Website: http://www.microsoft.com/Security_Essentials/

Audiophiles: Foobar

Type (License): Freeware (License)

Website: http://www.foobar2000.org/

Simple, playlist-based music player with a low memory footprint.

Torrenting: µtorrent

Website: http://www.utorrent.com

Type (License): Freeware (Proprietary)

Torrent client with tons of features, oddly small size and low-memory footprint. Very stable.

Office Essentials: Open Office

Alternative to: Microsoft Office

Website: http://www.openoffice.org

Type (License): Freeware (License here)

Get all your essentials with OpenOffice. Microsoft Word, Excel and Powerpoint are too pricy.

PDF Viewer: Sumata

Alternative to: Adobe Reader

Website: http://blog.kowalczyk.info/software/sumatrapdf/index.html

Type (License): Freeware (Open source)

This is a very lite, stable PDF viewing solution.

Gaming: Steam

Alternative to: Greedy retailers like Best Buy and Gamestop

Type (License): Freeware (Proprietary)

DRM gaming. But steam takes the pain out of it. No limits on redownloading the software you purchase. Stable. Time-tested. (You can grab this with Ninite too.)

You have to pay for the games, of course. However the long-term benefits of using Steam make it worth it. It saves you from scratched CD's and managing all your cd-keys.

Steam store also offers generous software bundles of related games (Civilization, Valve, etc) and can save you tons of money.

Virtualization / Guest OS: Virtualbox

Alternative to: VMWare Workstation, VirtualPC

Type (License):  Freeware (License details here)

Website: http://www.virtualbox.org

If you want to try out Linux or keep a sandbox'd operating system to do programming on, VirtualBox is will accept Windows, Linux and *BSD as guest OS's. It'll run on Linux too.

25Dec/090

10 reasons why ThinkPads are my favorite line of notebook

When a friend or colleague is laptop or computer hunting I always try to recommend my favorite products and websites in order to help accommodate them. If you're great quality laptop, you can't beat the Lenovo (Formerly IBM) ThinkPad.

I work regularly on a X200 Tablet and a T400 refurbished from the Lenovo Outlet. Suffice it to say, I am a very satisfied Lenovo customer.

  1. Time tested. Thinkpads have had the same characteristic look for ages. 1992 to be mm-specific. So that's about 18 years, more or less.
  2. Industry tested. Many corporations and government agencies swear to Thinkpads. They even use them in space.

    Space-approved.

  3. No odd keyboard placement or other gotchas. I have an ASUS N50V and I hate the swapped Fn and control keys keys. Why don't they just use Fn-Ctrl? When they change the order on laptops you use regularly it's annoying.  Also other laptops are designed in such an odd way, non-standard keyboard placement, mouse in a weird area, etc. For office professionals, sometimes standard is the most ergonomic fit you can get.
  4. Consistent design. Other laptops spend too much time "rounding" out their looks with shiny plastic glosses. Manufacturers do this to improve the look when selling them on the floor as retailers like Best Buy and Fry's.
  5. Great build quality. Carbon-fibered reinforced plastic cases. Also, newer models have a Magnesium-alloy roll cage to protect the internals. (Thanks Wikipedia, was wondering what they were made from :) ).
  6. Price point. While some configurations can be pricey, most are fairly economical. Use the Lenovo Outlet for refurbished/used or go for stock models. These laptops will include a variety of unique configurations; whatever is on the shelf.
  7. Decent hardware. Lenovo isn't perfect, but relative to other manufacturers who screw you over with Broadcom and other odd hardware you can't trust, they'll give you a system you can expect. They use Intel Centrino (Chipset, Mobo, Wireless) on most laps. So this works well.
  8. Wireless-friendly. Newer laps have support for wireless 3g/wimax. You can look for this in outlet or customize for this. My T400 has a 3g and wifi. My X200 has a wimax and a regular wifi card.
  9. Linux-friendly. Currently I'm running Kubuntu Karmic AMD64 on both my X200 and T400. Also, for a great Linux documentation source, check out ThinkWiki.
  10. No camera option. What is the problem with Dell/HP/etc. with understanding that many places have a no tolerance policy for cameras? Ever try going to a court house with a camera on your lappy? They'll turn you around. Helpful hint: Lenovo Outlet lets you search via a "No Camera option"

My hope is Lenovo carries on the legacy of the ThinkPad into the future.

(Thinkpad Image courtesy of Goldman40, Wikimedia Commons)

Filed under: Featured, Hardware No Comments