Feb 26, 2014

How To Remove Encryption on Your Android Device

Android ... 'Apple's nightmare' (7 September 2...
(Photo credit: marsmet474)
I wrote a while back how I had been using encryption on my Samsung Galaxy S3 (Sprint) Android device, but after a while it proved to be more trouble than it was worth. I am currently running CyanogenMOD 10.2.1 and I finally decided it was time to remove the encryption.

Before I go any further, it is important to note that I don't know of any way of doing this that won't wipe your device and remove any customizations. Therefore I STRONGLY recommend that you backup anything important before proceeding.

So first off, if you boot into recovery by holding the up volume + home + power when you start the device, you will notice that if you select the option to format data and cache it will error out with the encryption. That is fine for now, because we need it to error out so we can find the mount point in the log.

Second, you are going to need to have adb installed. You can find out how to do that here for Windows, or if you are using Ubuntu like me just run the folowing to install it:
# sudo add-apt-repository ppa:nilarimogard/webupd8
# sudo apt-get update
# sudo apt-get install android-tools-adb android-tools-fastboot
After that, do the following:
  • Boot into recovery
  • Select Wipe Data/Factory Reset
  • Let it error out, then select Advanced > Show Log
  • You should see something like failed to mount /dev/block/mmcblk0p12. Note: Your mount point may be different, use whatever the log says
  • Plug your phone into your computer with the USB data cable
  • From a terminal (or command prompt) run adb shell and you should get a prompt with a # symbol
  • Next run mke2fs -t ext4 /dev/block/mmcblk0p12. Note: Be sure to replace the path with the one you got from the log!
  • After that is complete you can now reboot your phone.
Encryption will now be gone, and your phone will be factory reset.

Do you know of a way to remove encryption without wiping your device? If so, let us know in the comments!

Feb 25, 2014

Top 4 Apps to Help Busy Moms Keep Tabs on Kids

Back in the good ol' days, moms could figure out where their kids had run off to by opening the front door, walking out on the porch and hollering their names as loudly as possible to get their attention.

These days, it's more challenging to keep tabs on kids, especially for moms who work outside of the home. Fortunately, with the help of some handy dandy technology—in the form of useful apps—working mothers have a virtual way of keeping a close eye on their kids, which doesn’t involve shouting out their names and startling co-workers.

The following four apps can provide working mothers with some much-needed peace of mind when it comes to keeping track of the kids.

Find My Kids ~ Footprints

This nifty app uses GPS in real-time and can help parents keep track of where their kids are going, as long as they are carrying their cell phone. The app can be used with any popular service and phones, such as T-Mobile cell phones. If a child is heading to the park to meet friends after school, the app also can confirm that she got there. The app is free to use but does require a subscription for the tracking feature.

Family Tracker

This app will not only keep tabs on the kiddos, but also the entire family. It features a separate messaging system that helps busy working moms contact their kids, and find out if and when they actually read the message. For moms who cannot resist the urge to call their child’s name, the app features an attention-grabbing siren sound sure to alert their son and daughter that mom is trying to reach them. The app costs $5.99 and needs to be purchased for each phone that will be tracked.

Sprint Family Locator

While many tracking apps require mom to have a smartphone, the Spring Family Locator can work on any Sprint phone, smart or not. Families can use a free trial of the service for 15 days, and then pay $5 a month to track up to four cell phones. For moms who are not quite ready to buy their child a smartphone, this offers them the ability to keep track of where their son or daughter is with a regular cell phone.

iHound Software

Most moms like it when their kids send them a text or call when they get to their friend’s house, or wherever they are heading. But as most moms know quite well, kids can be forgetful about doing this, which can lead to worry. The iHound Software lets parents choose to get an automatic email when the child arrives at the determined location. This way, mom is happy, and if the child forgets to notify her, he or she will not be mortally embarrassed when mom calls to check in.


Feb 24, 2014

Awesome Script To Remove All Unused Kernel Images In Ubuntu to Free Disk Space in /boot

Tux, the Linux penguin
(Photo credit: Wikipedia)
I thought I had written about this in the past, but I guess I didn't as I couldn't find any posts about it here on Bauer-Power... I digress.

