Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts

Thursday, August 29, 2013

New Video: Installing Linux Mint 15

0 comments
In our latest video we step through how to install Linux Mint 15 'Olivia' on a clean hard drive.  In our example, I am using a new VirtualBox machine and Linux Mint 15 'MATE' edition with No Codecs.  If you have ever installed Ubuntu, then you will have no problem stepping through the installation wizard and successfully installing Mint on a system.

However, if you have not installed Ubuntu, and Mint is your first experience with Linux.  Do not fear.  As the wizard is rather simple and straight forward.  Check out our video, and as always make sure to subscribe to our YouTube Channel to stay up to date with all of our videos as they are released.



Thanks for watching!

Checkout our YouTube channel for more videos on Linux Mint, Ubuntu, and Windows!
http://www.youtube.com/techiesmarts

Monday, August 26, 2013

Remove Ubuntu from a Dual Boot Computer

0 comments
In our most recent video, we are going to learn how to remove Ubuntu from a Windows 7/Ubuntu dual boot setup.  You may be asking yourself: "Wait a minute, Techie always does his best to promote Linux in general.  Why is he telling people how to remove it?".  And if that is your question, I'd say it is a very valid question.

But simply put, there are a plethora of reasons why someone would want to remove Linux from a dual-boot machine.  See below for a short list of just a few reasons:

1- They may be low on total Hard Drive space and may need to reclaim that space for Windows.
2- Maybe Ubuntu just isn't the Operating System for you.  There are thousands of Linux distros to try.
3- Maybe you want to revert back to Windows for everyday use, and run virtual machines of Ubuntu from within Windows.

There are many, many other reasons.  But whatever they may be, removing one of the Operating Systems from a dual-booting PC may sound like a daunting task.  However, I am here to report that it isn't as daunting as it may seem.  And in most cases should take less than half and hour.

Disclaimer: Anytime you start monkeying around with Operating Systems, Boot Records, Partitions, etc.  Please be sure to backup any data that is important to you.  There is always the off-chance that something could go wrong.

Be sure to check the video out below, as always I will list the steps as a sort of cheat sheet below as well.

Difficulty: Moderate Skills Are Required (Basic Understanding of Boot Records, Paritions, Partition Wizards)



Step 1

Be sure both Ubuntu and Windows are accessible and bootable.

Step 2

We need to remove the Grub Bootloader that was installed when we installed Ubuntu.  DO NOT attempt removing Grub manually.  As you will render both operating systems unbootable.  To remove Grub, we need to use a tool called: EasyBCD.

Visit the following website to download EasyBCD (there is a free community edition):
http://neosmart.net/EasyBCD/

Note: If you are using EasyBCD within a commercial setting, you need to honor the developers wishes and purchase a copy of it.

Step 3

Once EasyBCD has been installed, run it.  Click on 'BCD Backup/Repair' button.  On the right, select 'Re-create/Repair Boot Files'.  Our goal is to rewrite the MBR and restore the Windows bootloader.  Don't worry, this process takes a couple minutes.  

Once this completes, the status box will disappear.  You can then exit EasyBCD.

Step 4

Reboot the PC and make sure Grub does not appear.  If Grub is now gone, we can proceed to removing the Ubuntu Parition and the Linux Swap Partition.

Step 5

Once Windows 7 has finished rebooting and we have verified Grub is gone, click on:
-Start
-Right click on 'Computer'
-Left click on 'Manage'

This will open the computer management console.  Locate 'Disk Management' on the left side of the screen.  This will allow us to manipulate the Hard Drive's Partitions.

Step 6

Once inside the 'Disk Management' tool, locate your Ubuntu and Linux Swap Partitions.  Note: These partitions will not have a file system assigned to them.  Be sure to pick the correct partition as you don't want to delete the wrong ones.

Step 7

With the first partition identified, move the mouse of that partition in the graph towards the bottom of the screen and right click on it.  Choose 'Delete Volume'.  This should convert that partition to 'Unallocated Space'.  If it changes it to 'Free Space', right click on it again and select 'Delete Partition'.  This should convert it to unallocated space.

Repeat this step for the Swap Partition.

Step 8

