Linux

Free Open Source Computer Management

Hey what’s going on fellow Admins? I thought I would drop by aTa today to drop the latest Tech Chop video on you. In this episode I talk about a really great computer management solution that runs on your favorite flavor of Linux.

By computer management, I mean it’s sort of in the same category of Microsoft System Center Configuration Manager, but way easier to setup. Plus since it’s open source, there are no licensing costs. It’s called FOG.

FOG can clone hard drives, and deploy the disk images in a multicast. Not only that, but you can deploy software with it, map printers and join computers to Active Directory.

Check out the video:

If you have any questions about FOG that I didn’t cover in the video. Capabilities, installation questions, etc. Let me know in the comments!

By -=El Di Pablo=-

How To Spoof Email in Linux, iPhone and Android

Greetings fellow Admins! It’s me, El Di Pablo from Bauer-Power and Tech Chop taking the reigns here at AskTheAdmin for a little while. I was chatting with Karl, and apparently he is working 70 hour work weeks lately, and hasn’t had time to keep up with the posts here. Me being the nice virtual online friend that I am, I volunteered to write up some posts for a week or two to give you guys some original content.

Now, today isn’t going to be one of those days though. Today, I am going to post my latest video from my monthly video show Tech Chop. In this episode I show you three ways you can send spoof emails using your iPhone, Android, and also from Linux. Spoiler alert! Sending spoofs from your iPhone or Android phone is way easier than Linux. However, since you are using the terminal to do it in Linux, that automatically boosts your geek cred by +5 and in turn makes you look cooler.

Here’s the video:

Links for the apps and commands used can be found here: (Spoofing Email For Dummies)

Sending out these spoofs is actually a pretty funny prank you can play on someone. In the video I mentioned sending one to the desktop tech that works for me, and he almost had a heart attack. He says he is saving it for blackmail purposes now, so maybe it wasn’t such a good idea. Anyway, still funny if you ask me.

If you want to check out more videos from Tech Chop, visit TechChop.com. If you want to watch the videos on your TV using a set-top box like Boxee, or Roku, you can catch Tech Chop on the Tech Podcast Network!

Know of other tools that will allow you to send spoofs? Are they easier to use? Let us know about them in the comments!

 

Download the Google Chrome OS Virtual Machine via GeekLad

google chrome ball Download the Google Chrome OS Virtual Machine via GeekLad Last week, Techcrunch reported rumors of the release of the Google Chrome OS. They stated that the info came from a reliable source, and indeed that source was reliable. Google had an event at their headquarters, and indeed provided new details and a demo of the Chrome OS. The Chromium Blog has some great videos that provide some additional information about Chrome OS as well.

The Chromium OS source code is available for download (Chromium OS is the open-source version of Google Chrome OS), and you can compile and build it. It took some time, but I did manage to do this on my 64-bit Ubuntu 9.04 (Jaunty Jackalope) machine. I also managed to put together a VirtualBox virtual appliance that is all ready to go. I built a torrent for it, so feel free to download it here:

Download the Chromium OS VirtualBox Appliance Torrent

Please continue to seed, as I’m sure there will be many people out there wanting to try it out.

To use it, just start up VirtualBox, click File and then Import. Navigate to the chromiumos.ovf file and select it. The virtual appliance will be imported into VirtualBox and you should be good to go.

I also included a txt file that more or less has the commands I used to build it. You may be able to run it as a script, although I haven’t confirmed that it will work. I guess you could say I more or less took “script-like notes” as I was building Chromium OS.

If you hit Ctrl+Alt+T when you first log in, you’ll get a shell prompt. You can run “sudo su” (no quotes) to log in as root, and I’ve set the password to “password” (no quotes). If you use this machine for anything serious (although I doubt you would), be sure to change the password.

It is absolutely astounding how fast it boots. It really is nearly instant-on and takes a mere few seconds to bring up the login screen.

chromium os login Download the Google Chrome OS Virtual Machine via GeekLad

<!—more—>

Once you log in with your Gmail account, it launches and you’ll see the Chromium interface open up to your Gmail. There is also a Google Calendar tab and a New Tab tab. The little chrome sphere appears in the upper left corner, but when you click on it you don’t get a menu as you see in some of the Chrome OS videos. Instead, you get a Google.com account login page.

google chrome running Download the Google Chrome OS Virtual Machine via GeekLad

As you can see, it looks very much like the Chrome OS screenshots that had surfaced last month. Of course, being that this is running on a virtual machine without any decent video drivers on the operating system, the resolution is quite low (800×600). Your dear old granddad may be the only one that actually finds it visually appealing at this resolution.

Right now the most impressive thing is how fast this operating system loads. Of course, it should load fast because there really is hardly anything there. In any case, it is rather neat to see an early release in action. The fact that it actually works on a virtual machine is quite promising. Eventually as drivers for more hardware are incorporated into it, it should be possible to run it your own real hardware.

I also found a VMWare virtual disk image on a Google Wave about the Chrome OS. You can download it here:

Download the Chromium OS VMWare Virtual Disk Image

As of now, the link to the VMWare disk image is valid and the download works. However, I haven’t tried using it, so I can’t confirm that it will run on VMWare without issue. Enjoy your Google Chrome OS virtual machines!

[Via GeekLad]

How can I join a Ubuntu machine to my domain?

When my old boss at Websense first introduced me to the world of Linux, being from a Windows shop, I naturally asked him how to join my Linux workstation to the domain. He of course said, “Why would you want to do that? Don’t taint the pureness of open source!” So I never pressed the issue.
That is, until yesterday afternoon. I decided to give it a go again, and I have to tell you they have made it really easy. I read some blog posts on this before, and it used to be kind of a pain in the arse to do it. Not any more with the use of LikeWise Open which is available in the Ubuntu repositories.
To install it and set it up, just do the following steps (Via AnotherSysadmin.Wordpress.Com):

  1. sudo apt-get update
  2. sudo apt-get install likewise-open
  3. sudo domainjoin-cli join fqdn.of.your.domain Administrator
  4. sudo update-rc.d likewise-open defaults
  5. sudo /etc/init.d/likewise-open start

After that is done, you can log out, then log back in with your domain\username account (You have to add the domain\ first). Here is the beautiful screen shot of my Ubuntu machine in Active directory:
 How can I join a Ubuntu machine to my domain?
 How can I join a Ubuntu machine to my domain?
Pretty cool right? I bet you never knew it could be that easy to do. Try it yourself. Let me know how it goes in the comments.