DisplayLink makes Linux source code available… finally!


The long-burning question on the DisplayLink scene (you know, with its DisplayLink bars and coffee shops, and the annual DisplayLink parade) has been: “When will Linux users be able to get in on some of that video-via-USB action?” Well, it looks like we have an answer for you, penguin-heads. As of today, the company is announcing the release of the open-source implementation of its graphics software, offering support for the Alex family (DL-120 and DL-160) chips. So prepare to go wild writing drivers for all of your favorite Linux-based devices, and be sure to drop us a line when you do. Seriously — it’s been a while since you called. Hit the read link to get started, or check out the full PR bit after the break.

Continue reading DisplayLink makes Linux source code available… finally!

Filed under:

DisplayLink makes Linux source code available… finally! originally appeared on Engadget on Sat, 16 May 2009 09:59:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments

Nokia and Intel collaborating on new Linux-based phone OS called oFono

Between Android and the myriad of LiMo builds out there, we’re not sure the world needs another open-source phone operating system, but Nokia and Intel seem to think differently: the two behemoths have joined up to develop oFono, a Linux-based mobile OS for GSM handsets. We don’t know many details, but he project seems to be pulling people from both Intel’s Moblin initiative and Nokia’s Maemo project, and job postings from a “major handset company” searching for a GUI designer in either Dallas or San Jose have appeared, so it sounds like something big is in the works. We’ll see.

Read – oFono web site
Read – PhoneDog post about the job listing

Filed under:

Nokia and Intel collaborating on new Linux-based phone OS called oFono originally appeared on Engadget on Fri, 15 May 2009 13:11:00 EST. Please see our terms for use of feeds.

Permalink | Email this | Comments

Free PVR TV Guide Service Reaches for your Wallet


This article was written on August 10, 2007 by CyberNet.

MythTVThere is some bad news for those of you taking advantage of free media center software, such as MythTV or Media Portal. As it turns out Zap2it couldn’t continue to provide the television listings that many free media center applications were using.

As a result Zap2it had announced earlier this year that, starting September 1st, they were no longer going to be providing TV guide updates to users. Without the guides much of what makes a media center so great would be rendered useless.

You can sleep a little easier knowing that MythTV was able to work with Zap2it, and they will pickup where they left off…kind of. The new service will be called Schedules Direct, but being able to use the service is going to cost $15 every 3-months. That’s still less than what it costs to use a TiVo, and their goal is to get it down to just $20 per year.

Many people that I talk to hate having reoccurring fees hanging over their head that they are constantly having to pay. They much prefer to have a lifetime subscription to things like this. Unfortunately Schedules Direct doesn’t think that will be possible, which is something that might make people look towards software like SageTV or even Windows Media Center (which is included with Vista Home Premium and Ultimate editions). Both of those solutions off free guides after the initial purchase of the software.

Despite Linux users being accustomed to getting things for free, I think they would be willing to fork over the $15 every 3-months if only to support an open-source project. In the next few weeks we’ll be seeing how it all plays out though.

Source: Slashdot & Download Squad

Copyright © 2009 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:

SmartQ 7 is an Internet Tablet with dedicated FN

Oh look, another 7-inch device with an identity crisis. Too big to be called a smartphone, definitely not a netbook, it must be a MID, UMPC, or maybe a PMP. Wait, we see it now, the SmartQ 7 aspires to be an “Internet Tablet.” Good, because its WVGA (800ish x 480 pixel) resolution is the same as Toshiba’s 4.1-inch TG01 (to name just one smaller device) only stretched across a 7-inch touchscreen display — not exactly ideal for video in 2009. The SmartQ 7 runs an unspecified Linux distro with specs that include WiFi, a USB-host mode, stereo speakers, and up to 2-days of music off a single charge to its 4500mAh Li-Poly battery. More importantly, there’s a dedicated FN button along the top for instant fun. No launch date or price but we’ve got the backside, front, after the break.

[Via Pocketables]

Continue reading SmartQ 7 is an Internet Tablet with dedicated FN

Filed under: , ,

SmartQ 7 is an Internet Tablet with dedicated FN originally appeared on Engadget on Wed, 06 May 2009 03:45:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments

How to Install Tarballs on Linux