You should now have a portion of the hard drive labeled as 'Unallocated Space'.  Locate the Windows 7 partition and right click on it in the graph.  Select 'Extend' from the context menu.

Step 9

The 'Partition Extension' wizard will appear.  By default it will detect the amount of 'Unallocated Space' and give you the option to use all of it.  Take the defaults and click 'Next' until you get to the confirmation screen.  Once here, simply click on 'Finish'.  It may take a few moments depending on hard drive and partition size.

Step 10

One the unallocated space has been taken up by the Windows 7 partition, simply close the 'Computer Management' console and verify the changes took effect by going into Windows Explorer and verifying your C: drive size.  Now reboot just to make sure everything looks good.

That's it, your now back at a "single" boot machine.

Tuesday, August 6, 2013

Chromium Browser Issue under Ubuntu

0 comments
Chromium Web Browser
Chromium Web Browser
This evening while I was web surfing, I decided to make a couple of changes to my Ubuntu desktop and thought I'd simply sign out and back in to see if the changes would stay upon a reboot/log off.  My changes worked fine.  However, I didn't exit the Chromium Web Browser properly when logging off.  In short, I logged off while I had the browser minimized to the Unity dock.  I honestly didn't think anything else about it.

Upon signing back in, and launching the Chromium Web browser again I was greeted with an error I hadn't previously seen. (See pic below)



Your profile could not be opened.
Bad Profile??

"Your profile could not be opened correctly.  Some features may be unavailable.  Please check that the profile exists and you have permission to read and write its contents." This is the error message I got, and was unable to proceed past the error.

Upon further inspection, by right clicking the Chromium launcher in the Unity dock, I was able to select 'Open a New Window with a Temporary Profile' to do some research on the issue.  In short, I found a bunch of links with very similar information.  There are two ways to go about fixing this issue.

