Skip to main content

Ubuntu Linux: Built-in apps get an "A", wireless support an "F"

Posted by Dennis O'Reilly

It didn't take long after installing Canonical Ltd.'s Ubuntu 7.10 version of Linux for me to decide I liked what I saw. A quick tour of the Applications, Places, and System menus indicated that converting from Windows to Linux would be relatively seemless. The only fly in the ointment was my inability to get any of three wireless adapters to work with the OS.


World-class applications without paying a dime

I expected to find the Mozilla Firefox browser bundled with Ubuntu, and seeing links on the Applications*Office menu to OpenOffice.org's Database, Presentation, Spreadsheet, and Word Processor apps--all of which are compatible with their Microsoft Office equivalents--was no surprise. But some of Ubuntu's other built-in programs were a nice bonus: the F-Spot Photo Manager, GIMP Image Editor, OpenOffice.org Drawing app, and XSane Image Scanner give you all the graphics functions you're likely to need; and for audio and video processing, you get Movie Player, Rhythmbox Music Player, Serpentine Audio CD-Creator, Sound Juicer CD Extractor, and Sound Recorder.
[Cue late-night-TV announcer] But wait, there's more! For VoIP, use the Ekiga Softphone app; for e-mail, there's the popular Evolution open-source program; and when the IM bug bites, open the Pidgen client (previously known as Gaim), which supports just about every IM system out there. You also get about a dozen games, including Blackjack, Sudoku, and a Tetris knockoff; there's even a version of my favorite time-waster, Mahjongg.


Fly in the Ubuntu ointment: Wireless woes

"Too good to be true," I'm thinking as I work my way through Ubuntu's many options. And indeed I hit the wall when I tried to connect to my wireless network. The Linksys WPC300N PCMCIA adapter worked without a hitch when I booted the laptop in XP, but Ubuntu didn't recognize it. I searched the many Ubuntu forums for a solution and found that the Ndiswrapper utilities I needed to mimic the adapter's Windows driver weren't enabled. I tried the adapter again after enabling the wrappers, but still got nowhere. Next I downloaded and installed the Ndisgtk utility that lets you install device drivers without having to deal with the command line in Ubuntu's Terminal application.



copied the driver files from their CD to the Ubuntu desktop, and then pointed to the appropriate .inf file in the Wireless Network Drivers utility it added (via the System*Administration*Windows Wireless Drivers shortcut that Ndisgtk provides). I now had a "Wireless connection" option in the Network Settings window (see below), but no matter how I configured the connection, I couldn't log onto my wireless network.



After going through the same process with another PCMCIA card and a USB wireless adapter and getting the same results, I decided to do some more trolling for a solution on the Linux forums. I tried several of the suggestions offered by forum denizens, but nothing worked. That's when I decided to stick with the wired Ethernet link, which connected to the network right away.
While the wireless glitches made me glad I dual-booted Ubuntu with Windows (so I could simply load Windows when I needed to connect to a wireless network), I was disappointed that I wouldn't be able to use Ubuntu the same way I use Windows, at least not until I figure out why I couldn't get Ubuntu to establish a wireless link. I haven't given up hope of replacing Windows with Linux, but neither am I willing to spend hours searching for a solution to a problem I can avoid simply by loading Windows.


ref : http://www.cnet.com/8301-13880_1-9839735-68.html

Comments

Popular posts from this blog

rm 대신에 trash 를 사용합니다

리눅스에서 GUI환경에서는 삭제하면 휴지통으로 들어가는데... 콘솔에서 rm 명령으로 삭제하면 휴지통에 들어가지 않고 바로 삭제 됩니다. 실수로 삭제할 경우 복구 하기도 힘들고 해서 rm 명령어 대신에 trash 명령으로 휴지통으로 보내 버리도록 합니다. -------------------------------------------- apt-get install trash-cli -------------------------------------------- 로 trash 설치후 .profile 이나 .bashrc 파일을 열어 alias 를 추가합니다. -------------------------------------------- alias rm='trash' -------------------------------------------- 끝.

안드로이드 프로그램 개발: [Android(안드로이드) 앱 개발 응용] Location GPS 위치 가져오기 및 최적...

안드로이드 프로그램 개발: [Android(안드로이드) 앱 개발 응용] Location GPS 위치 가져오기 및 최적... :  * 이번에는 Location Manager를 이용해서 현재 사용자의 위치를 측정하는 방법을 공부해보자. * Location 측정 방법 : 현재 안드로이드 상에서는 다양한 방법으로 사용자의 위치를 측정하고 있다. GPS는 가장 정확하지만 실외에서만 제대로 작동하고, 배터리 소모가 심각하고, 사용자가 원하는만큼 빠르게 위치를 계산하지 못한다. 또 다른 방법으로는 안드로이드의 네트워크 위치 프로바이더를 이용하는 것인데, 통신사의 cell tower와 와이파이 신호의 위치를 통해서 실내와 실외 모두에서 측정가능한 방법인데다 응답고 빠르고 베터리 소모가 심하지 않지만, 정확성이 조금 떨어지는 단점이 있다. 따라서 사용자의 위치를 구할 때에는 GPS를 사용하거나 네트워크 위치 플바이더를 사용하거나 둘다 사용할수도 있다. .....