This article was written on April 17, 2007 by CyberNet.

Many Linux applications don’t have to be installed manually because most distributions have implemented a package management system to make it easier for you to install software. But that’s not always the case. Some programs only offer tarball packages for download, which have to be compiled from source. We’ll show you how to do that.

We’re going to compile and install Audacity (audio editing software) to show you how to install tarballs. Because I wrote this tutorial on an Ubuntu machine, it will be easier to follow if you’re using Ubuntu or a derivative. That, of course, doesn’t mean that you won’t be able to do it with a different distribution. Before we begin, make sure that Audacity is not installed on your computer. If it is, uninstall it using your package manager. This will prevent different versions of the application from being mixed up. You can always uninstall the tarball later.

You can click on any of the screenshots below to enlarge them.

  1. Download the Audacity tarball by clicking here (6MB). It doesn’t matter where you save it.
  2. Audacity

  3. Extract the contents of the package with a package extraction tool such as Ark or file-roller. You can also do it from a terminal by doing

    cd /folder/with/Audacity/tarball
    tar -xvf audacity-src-1.3.2.tar.gz

    Don’t forget to replace /folder/with/Audacity/tarball with the path to the folder where you saved the tarball.

  4. Let’s have a look at the requirements. According to README.txt (included in the tarball), we will have to download and compile wxWidgets separately. If you scroll down, you’ll see that they ask you specifically to install version 2.6.x. Don’t neglect this kind of warnings, otherwise the compilation process will fail. Let’s install wxWidgets then, shall we?
    1. Install these packages using your package manager: build-essential, make, g++, gcc and libc6-dev. These are just some basic compiling tools that you have to install when compiling for the first time. Not all distributions use those names for these packages, so you might need to do some research on the Internet before you can proceed. On Ubuntu, you can do

      sudo apt-get install build-essential make g++ gcc libc6-dev

      to install everything required to start building.

    2. Download the wxWidgets tarball and extract it. (Note: this particular version of wxWidgets is called wxGTK, referring to the GTK toolkit. Developers often use this GNOME toolkit to develop applications for Linux.)
    3. The 'make' command in actionOpen a terminal and go to the newly created directory using the cd command.
    4. Look for a file named INSTALL.txt for install instructions. The file tells us that you have to execute these commands:

      mkdir buildgtk
      cd buildgtk
      ../configure –with-gtk=2
      make
      sudo make install
      sudo ldconfig (sometimes ’sudo /sbin/ldconfig’)

      If you get a “package/library not found”-like error message, install the necessary package and, when available, its -dev addition. Then re-execute ../configure –with-gtk=2. You might have to do this a couple of times. If you’re lucky, you won’t be bugged at all. Also keep in mind that the make command might take a while to complete depending on the speed of your computer.

  5. Let’s take a look at the rest of the requirements. The readme file included in the Audacity tarball tells us that the packages libid3tag, libmad, libogg, libvorbis and Twolame are optional. Although you can go ahead and compile Audacity without them, you won’t be able to use everything that Audacity has to offer. You can install these packages if you want by searching for them using your package manager. If there’s also a package with the same name followed by -dev available, install that one too. For example: to enable Ogg Vorbis support, you’ll need to install both libogg0 and libogg-dev. These -dev packages are usually required if you’re compiling programs manually. Ubuntu users can do:

    sudo apt-get install libid3tag0 libid3tag0-dev libmad0 libogg0 libogg-dev libvorbis0a libvorbis-dev

    to install most requirements from the Ubuntu repositories. (Note: if you’re using Ubuntu 6.06, apt-get might not find all these packages.) If you can’t find everything, don’t worry. Again: these are optional packages. If it turns out that essential functionality is missing, you can always dig up the necessary packages/libraries using Google and compile/install them later.

  6. Back to installing Audacity. Open a terminal and go to the folder where you extracted the contents of Audacity’s tarball using the cd command. Check if README.txt contains additional install instructions. The file tells us to execute these commands:

    ./configure
    make
    sudo make install (if a command is preceded by ’sudo’, it’ll be executed as root)

    If you get an error message saying it couldn’t find a certain package/library on your system, just install the missing package or library using your package manager. Then re-execute ./configure. You might have to do this several times. If you get an error saying something like “configure: error: *** Ogg Vorbis libraries not found or they are too old. (>= 1.0-rc3 required). Run configure –without-vorbis to disable it.“, it is most likely that you couldn’t find one of the optional packages. If you wish, you can build Audacity without this functionality by following the instructions. In this particular case, you can do:

    ./configure –without-vorbis

    to compile Audacity without support for Ogg Vorbis.

  7. Audacity screenshotEverything is now installed! And now, the moment we’ve all been waiting for: testing our newly installed app. Cross your fingers and execute the command audacity. To be honest, it didn’t work for me because I got this error:

    audacity: error while loading shared libraries: libwx_gtk2_xrc-2.6.so.0: cannot open shared object file: No such file or directory

    When it seems like all your hard work was useless, don’t panic. Use the Internet to find a solution instead. I’ve found a fix for my particular case:

    sudo ln /usr/local/lib/libwx* /lib/
    sudo ldconfig (in some cases ’sudo /sbin/ldconfig’)

    Try starting audacity again. Everything should work fine now.

  8. You can create a shortcut to Audacity in your start menu using alacarte (GNOME) or by launching KDE’s menu editor (right-click the K button).

