This is just a quick tip for anyone that uses VNC, expecially on Linux. This works in TightVNC and maybe others too, it might be a VNC standard. When using the VNC viewer or client on Windows, you can right click on the title bar of the window to get some extra options, like sending Ctrl-Alt-Del to the host to log into a Windows box. When using this on Linux, right clicking on the title bar had no effect. Uh oh, how was I going to login to my Windows box? Well, I found that F8 will bring up the menu and allow you to do various things, including sending keystrokes to the host you are connected to. So, there you have it. When in doubt, try F8 when using the VNC viewer.
Installing Skype on Ubuntu 64 bit AMD
Here is a tip for anyone like me that is running 64 bit Ubuntu on AMD processors and wanting to install Skype. This is what I ran into recently and I found a solution so I wanted to share. This is a one liner that will take care of it for you, or at least it did with me on 8.04 Hardy Heron.
sudo apt-get install ia32-libs lib32asound2 libasound2-plugins; wget -O skype-install.deb http://www.skype.com/go/getskype-linux-ubuntu; sudo dpkg -i --force-all skype-install.deb;
See? That’s all there is to it! This installs some supporting libraries as well as Skype itself. I broke this into multiple lines at the semicolons so it would display properly, but you can run it all as one big command or seperately. Enjoy!
Got Skype?
OK, so I am late on this bandwagon, and I probably don’t have to tell you about it already. However, on the off chance that you haven’t tried or even don’t know what it is, let me tell you about something cool that I have been playing with. If you hadn’t guessed it already, it’s called Skype. Skype is a Voice over IP (VoIP) software package that allows you to not only text and talk from one computer to another (Skype to Skype), but also to call land and mobile phones and talk as well.
Not everything is free, Skype itself is free and Skyp to Skype communication is free, but calling real phones costs you something. Right now I am signed up with a plan that gives me unlimited minutes to the U.S. and Canada for $2.95 per month … how about that?
OK, let me give you the goods. First, how does it sound? It sounds great, I honestly cannot tell it from my regular phone and neither can those who I have called so far. Naturally this will depend heavily on the speed and quality of your Internet connection, but the technology itself seems solid.
Second, how much does it cost? Well, I have already mentioned the $2.95 for unlimited U.S. and Canada calls, they also have great rates for over seas and more. Outbound calling is quite reasonable it seams. If you want a number that people can call you on, and voice mail, that costs extra but the costs are not bad, especially if you have a subscription with them instead of simply paying as you go. Depending on where you live, availability of local numbers might be an issue.
The only downside is that you need to use your computer, so you are tethered to it. But wait! You can get a VoIP phone for under $60 that let’s you use it just like a cordless phone. Of course, you can spend more and get something fancier too.
All in all, I am liking my Skype experience, I’ll share more as time goes on but I suggest you check it out if you have any need to VoIP, chat or video chat software.
Sun Microsystems Drops SPARC Chip
OK, I admit that headline is a bit misleading, but it’s also true. I spend time regularly working in an environment that is all Solaris UNIX running on SPARC chips, therefore we use SPARC based Sun Blade workstations exclusively. This means that the platform we use to manage and develop on is the same as the platform we manage, which is a good thing when you are dealing with hundreds of mission critical servers.
I was speaking to one of my Sun contacts, enquiring about some workstations when I was informed that Sun has now dropped all Sun Blade workstations based on the SPARC chip. You will only be able to buy workstations with Intel or AMD (x86) processors.
What!? I personally think that’s stupid, and it puts me in a bind. Before you flame, I know why they did it. The SPARC workstations are expensive and I am sure they don’t sell very many so they decided it was more economical to stop making them altogether. And yes, I know I can run Solaris x86, but why would I want to introduce a whole new architecture just for managing my existing systems?
Either way you slice this, I think it is a sign of the times. Quality and performance will give way to cheap. I read articles on the Web about how solaris is slow and the SPARC chip “sucks” because it “only” goes up to 1.5GHz or so when Intel goes over 3Ghz. That just makes me smile because it just shows how little people know about how things work.
When you get right down to it, I guess it all comes down to money.
Linux and ISO images
For any of you out there that work with Linux and ISO images, here is a nifty trick for mounting your ISO images directly without having to burn them to CD’s first. Basically, pick your mount point (/mnt/iso in this example) and your ISO image (/tmp/myimage.iso in this example) and go. Check out this command:
mount /tmp/myimage.iso /mnt/iso/ -t iso9660 -o loop=/dev/loop0
And there you have it, the ISO file is now accessible at /mnt/iso, it’s just that easy!
Interesting Note About Vista SP1
I wanted to share something that I observed recently on my own PC. I am running Vista Home Premium, it came on my Alienware box. I had some directories shared so I could hit them from some of my other PC’s, and the share names had underscores (_) in them. Well, I recently installed Vista’s SP1 and afterwards, I noticed that my network shares were not working. Hmm, that’s strange. Skip ahead and what I found out was that after the SP1 install, my share names were renamed to the same thing, only without the underscore. Well now, how about that? So I had something like share_name, and then it became sharename without me changing it. Not that big of a deal, but I thought I would share just in case anyone else was having the same troubles.