The first, basically make a backup of the Chromium Configuration File and then launch Chromium to let the profile rebuild itself.  Or just launch Chromium and let it build a new profile configuration anyways (this option will cause you to loose all of your browsing history, bookmarks, cookies, etc.

*Hit enter after each command entered into Terminal.

Step 1: Close Chromium.
Step 2: Launch the Terminal (Alt + Ctrl + T)
Step 3: Type the following:    mv ~/.config/chromium/Default ~/.config/chromium/Backup
Step 4: Launch the Chromium again.  This time is should open without an error.
Step 5: Once you have verified it works, close Chromium again.  We will restore your data.
Step 6: Go back into Terminal and type:  rm -rf ~/.config/chromium/Default
Step 7: Still in Terminal, type:   cp -R ~/.config/chromium/Backup ~/.config/chromium/Default
Step 8: Exit Terminal and open Chromium and verify your data has returned (bookmarks, etc.)

If you aren't particularly picky, and don't mind loosing things like your bookmarks, cookies, and browsing history.  Then you can simply just launch Terminal and type the following command and hit enter:   rm -rf ~/.config/chromium/Default

This will remove the existing Chromium configuration file.  By removing the configuration file, Chromium will be force to create a new profile configuration the next time it is run.  Essentially starting with a blank slate as if it were just installed.

Thursday, August 1, 2013

Busy, Busy, Busy Times

0 comments
Just checking in to let everyone know I am still alive and kicking.  It's been a while, and life has been busy.  On a personal note, I have managed to force Ubuntu 13.04 as a dual-boot beside on Windows 8 (with Windows 8 kicking and screaming the whole way).  But the end result, I have to answer a couple extra boot menu's but it works.  And works pretty well too.

In the recent news, we have the release of 'Chromecast', so hopefully more info on that project coming up.  And Canonical has released information on the 'Ubuntu Edge'; in their attempt at taking Ubuntu even more 'mainstream' by sticking it inside a smart phone.  Looks cool, looks promising, but I really want to see it in action first.

Also, I just upgraded my phone to the Samsung Galaxy S4... It is a sweet, sweet smart phone, loaded full of cool features.  I'm still learning it's feature set, and getting some hands on with it so hopefully a full review is also on it's way.

So all in all, hopefully updates will start coming more frequently, and I am hoping to get some new video uploads on our YouTube Channel very soon!

Until next time, Keep Calm & Google On my friends!

Tuesday, February 26, 2013

Ubuntu 12.10 Laptop Issues

0 comments
Ubuntu
Over the past several days I have been attempting to get Ubuntu running the way I want it to on my laptop.  This has been easier said then done.  I have a Pavilion g7 laptop running Windows 8 out of the box.  Windows 8 isn't my choice of OS, but one I can live with for things like playing certain games, and producing our YouTube videos.  However, for everything else, I'd really prefer using Linux.

After disabling Secure Boot in my laptop's BIOS and imstalling Ubuntu 12.10, I had to run Boot-Repair from the Ubuntu 12.10 Live DVD to repair Grub 2 and make it bootable.  So far so good.  The issue began when trying to install my proprietary display drivers for the A8 APU my laptop is running.  The default OpenGL drivers seemed to do ok, but every once in a while the screen would flicker for a brief second.  Not a big issue, but one that made me feel like I was loosing my mind.

I followed numerous guides and tutorials on various Ubuntu blogs, YouTube videos, etc.  And every single method I used returned the same issue.  The driver would install, I could see it and test it as long as I didn't reboot.  The catch is that to fully utilize the drivers I was forced to reboot anyways.  Upon reboot, my Ubuntu setup would boot straight into a TTY session with no LightDM login or GUI of any kind.

Some methods required purging the recent changes to bring LightDM and the GUI back.  But that didn't always work; resulting in reinstalling Ubuntu about 3 times.  After the third installation, it started getting old.  After doing some research, I have found several sites mentioning that the drivers seem to work in Ubuntu 12.04.  Dropping down from Ubuntu 12.10 to 12.04 isn't a big deal to me.  I have been using the LTS releases for a long time anyways.  And with Steam now on Linux, I really want to get into some Counter Strike: Source action on my Linux install.

So, with the Ubuntu 12.04 Live DVD in hand; I plan on installing Ubuntu again and seeing if the Legacy drivers in fact work under 12.04 as many have claimed they do.  If everything goes well, I hope to be reporting back with success soon.

Monday, February 18, 2013

Steam is now a Native Linux application

0 comments
That's right, you read that right. Valve has released it Steam client as a native Linux application. I have installed it on my Ubuntu 12.10 box and can confirm that it does indeed work. And is pretty much just as easy to install as it is on any Windows machine.

If you are using Ubuntu then be sure to check the Software Center that is built into Ubuntu to download and install it.  I have yet to try a game as I am currently in the process of downloading Counter Strike: Source for testing. To be fair I am also downloading CS:S on my Windows box as well for comparison purposes.

So stay tuned and I will try to report back as to how the Linux version runs when compared to it's Windows counterpart.

In the meantime Steam is running a sale which features some pretty awesome games. I picked up Counter Strike: Source for $5 and Half-Life for $2.49. And that's is just a couple of the great games that are on sale. That sale is supposed to run through Feb. 21st and the games that are purchased are unlocked on your Steam account for any platform that is officially supported. Meaning if you buy a game that runs on Linux, Windows, and Mac then you get access to all the on your Steam aaccount. So check it out:

http://store.steampowered.com

Saturday, February 16, 2013

New Video on Our YouTube Channel!

0 comments
After a long hiatus, I'm back!  Just uploaded a brand new video to our YouTube Channel, so feel free to swing by and check it out (or watch it below).  Regardless of how you watch it, be sure to swing by our channel and subscribe so you stay up to date as we add new videos!

Ubuntu 12.10: Install Cinnamon Desktop


Monday, September 17, 2012

Ubuntu 11.04 Nearing It's "End of Life"

0 comments
Ubuntu
Well, it's that time again.  Another Operating System is nearing it's end of life.  And nope, I'm not talking about the April 2013 Doomsday for Windows XP users.  This time it is Ubuntu 11.04 "Natty Narwhal".  For those are are unfamiliar with the "Natty" it was the first time user's saw the Unity Desktop.  From that day forward Canonical would either have people who loved Unity or those who didn't care at all for it.  Some of us use it and have become somewhat fond of it, but still care for the traditional look of the Gnome/Ubuntu desktop environment.

Either way, if you are still using the 11.04 release of Ubuntu it is time to upgrade.  No need to panic, as "Natty Narwhal" will continue to get it's updates and security patches until October 28th, 2012.  You can still use 11.04 past the 28th if you like.  However, you will not be able to get any updates and this leaves an open security issue that you definitely don't want.  You can use the system updater from within Ubuntu to upgrade your installation.

It is suggested for the best upgrade experience, that if you are still running Ubuntu 11.04, unless you are going to do a clean install of Ubuntu 12.04.1 it will not matter.  Just backup your files and install away.  However, if you are upgrading from 11.04 here is the path you need to take.
-First, upgrade to Ubuntu 11.10.
-Then upgrade the installation to 12.04.1.

Personally, I like to take the time to do a fresh install of my Operating Systems rather than upgrading.  It not only gives you a fresh start.  It also gives you back a lot of used storage space that you probably weren't utilizing anyways.  I mean, we all install packages and after a few uses, we move on to something else.  Then these packages are left behind taking up space.

The choice is yours, but either way.  To stay secure, you need to upgrade.

For more visit: Ubuntu.com

Thursday, April 19, 2012

HP Is Certifying Ubuntu on their Proliant Server Hardware

2 comments
Ubuntu
Mr. Mark Shuttleworth announced that HP will start certifying Ubuntu 12.04 LTS on it's Proliant Server product line.  What does this mean for customer's who are using Proliant hardware?  It means that HP will no longer invalidate a product warranty because you slap Ubuntu on it's storage as opposed to the standard Windows Server Operating System.

If you are familiar with Linux, you will know that Ubuntu is a great server operating system and it's demand and use is constantly growing.  So, kudos Cannonical; good job in getting some corporate backing.  Here's the kicker, HP's reputation hasn't been the greatest over the last while.  So hopefully this won't hurt Cannonical's decision.  And if you remember, this is not the first time a hardware company has jumped into the Ubuntu arena.  Several years ago, Dell offered a line of computers that came preloaded with Ubuntu (other companies followed suit to a small extent) and they publicized the fact that you could buy an Ubuntu powered machine from them.  However, that PR seemed to fade away about as quick as it showed up.  Hopefully, the same thing won't happen this time around.

And HP isn't just certifying Ubuntu 12.04 LTS on new hardware either.  This also applies to existing Proliant hardware that is already in the field.  So if you are an IT manager at your business and have a need for the Ubuntu Server OS and are running a Proliant product, you should be good to go.  So break out those Ubuntu guides, you may see a growing area in the IT world.

As a huge Linux fan and an Ubuntu user myself, I am glad to see companies like HP getting behind them.  As we near closer to the future of Windows, it is only evident that other options may be just as viable as Microsoft's server offerings as surely things in the Windows Server OS will start to evolve and change as well over time.  Maybe corporate user's will see the need to Ubuntu powered servers in their solutions.  This would be great for Ubuntu, and possibly even great for the open-source community as a whole.  Think about it, with Ubuntu Servers comes the need for companies to have staff who know how to work with it.  And with more "professional" backing, maybe a higher quality of open source software packages would become available to the Ubuntu community.

Here's to you Ubuntu!  Swing by Cannonical's website for more information: http://www.canonical.com/

Monday, November 21, 2011

Video: Navigating Gnome Shell 3 in Ubuntu

0 comments
Our latest video covers the basics of getting around in Gnome Shell 3.  In our previous video we discussed how to install Gnome Shell 3 in Ubuntu 11.10.  If you haven't watched that video yet, you may want to consider watching this video in it's entirety to make sure you'd like to check out Gnome Shell 3 in more detail.

Gnome Shell 3 brings to the table some large changes to the Gnome Desktop Environment.  It reminds me of a mix up of both Gnome and Unity.  I have my own complaints about Gnome Shell 3 (which will be touched on in another video).  But in the meantime, checkout how to navigate the new version of Gnome.



Navigating Gnome Shell 3






As always be sure you subscribe to our YouTube Channel to stay up to date when we upload new videos.
http://www.youtube.com/techiesmarts

Be sure to follow me on Twitter:
http://www.twitter.com/techiesmarts

'Like' our Facebook Page:
http://on.fb.me/qwpd4i

And for Google+ users:
http://gplus.to/techiesmarts

Wednesday, November 16, 2011

Video: Installing Linux Mint 11 'Katya'

0 comments
In our latest video we will step through the basics of installing Linux Mint 11 'Katya'.  'Katya' is the latest distribution release of Linux Mint with version 12's Release Candidate just being announced.  Mint is based on Ubuntu and in some circles is considered to be one of the best Linux distributions out there (next to Ubuntu).  There is also a version of Mint that is Debian based and features rolling distribution updates; meaning, you get the major updates as they roll out instead of doing a "mass-upgrade" on the entire OS.  That's nice.

The version of Linux Mint 11 being used in this video is the GNOME, 32bit version without Multimedia Codecs.  In our next video, we will step through quickly and easily installing these codecs.






Be sure to subscribe to our YouTube Channel to stay updated on when we upload new videos!
http://www.youtube.com/techiesmarts

Also find me on Twitter:
http://www.twitter.com/techiesmarts

'Like' our Facebook Page:
http://on.fb.me/qwpd4i

And for those of you on Google+:
http://gplus.to/techiesmarts

Friday, November 11, 2011

Linux Mint in Number 1 Spot?

0 comments
So I was messing around this afternoon on Distrowatch (my favorite Linux website) and I noticed their Page Ranking section on the far right side of the page.  And something odd caught me eye.  The fact that Ubuntu was no longer in the very top #1 spot anymore.  What?!  Could it be that another distribution has made the jump to pop up the list a little ways?  Even over the Ubuntu giant?

Seems it's true.  As of this writing Linux Mint was now in the top seed.  This is pretty crazy, especially since Linux Mint is based on Ubuntu (at least one version of it is, the other is Debian based).  So my next thought is, why?  Did Canonical ripple the waters enough with the exclusion of the traditional desktop when they chose Unity as the default desktop environment?  Is Ubuntu outgrowing it's own community?  Who knows.
A screencap I took to convince my
eyes it's real!

I have my own reasons for why Ubuntu 11.10 isn't necessarily my first pick anymore when it comes to Linux Distributions.  However, regardless of my personal opinions there is a reason Ubuntu is one of the most used Linux Distro's in the world.  It's good, slick, and most everything works right out of the box.  I truly believe that some user's got fed up with Canonical's direction and decided to go looking elsewhere for their Linux fix.  Either way, this exposure is no doubt a big deal for Mint.  Especially with version 12 just right around the corner.

Kudos Linux Mint!

If you want to check it out for yourself, visit:
http://www.distrowatch.com
http://linuxmint.com/

Wednesday, November 2, 2011

Ubuntu 11.10: Switching Login Managers

0 comments
I received several emails after our posting our video about installing KDE in Ubuntu 11.10 concerning the login screen being changed.  If you followed along with our video we actually set the login screen to use KDM instead of the default for Ubuntu 11.10 which is LightDM.  Both login screens work the same way, but they look very different.

If you decide you like the original Ubuntu 11.10 login better than KDM's login screen, then watch the video below.  It's under 3 minutes long and a simple Terminal command will have you back up with LightDM in no time.






As always make sure you stay up to date with our YouTube Channel by subscribing!
http://www.youtube.com/techiesmarts

Also follow me on Twitter:
http://www.twitter.com/techiesmarts

Or 'Like' our Facebook Page!
http://on.fb.me/qwpd4i

Thursday, October 20, 2011

Review: Ubuntu 11.10 'Oneiric Ocelot'

0 comments
This past week Canonical rolled out the latest version of Ubuntu with version 11.10 'Oneiric Ocelot'.  Right off the bat, you'll notice some really nice changes to the system.  I absolutely love the new login screen.  It looks really sharp.  For fans of Unity, you'll love this release because by default (and short of using the GNOME 3 Shell) Unity is all we get as far as a desktop environment is concerned.  This time around they have stripped out the 'Ubuntu Classic' desktop completely.

Otherwise, you'll immediately notice that the Unity bar looks a little better.  We have lenses built into the Dash that allows you to download more lenses to extend the Dash's functionality (I really like this idea).  And finally, the Ubuntu Software Center has had a huge makeover and looks and functions a lot smoother than previous versions.  In my opinion, this release would probably have to be one of the most user friendly versions ever released if being approached from the standpoint of someone new to Ubuntu.  But for those of us who have used Ubuntu for years and are set in our ways, (at least for me) it isn't the easiest to get used to.  But it does look nice.

So checkout my review:



Review: Ubuntu 11.10 'Oneiric Ocelot'


Tuesday, October 18, 2011

How To: Upgrade Ubuntu 11.04 to Ubuntu 11.10

0 comments
In our latest video we will discuss one of the easiest ways to upgrade an existing Ubuntu installation to the latest Ubuntu release.  Whenever Canonical rolls out a new Ubuntu release many people flock over to the Ubuntu site or other sites (like DistroWatch) to download the latest ISO and rip a Live CD to use for installation.  Unless you are absolutely sold on reinstalling from scratch everytime a new release hits the web, you may be wasting some time.

You can actually use the Ubuntu Update Manager (the same program that checks for software updates/patches) to help you update your Operating System's Release version.  For example, in this video we will start off running Ubuntu 11.04 'Natty Narwhal' in VirtualBox.  By using the Update Manager we will upgrade to Ubuntu 11.10 'Oneiric Ocelot'.  This process is pretty much the same for most versions of Ubuntu.

It will take a little time (depending on your internet connection's speed) and I highly recommend backing up all of your files/data before upgrading just in case something goes wrong.  Although, I have never bumped into trouble doing an 'In-Place Upgrade' using Ubuntu.  It's just better to be safe than sorry.  If you're ready to upgrade, go ahead and follow along with our video:

How To: Upgrade to Ubuntu 11.10

Remember, you can stay up to date with our YouTube Channel by subscribing: 
http://www.youtube.com/techiesmarts

By subscribing you will get updates whenever new videos are posting or made available!

Also be sure to follow me on Twitter at: http://www.twitter.com/techiesmarts
Be a 'Fan' of our Facebook Page: http://on.fb.me/qwpd4i
Or if you use Google+ add me to your Circles!: http://gplus.to/techiesmarts

Friday, October 14, 2011

Ubuntu 11.10 Now Available!

0 comments
Yesterday marked the release of Ubuntu 11.10 'Oneiric Ocelot'.  So what is the big deal?  What's been changed?  For starters Unity has been updated, and GNOME 3.2 shows up too.  Mozilla's Thunderbird is now the default mail app as opposed to Evolution (from previous released).  The Ubuntu Software Center received a makeover along with Gwibber.  And Firefox 7.01 is the default web browser.

For those of you fellow 'Ubuntuers' (haha, I just made up a word); swing by the Ubuntu website and download the latest release at: http://www.ubuntu.com/download

Friday, October 7, 2011

Help Ubuntu!: Speed Up Ubuntu

0 comments
Ubuntu
The latest video in our 'Help Ubuntu!' video series has gone live!  In this video we will cover a few basic tips that will help us speed up our Ubuntu 11.04 installation.  And we will not have to uninstall any software packages or even touch the Terminal!

Who would need to do this?  Anyone running older hardware that seems to have issues keeping up with the new Unity desktop environment or the speed demon who is constantly trying to get their computer to boot as fast as it possibly can.  Let me go on record to say that there are more advanced ways to speed up Ubuntu by removing some packages, language packs, etc.  This is probably fine for the more experienced Ubuntu user.

But for those who are newer to the operating system and may not be ready to jump into the Terminal and hammer out a string of commands for which they have no clue what it does, only on the promise that it will work, we'll try to start you off easily.  That way when you get to the point where you can understand what Terminal commands handle what functions, it will make that learning experience a lot easier (trust me, I've been there).

So, without delay see our latest video below.  Feel free to leave a comment or visit and subscribe to our YouTube Channel: http://www.youtube.com/techiesmarts








Be sure to follow us on Twitter: http://www.twitter.com/techiesmarts
And on Facebookhttp://on.fb.me/qwpd4i

Saturday, October 1, 2011

Ubuntu One Cloud Storage Now for Windows too!

0 comments

Ubuntu One is Canonical's answer to cloud storage and has been included within the last several Ubuntu releases.  Simply put, you sign up for your free 5GB account (that was previously only for Ubuntu users) and start syncing your files to "the cloud".

You can stash pretty much any kind of file you'd like on your Ubuntu One "Cloud" and that grants you the ability to access your files on the go from literally any internet connect computer or mobile device in the world.

My previous solution to cloud storage was Dropbox.  However, seeing as how I have multiple Ubuntu installs working across several VirtualBox machines on my Windows host, this may very well keep me from even messing with VirtualBox shared folders between guest and host.  And simply use Ubuntu One instead.  Not to mention, with access to Ubuntu One on Windows and Ubuntu, it is also available on iOS and Android devices.

Every user gets 5GB's of data for free and can purchase additional space should you need it.
Check out Ubuntu One at:http://ubuntuone.com/

Wednesday, September 28, 2011

Canonical Brightens the Future of Both Ubuntu and App Developers

0 comments
Ubuntu is probably considered by most to be the most popular Linux distribution.  As of this writing, if you use Google to search the term 'Linux'; you may not be surprised to see that Ubuntu is the first hit to be returned.  And for good reason.  Ubuntu has been built up with great hardware support, ease of use for new users, and it has a higher chance of 'just working' out of the box.

One of the things that it seems like everybody wants more of are apps.  Whether it be on their iPhones, iPods/iPads, Android devices, and even some operating systems now include access to app stores or markets.  Even web browsers are getting in on the action.  So, it only seems to make sense that other operating systems try to further their application support.  And what better way to do this by assisting developers with creating, packaging, porting, and submitting their programs or applications to the Ubuntu Software Center?

That is what Canonical is aiming to do with the release of the Ubuntu App Developer Portal.  They even include a tool called 'Quickly' that is aimed at helping you build your app.  And what is even better, is it is free to use.  'Quickly' also helps with submitting your app to the Software Center.

What is even cooler?  You can either release your apps for free or for a price.  That's pretty cool.  I'm sure we'll start seeing the Ubuntu Software Center offerings grow as more people get turned on the the Developer Portal.

Check it out for yourself at: http://developer.ubuntu.com/

Monday, September 19, 2011

Help: Ubuntu! Video: How to Use AWN in Ubuntu 11.04

0 comments
Our latest video is up and running.  In this video we will cover how to use AWN (Avant Window Manager) as a dockbar.  I will be running AWN from with Ubuntu 11.04 using the Ubuntu Classic desktop environment.

Why would you want to use AWN in the first place, we have Unity now?
Simple, Unity is kind of heavy on the resource side of things.  I have ran it on a few physical machines (older hardware) and on several virtual machines (using VirtualBox).  And in every case (except for my newer desktop PC) it caused the system to take a little longer to load, and in some cases even to use for daily/simple tasks.  I like the idea of using a dockbar.  Especially to mess with my friends who are Apple fans because with a dock and the right theme, it's extremely easy to get that 'Mac' look to the desktop.  Plus, it's just fun to play around with some extra customization.  Whereas, with Unity what you see if what you get with it.

Themes are pretty easy to find for AWN, and they are incredibly easy to install and use.  Plus, you can move the dockbar around the screen and you pretty much have a really simple way to add or take away applets from the dock with very little trouble.  And it's pretty stable as well, so there isn't as much of a worry about hanging up or crashing.

As always, be sure to swing by my YouTube Channelhttp://www.youtube.com/techiesmarts
There we have more videos and will be continuing our Help Ubuntu! video series for folks who may be new to Ubuntu or Linux in general.  Our next video will focus on some of the software included in the base install of Ubuntu and certain settings within them that will help ease some transition pains for new Ubuntu users.

Also find us on Twitter: http://www.twitter.com/techiesmarts
And our Facebook Page: TechieSmarts on Facebookhttp://on.fb.me/qwpd4i







If you decide that the AWN dockbar isn't to your liking, and you want to reset your GNOME panel back to default (after a GNOME panel) than the following commands are used in this video to reset GNOME:

Open Terminal and type (after each line hit the Enter key):
gconftool-2 --recursive-unset /apps/panel
rm -rf ~/.gconf/apps/panel
pkill gnome-panel

And that should reset it for you.

Happy Surfing!