Anyway, the other day I had to install a kernel update on my work laptop that is running Xubuntu, and it wouldn't download because I had run out of space in /boot. That's almost always caused from having too many kernel image files saved there from previous updates.

Well I found a really cool one-line command that removes all kernel images except the current one. That command is:
export KERNEL="$(uname -r | grep -Po '([0-9\.\-]*[0-9])?')"; dpkg --get-selections | grep -E "linux-(header|image).*" | grep -iw install | sort | grep -v "$KERNEL" | grep -v "lts" | sed 's/install//g' | xargs dpkg -P
You can put that in a convenient script if you like for future use!

[Via Raymii]

Feb 17, 2014

How To Change The Truecrypt Volume Password in Linux

I like to periodically change passwords on everything, especially on my personal email server. Changing passwords regularly keeps the bad guys, and the NSA guessing.

On my email server, the mail store is actually stored in an encrypted Truecrypt volume. Also, my email server is running on Linux so that means I have to do everything via a terminal.

So here is how I change that password:

With the Truecrypt volume dismounted run the following:
#truecrypt -C tc-volume.tc
Follow the prompts to change your password! Simple right?!

Make sure you change the volume name above with your Truecrypt volume name.

Feb 14, 2014

How To Send Emails At A Specified Time In Mozilla Thunderbird

I prefer using Linux over Windows. I even use it on my work computer, and my preferred email client is Mozilla Thunderbird.