Uninstalling
If you’re done playing with Audacity, open a terminal, cd into audacity-1.3.2-beta and execute:

sudo make uninstall

You can also uninstall wxWidgets if you don’t need it anymore. Open a terminal, go to wxGTK-2.6.4 and enter:

cd buildgtk
sudo make uninstall

Be careful though. If you uninstall wxWidgets, programs that require wxWidgets will stop working.

    You can start using Firefox immediately.

    Note
    Some programs such as Firefox come in .tar.gz packages but don’t have to be compiled. You can just extract the file anywhere and start using the program immediately. You can check whether a program will have to be compiled or not by searching for the following files: configure, autogen.sh, Makefile and Jamfile. If you don’t find any of these files, it probably doesn’t need to be compiled. Just search for the program executable (in the case of Firefox: ‘firefox’) to run the program.

    Summary
    In general, this is how you compile applications:

    1. Download and extract the application’s tarball.
    2. Open the extracted folder and look for a readme/install file. If there are additional requirements, install or compile them. Make sure that you download the correct version of the package.
    3. Check the readme/install file for compilation instructions.
      • If it contains compilation instructions, open a terminal, cd to the extracted folder and follow the instructions.
      • If it doesn’t contain compilation instructions, open a terminal, cd to the extracted folder and do ./configure followed by make and sudo make install.
      • If you get an error saying ./configure couldn’t be found, try ./autogen.sh instead.
      • If ./autogen.sh or ./configure (with or without parameters) terminates because of a “package/library not found”-type error, install the required stuff and re-execute the command.

    Having trouble compiling? Don’t worry, just do some research online. If you can’t fix the problem by yourself, go to one of the big Linux communities and ask for help. Remember: some programs also can be uninstalled using the make command. To uninstall the compiled program, go to the extracted folder and do:

    sudo make uninstall

    If it returns the message “make: *** No rule to make target `uninstall’. Stop.“, this uninstall method won’t work. Some applications such as wxWidgets store their Makefile (which contains the instructions for the make command) in a separate directory. In that case, cd into that directory and rerun sudo make uninstall.

    Editor’s Note: This post was written by Pieter De Decker who is the developer of the free USBsyncer and iPodCALsync!

    Copyright © 2009 CyberNet | CyberNet Forum | Learn Firefox

    Related Posts:

    Sugar Labs debuts “Sugar on a Stick” beta, for LiveUSB-derived diabetes

    After offering Sugar for the past while as an interface to run on top of your Linux distro of choice, Sugar Labs is prepping “Sugar on a Stick,” a Fedora 11-based LiveUSB distro that boots most any PC from a 1GB+ USB stick and lets a user carry their Sugar environment, files and settings wherever they roam. While the beta is currently up for download, there seem to be plenty of kinks to work out, but as the team expands and refines hardware support, we could see this potentially being more of a boon for education than the XO-1 itself; turning any PC into a Sugar PC, not just the dramatically green ones. It’s also nice to see how speedy Sugar can be free from the bonds of AMD Geode — even Atom provides quite a bit of relative pep. Check out a quick (and slightly hyperactive) hands-on video from OLPC News after the break.

    Continue reading Sugar Labs debuts “Sugar on a Stick” beta, for LiveUSB-derived diabetes

    Filed under: ,

    Sugar Labs debuts “Sugar on a Stick” beta, for LiveUSB-derived diabetes originally appeared on Engadget on Tue, 28 Apr 2009 15:26:00 EST. Please see our terms for use of feeds.

    Read | Permalink | Email this | Comments

    Ubuntu 9.04 ‘Jaunty Jackalope’ is gold, ready for download

    Sure, you can’t pronounce Ubuntu, but the latest release is ready for download anyway. Ubuntu 9.04, aka Jaunty Jackalope, comes with the promise of faster boots, better power management, immediate system access after hibernation, a new system-wide notification service, and broader device support for intelligent switching between WiFi and 3G networks. 9.04 is available in desktop, server, and netbook builds. Right, netbooks, Linux distros run just fine on netbooks regardless of what Microsoft and analysts have to say.

    Filed under: ,

    Ubuntu 9.04 ‘Jaunty Jackalope’ is gold, ready for download originally appeared on Engadget on Thu, 23 Apr 2009 08:24:00 EST. Please see our terms for use of feeds.

    Read | Permalink | Email this | Comments

    Garmin Nuvifone to Finally Launch by June

    Garmin_nuvifone_g60.jpg

    We’ve been hearing about the Garmin-ASUS nuvifone forever. Well, actually, January 2008, which was when we first heard about the “breakthrough product that cellphone and GPS users around the world have been longing for,” as the Garmin COO put it back then, according to Engadget.

    Now comes word via Boy Genius Report that the G60 handset is finally scheduled to drop sometime before June 30th. There’s still no confirmation of a carrier or price, but AT&T is looking more and more likely for the LiMo-powered handset. A 3.5-inch touchscreen–comparable to a Garmin nuvi 350 navigation unit, not to mention the iPhone 3G–and HSDPA compatibility are among the included features.

    Shuttle intros Atom 330, SUSE Linux-packin’ X270V nettop

    Go ‘head, Shuttle — break on out of that shell! The company notorious for pumping out the same barebone rectangle with a different model name and a few extra ports has finally seen fit to do something a touch different, and what we’re dealt is the X270V. This so-called Mini-PC relies on Intel’s 1.6GHz Atom 330 to push the computations, while up to 2GB of DDR2 RAM keeps things in order. There’s also gigabit Ethernet, 6-channel audio, a PS/2 connector for the retro folks, six USB sockets and VGA / DVI outputs. Shuttle also claims this bugger is energy efficient, though it doesn’t go into great detail about just how much it’ll save you each month. Oh, and it also comes loaded with openSUSE 11 (a Linux flavor, for those unaware). Interested? Move to Europe and plop down at least €299 ($390).

    [Via Slashgear]

    Filed under:

    Shuttle intros Atom 330, SUSE Linux-packin’ X270V nettop originally appeared on Engadget on Fri, 17 Apr 2009 18:59:00 EST. Please see our terms for use of feeds.

    Read | Permalink | Email this | Comments

    Garmin-Asus nüvifone G60 to rock LiMo, launch in 1H 2009

    We’ve been waiting on pins and needles for confirmation, but it looks like an all-too-vague Reuters report actually is referring to the Garmin-Asus nüvifone G60. After a senior company official noted that a “Linux-based operating system” would be used in one of its two smartphones, we pinged Garmin directly to cut through the mystery and get down to the meat. What we were told was this: “The Garmin-Asus nüvifone G60 has a proprietary Linux-based OS, and we’re still working towards delivering the nüvifone G60 in the first half of 2009 in limited markets, which haven’t been named yet.” Of course, the tandem is quickly running out in months in that window, so we’re pretty jazzed to be all up on top of an imminent release. Now, if only we knew where those patience pills made off to…

    [Via Boy Genius Report]

    Filed under:

    Garmin-Asus nüvifone G60 to rock LiMo, launch in 1H 2009 originally appeared on Engadget on Fri, 17 Apr 2009 17:16:00 EST. Please see our terms for use of feeds.

    Read | Permalink | Email this | Comments