Well the other day I wanted to have an email send out at a specified time (Don't ask me why) and I knew I could do it in Microsoft Outlook, but I didn't have that. I had Thunderbird, and it doesn't have that functionality built in.

That's ok, because like just about anything else with Thunderbird, there is a plugin for it! The plugin I found that you can use to delay sending an email is called Send Later.

To schedule what time your email sends, draft and email like usual; then with the cursor in the message area press CTRL + SHIFT + ENTER and the Send Later dialogue box pops up where you can schedule what time your email will send.


Once your email is scheduled, Send later will save it to your drafts folder until it is ready to send. It works like... well, like clockwork!

Do you ever have to schedule messages? Do you use Thunderbird too? do you use a different plugin? If so, which one? Let us know in the comments!

How To Password Protect PDF's in Ubuntu

I mentioned a cool tool yesterday called pdftk that I use at my day job to merge multiple PDF documents into a single PDF. Well that isn't all pdftk can do! You can also use it to password protect PDF files for better security!

Let's say I have a PDF called sensitive.pdf with information I don't want anyone to see. I can protect it with a password by running the following command via the terminal:
#pdftk sensitive.pdf output protected.pdf user_pw SuperS3cr3tPW2014
If you aren't following the command above you input the original PDF (sensitive.pdf) and output a new PDF called protected.pdf and assign it the password SuperS3cr3tPW2014.

Now you can delete the original file and you can keep the new password protected PDF!

Do you do something else to password protect PDF's in Ubuntu? If so,  what do you use? Let us know in the comments!


Feb 13, 2014

How To Merge Multiple PDF's in Ubuntu

Tux, the Linux penguin
 (Photo credit: Wikipedia)
At my day job I work remotely for a company in California, while I now live back in Colorful Colorado. Working remotely in a different state has some challenges and advantages. One of those challenges is sending documents into the main office to be signed and whatnot.

Often times I have to scan certain documents into PDF's and combine them with existing PDF's to make one big document that I can send to my boss for approval. Since my work laptop is running on Xubuntu Linux, I have to do that with a special command line utility called pdftk.

Let's say I have three PDF's that I need to combine, they are named pdf1.pdf, pdf2.pdf and pdf3.pdf. Here is the syntax I would use to merge them:
#pdftk pdf1.pdf pdf2.pdf pdf3.pdf cat output merged.pdf
The new merged.pdf file will now have all three documents merged into one PDF in the order you listed them in the above command!

To install pdftk in Ubuntu just run:
#sudo apt-get install pdftk
That's how you merge multipl PDF's in Ubuntu Linux!

Feb 12, 2014

Top Techy Business Trends of 2014

The Washington World Bank documents that the global economy will grow 3.2% in 2014 and continue that trend for the next two years. It's hard to place this into a tangible angle, but the World Bank suggests that advanced economies are gaining momentum and will support expansion in developing markets.

So what are these advanced economies? One major aspect to an advanced economy is the proliferation and acceptance of advanced technologies. With expected growth across the board in 2014, the below technologies will spearhead new tech business trends.

1. Tech Apparel

Businesses need to begin deploying mobile tech in a few ways to enhance communication and acceptance. The Google Glass, Samsung Smartwatch and Apple's iWatch are leading a new trend towards interface technology that can be worn. Computer World mentions that this is known as Bring Your own Device, or BYOD, and employees may even be offered these devices for free to enhance productivity, morale, and general business success.

Businesses should also deploy policies for BYOD, recalls a Gartner report. This will include policy updates, new apps, long term brand marketing strategies, and IT developments to take advantage of the trend.

2. Mobile Money Inches Closer to the Standard

Complete Payroll has highlighted a few major payroll changes in 2014, but fortunately a few of them will be closely monitored through complex and integrated payroll systems. This will include the social security wage base increase for 2014 and the general mileage reimbursement reduction. Algorithms and live updates in the Intuit system will track these data changes. The Intuit payroll for small businesses platform uses a refined payroll strategy in a protected manner, and over one million small businesses already deploy the technology to pay staff members.

3. Cloud Computing Gets Smaller and Bigger

The range of cloud computing services will drastically expand over the year. Businesses of smaller and even bigger sizes will lean into cloud computing with greater emphasis, details the Wall Street Journal.

Companies use cloud technology to cut costs on in-house storage, sales management, and Information Technology. There is also a wide embrace of personal cloud computing where a greater majority of reports will be on the cloud services of a device and not the device itself. Lastly, the Wall Street Journal cleverly reports that cloud computing’s acceptance on a greater scale is due to it solving the three main issues of further mobility: memory, processing, and battery life.

4. 3D Printers Breach the Mainstream

Vice Motherboard recalls that many major laser technology patents are expiring early 2014, opening the door for 3D printing to be widely effective for more than just plastic products.

FDM printers are now available for $300, but they are only functional with plastic. Samsung, Microsoft, and HP jumped on moving forward 3D printing in 2013, details Venture Beat. Rumors continue circulating that at least one of them will have a viable product by the close of 2014. MakerBot is working with leading 3D printing developers, as well as their own products, to offer printing templates to get people started. This will lower the barrier of accessibility in the technology, recalls Canadian Business.

Feb 7, 2014

How To Install Games on The Xbox One

As some of you know I am going through a divorce. I was married for almost fourteen years and that whole time my wife would never let me buy a gaming console. She hated the idea of them.

Well the other day it was my time with the kids, and they were bored and I decided to run out and buy an Xbox One because I didn't have my wife telling me I couldn't. I figured if I was going to get a gaming console I would get the Xbox because of the Kinect and my kids and I can do games that gets us up off our butts and lets us interact with it.

So I got the Xbox and set it up and noticed that installing games was sort of a pain in the ass. It's actually well documented that the new system has issues with freezing on 0% or 1% during the install process when you are connected to the internet. Also, once you get it installed it has issues running updates on games when you are signed into Xbox Live.

So here is my method for installing games, then running updates that seems to work consistently although it is a pain the ass:
  • Disconnect from the internet by either unplugging the ethernet cable, or going into Settings > Networking and disconnecting from wireless
  • Sign out of Xbox Live if you are signed in
  • Insert the disc and run the installer. Let it get to 100%
  • After the install, reconnect to the Internet by plugging your ethernet cable back in, or going into Settings > Networking and reconnecting to wireless
  • Make sure you are still signed out of your Xbox Live account
  • Open the game and run the update
If during the update you get automatically signed back into your Xbox Live account it should be fine. You just need to make sure you are signed out before you begin the update.

Hopefully Microsoft gets this fixed soon. For such a great gaming system, the installation process is really terrible!

Do you have an Xbox One? Do you have this problem? If so, did you figure out a better way to install games? Let us know in the comments!



Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | stopping spam