掛載ISO文件
          “cp /dev/cdrom mycd.iso”+“mount -o loop mycd.iso /mnt/cdrom/”
          (這個我還沒試過,不敢保證好不好用哦)

          掛載硬盤給普通用戶
          (普通掛載不能對硬盤進行寫操作,加上“-o uid=用戶名”就可以任意讀寫了,跟本地硬盤效果一樣)
          sudo mount -t vfat /dev/hda5 /mnt/data -o uid=andyluo
          posted @ 2005-11-17 17:40 羅明 閱讀(625) | 評論 (0)編輯 收藏
           
          掛載ISO文件
          “cp /dev/cdrom mycd.iso”+“mount -o loop mycd.iso /mnt/cdrom/”
          (這個我還沒試過,不敢保證好不好用哦)

          掛載硬盤給普通用戶
          (普通掛載不能對硬盤進行寫操作,加上“-o uid=用戶名”就可以任意讀寫了,跟本地硬盤效果一樣)
          sudo mount -t vfat /dev/hda5 /mnt/data -o uid=andyluo
          posted @ 2005-11-17 04:05 羅明 閱讀(136) | 評論 (0)編輯 收藏
           

          SQL錯誤信息

          1、無效的描述符索引

          解決辦法:數據庫表里字段是按什么順序排的,程序也按什么順序讀。

          2、無效的游標狀態

          可能的解決辦法:用ResultSet讀數據前要先調用resultSet.next();

          posted @ 2005-11-17 03:49 羅明 閱讀(154) | 評論 (0)編輯 收藏
           
          哈爾濱的交通狀況比大連好多了,等車也不要等那么久。

          還記得在由家路的533車站,等了半個多小時的車,風那個大,kao,凍死我了

          感覺哈爾濱比大連熱鬧,在買東西的時候就會感覺到,盡管外面那么冷。

          哈爾濱人就是熱情啊!
          posted @ 2005-11-14 22:48 羅明 閱讀(67) | 評論 (0)編輯 收藏
           
          這幾天比較忙,沒時間寫Blog咯。希望下周能寫幾篇Java移動開發的文章。
          posted @ 2005-11-09 03:36 羅明 閱讀(71) | 評論 (0)編輯 收藏
           
          My first shell script: run jar files on right click
          Yesterday i learned a little about shell script, and have an idea of writing a script for running a Java jar file on right click. It's simple and easy to understand. Hmmm... a good start.
          Copy following text into a file named "runJar"(maybe another name you like ^_^), put the file in ~/.gnome2/nautilus-scripts/ directory(~ is your home directory), after that, when you right click ona jar file, you can run it via [scripts -> runJar]. Hope it will be usefull for java guys.
          #!/bin/bash
          #
          # Nautilus script -> execute a jar
          #
          # Owner : Andy Luo
          # andyluo197@hotmail.com
          #http://spaces.msn.com/members/andyluo197
          #
          # Licence : GNU GPL
          #
          # Copyright (C) Andyluo
          #
          # Ver. 0.1-1 Date: 10/31/2005
          # Execute a jar file.
          #
          # Ver: 0.1 Date: 10/31/2005
          # Initial release
          #
          # Dependence : JRE
          #
          for arg
          do
          $(java -jar "$arg")
          done
          posted @ 2005-11-02 01:13 羅明 閱讀(143) | 評論 (0)編輯 收藏
           
          My first shell script: run jar files on right click
          Yesterday i learned a little about shell script, and have an idea of writing a script for running a Java jar file on right click. It's simple and easy to understand. Hmmm... a good start.
          ?
          Copy following text into a file named "runJar"(maybe another name you like ^_^), put the file in ~/.gnome2/nautilus-scripts/ directory(~ is your home directory), after that, when you right click on?a jar file, you can run it via [scripts -> runJar]. Hope it will be usefull for java guys.
          ?
          #!/bin/bash
          #
          # Nautilus script -> execute a jar
          #
          # Owner : Andy Luo
          #?? ?? andyluo197(AT)gmail.com
          #??????http://www.aygfsteel.com/andyluo
          #
          # Licence : GNU GPL
          #
          # Copyright (C) Andyluo
          #
          # Ver. 0.1-1 Date: 10/31/2005
          # Execute a jar file.
          #
          # Ver: 0.1? Date: 10/31/2005
          # Initial release
          #
          # Dependence : JRE
          #
          for arg
          do
          $(java -jar "$arg")
          done
          posted @ 2005-11-01 17:19 羅明 閱讀(691) | 評論 (0)編輯 收藏
           
          Linux下使用Shell命令控制任務(Jobs)執行(譯文)

          e文請參考:http://www.linuxcommand.org/lts0080.php

          Linux下使用Shell命令控制任務(Jobs)執行

          下列命令可以用來操縱進程任務:
          ps 列出系統中正在運行的進程
          kill 發送信號給一個或多個進程(經常用來殺死一個進程)
          jobs 列出屬于當前用戶的進程
          bg 將進程搬到后臺運行(Background)
          fg 將進程搬到前臺運行(Foreground)

          將job轉移到后臺運行

          如果你經常在X圖形下工作,你可能有這樣的經歷:通過終端命令運行一個GUI程序,GUI界面出來了,但是你的終端還停留在原地,你不能在shell中繼續執行其他命令了,除非將GUI程序關掉。

          為了使程序執行后終端還能繼續接受命令,你可以將進程移到后臺運行,使用如下命令運行程序: #假設要運行xmms
          $xmms &


          這樣打開xmms后,終端的提示又回來了。現在xmms在后臺運行著呢(可以繼續工作和聽音樂了^_^)

          但萬一你運行程序時忘記使用“&”了,又不想重新執行(Eclipse啟動速度太慢了,我不想重啟啊,:))。你可以先使用ctrl+z掛起程序,然后敲入bg命令,這樣程序就在后臺繼續運行了。

          察看jobs

          使用jobs或ps命令可以察看正在執行的jobs。(the two have a little diff. have a try ^_^)

          kill a job

          方法一:
          通過jobs命令查看job號(假設為num),然后執行kill %num
          方法二:
          通過ps命令查看job的進程號(PID,假設為pid),然后執行kill pid

          kill的其他作用

          kill除了可以終止進程,還能給進程發送其它信號,使用kill -l 可以察看kill支持的信號。

          SIGTERM是不帶參數時kill發送的信號,意思是要進程終止運行,但執行與否還得看進程是否支持。如果進程還沒有終止,可以使用kill -SIGKILL pid,這是由內核來終止進程,進程不能監聽這個信號。

          下期預告:Writing shell scripts(跟我寫Shell腳本)

          posted @ 2005-11-01 01:59 羅明 閱讀(133) | 評論 (0)編輯 收藏
           
          看e文看的想睡覺,但又不能伏在桌上打個盹,怕影響客戶對公司的印象!?
          按理說,我都是正常時間休息的,怎么會想睡覺呢。
          估計聽音樂會好一點!
          發現看朋友的Blog也是最幸福的事啊,還能提神,這不,剛看完,我就睡意全無了,繼續工作ing。
          posted @ 2005-10-31 23:21 羅明 閱讀(83) | 評論 (0)編輯 收藏
           
          今天又吃糖了,喜事多多, hoho
          rt~
          posted @ 2005-10-31 18:22 羅明 閱讀(95) | 評論 (0)編輯 收藏
           
          Linux下使用Shell命令控制任務(Jobs)執行(譯文)

          e文請參考:http://www.linuxcommand.org/lts0080.php

          Linux下使用Shell命令控制任務(Jobs)執行

          下列命令可以用來操縱進程任務:
          ps 列出系統中正在運行的進程
          kill 發送信號給一個或多個進程(經常用來殺死一個進程)
          jobs 列出屬于當前用戶的進程
          bg 將進程搬到后臺運行(Background)
          fg 將進程搬到前臺運行(Foreground)

           

          將job轉移到后臺運行

          如果你經常在X圖形下工作,你可能有這樣的經歷:通過終端命令運行一個GUI程序,GUI界面出來了,但是你的終端還停留在原地,你不能在shell中繼續執行其他命令了,除非將GUI程序關掉。

          為了使程序執行后終端還能繼續接受命令,你可以將進程移到后臺運行,使用如下命令運行程序:  #假設要運行xmms
          $xmms &


          這樣打開xmms后,終端的提示又回來了。現在xmms在后臺運行著呢(可以繼續工作和聽音樂了^_^)

          但萬一你運行程序時忘記使用“&”了,又不想重新執行(Eclipse啟動速度太慢了,我不想重啟啊,:))。你可以先使用ctrl+z掛起程序,然后敲入bg命令,這樣程序就在后臺繼續運行了。

           

          察看jobs

          使用jobs或ps命令可以察看正在執行的jobs。(the two have a little diff. have a try ^_^)

           

          kill a job

          方法一:
          通過jobs命令查看job號(假設為num),然后執行kill %num
          方法二:
          通過ps命令查看job的進程號(PID,假設為pid),然后執行kill pid

           

          kill的其他作用

          kill除了可以終止進程,還能給進程發送其它信號,使用kill -l 可以察看kill支持的信號。

          SIGTERM是不帶參數時kill發送的信號,意思是要進程終止運行,但執行與否還得看進程是否支持。如果進程還沒有終止,可以使用kill -SIGKILL pid,這是由內核來終止進程,進程不能監聽這個信號。

           

          下期預告:Writing shell scripts(跟我寫Shell腳本)

          posted @ 2005-10-31 18:04 羅明 閱讀(3036) | 評論 (0)編輯 收藏
           
          自定義列表:名詞

          名詞

          posted @ 2005-10-31 14:08 羅明 閱讀(123) | 評論 (0)編輯 收藏
           
          免費索取Ubuntu 5.10 (Breezy)光盤

          免費索取光盤

          Ubuntu 團隊免費給你郵寄 Ubuntu 光盤,你可以用來安裝或者分享給其他人。 我們會承擔這些光盤的貨運費用。

          The link address is: http://shipit.ubuntulinux.org/

          原文見:http://www.ubuntu.org.cn/shipit

          posted @ 2005-10-28 19:15 羅明 閱讀(114) | 評論 (0)編輯 收藏
           
          自定義列表:鏈接

          鏈接

          posted @ 2005-10-28 17:47 羅明 閱讀(140) | 評論 (0)編輯 收藏
           
          Ubuntu團隊可以免費郵寄Ubuntu 5.10 (Breezy)光盤

          Ubuntu 團隊免費給你郵寄 Ubuntu 光盤,你可以用來安裝或者分享給其他人。 他們會承擔這些光盤的貨運費用。

          在此填寫你的郵寄地址: http://shipit.ubuntulinux.org/

           

          詳情見:http://www.ubuntu.org.cn/shipit

          posted @ 2005-10-28 11:15 羅明 閱讀(1342) | 評論 (2)編輯 收藏
           
          香山行 --- 2005年10月14日
          (沒有照片,所以寫些文字留作紀念)
          2005年10月14日 星期五 北京香山行
          前些日子路過北京,聽朋友介紹,去香山玩了一趟。但是沒帶照相機,除了幾疊紅葉,沒有照片與家人朋友分享了。

          8點多到的北京西站,出門坐地鐵從環線轉到1號線,在古城下車。古城已是北京的邊緣地帶了。然后坐318路,318路始發站是古城,終點站就是香山。
          這樣坐了一個多小時車,終于到香山了。盡管在北京郊區的“郊區”,背靠著山,這里還是一派小城鎮的氣象,什么都有,應該是旅游帶動的經濟吧。稍稍抬頭就可以看見山頭上大片大片的紅葉,還是第一次看見這種景象呢。(是啊,讀大學之后就很少看見山了)。游客也特別多,碰巧還趕上了“紅葉節”。
          路兩旁有賣各式各樣小商品的,有栗子、朝鮮糕點、棉花糖,最多還是經過包裝的紅葉,那種真空壓縮的塑料薄膜,里面幾片紅葉,還有放蝴蝶標本的。我一個人,輕裝上陣,倒是清閑。

          到了香山前門(買票的地方到了),門票全票10元,學生免半,呵呵,學生證派上用場了。

          。。。(登山過程就不說了,沒什么特別的,除了看紅葉和登山沒什么特別的,從上山到下山要4個多小時,所以要安排好時間哦)
          如果想享受爬山的樂趣,去香山吧
          如果想看看紅葉,去香山吧
          但香山只有爬山和紅葉,真的,怕累就不要去了。

          建議從左邊開始上(也是我的路線),(左側有一個湖,在山腰里,特別PP。當時沒帶照相機,faint)在中途轉向“紅葉區”,可以看到大片大片的紅葉。到紅葉區的山頭后,可以再繞到香爐峰(另一個山頭,香山的主峰),這樣上山算是結束了,在香爐峰上可以合影留個紀念。
          下山的時候如果感覺累,可以坐纜車下來,30元,路程挺長的,從山頂下到山腳,可以一覽群山,心情必定舒暢不少。
          如果還有時間和興致,可以隨纜車線往下走,路旁有很多野棗子樹(hehe,可不要把樹弄傷了哦),能摘到就最好了(我下山時坐的纜車,看到下面的棗子樹,紅了一片,唉,只能看著別人摘了,口饞ing)。
          現在應該是紅葉最多最紅的時候了。
          上次沒有看到紅色的楓葉,都是那種橢圓的紅葉(黃櫨),不知道在哪邊可以看到紅色的楓葉?
          btw: 下山后是下午2點,感覺還有時間,就打電話給和佳的老楊,去他們公司look look。有好幾個朋友都在那里呢!都是公司的開發骨干啊。我呢,也得剝削一下,順便蹭了頓飯吃,呵呵,最后還得感謝老楊把我送到火車站。晚上9點多,我又踏上了到大連的火車。
          posted @ 2005-10-27 23:58 羅明 閱讀(106) | 評論 (0)編輯 收藏
           
          (Ubuntu)Touring the Universe ( ZZ )

          jorgeOct 26, 2005- Show original item

          Have you ventured beyond Ubuntu’s default GNOME desktop applications? There’s a wealth of great tools available in the Ubuntu repositories. The Universe is a huge place, and it’s easy to get overwhelmed by the amount of software available. But don’t worry, because Jorge ‘whiprush’ Castro will pilot our guided tour of universe applications that will make you fall in love with Ubuntu all over again. Whether you’re an experienced user or brand new to Linux, there’s always new hidden gems in Ubuntu waiting to be discovered.

          Pre-flight Checklist

          Universe is composed of packages from Debian that aren’t fully supported by Ubuntu. But we need not worry - the MOTU team of over 30 developers ensures these packages build and work, and they’re very responsive to bug reports.

          Universe requires some manual set up before being used. Luckily for us, our hard working ground crew (aka the Documentation Team) has already outlined the process for us. Once you’ve followed those steps, you’re ready to go.

          Blast Off!

          The deskbar-applet is a small multipurpose text box which sits in the panel. Typing in the box allows you to quickly search amazon.com, Google, wikipedia, yahoo, ebay, Creative Commons, and even Beagle. It also acts as an application launcher, allowing you to launch applications or open folders right from your panel. Fridge Tip: The default keyboard shortcut to use the applet is Alt-F3.

          The Breezy release features two new applications that improve the Ubuntu laptop experience. GNOME Power Manager is an application which monitors and lets you control many power management features on modern laptops.

          The NetworkManager tool provides an easy to use applet for controlling wireless interfaces. It features autoscanning, graphical control of which network to join, and Virtual Private Networking support for Cisco VPNs. This allows a user to click on the icon, see which networks are available, and then join one by clicking on the name of the network. It automatically gets an IP address and shows a graphical status icon. It also manages wired connections, so when a user plugs in an ethernet cable, NetworkManager will automatically configure the wired connection.

          Both NetworkManager and gnome-power-manager are relatively new, so there are still instances where it might not work for you, but development on both tools is progressing rapidly, so if you have problems with these, make sure you revisit them when Ubuntu 6.04 is released.

          Gobby is a small collaborative text editor that updates documents in real time. Think of it as a multi-user gEdit. One user starts a session as a host, creates or opens a document, and then the other users join that session. The bottom of the application has an IRC-like window for chatting, while the user-assigned colors allow the users to see who is making changes to which specific portions of the file.

          Brightside is a tool for making “hot corners” on your desktop. You can assign different tasks to each corner; for example, you can configure it so that your screensaver activates when you move the mouse cursor to the bottom left corner. Fridge Tip: You can also make Brightside switch the workspace as you move the mouse to the edge of the screen.

          Gajim is a Jabber client with a simple interface. It supports different icon themes and full support for using the user’s GPG key to encrypt instant messaging traffic. A built-in notification dialog the user of incoming instant messages. The included “Human” color theme also looks great on an Ubuntu desktop.

          The Mono Galaxy

          This part of the universe is well travelled, but we’ll do a quick flyby just in case. Tomboy is a simple applet that allows you to quickly take and organize notes. Tomboy automatically links text in a note to another note’s title as it’s being written, so as the user continues to make notes the application it becomes a self-referencing wiki-like repository of information. Clicking on the icon shows the recent edited notes and a search feature.

          f-spot is a photo management application. It includes camera import support and exporting to Flickr, Gallery, or to CD-R/W. The GNOME Journal has a fairly complete introduction to f-spot.

          Two newly forming stars, the Banshee music player (with iPod read and write support) and the famous Beagle desktop search are also available, but they’re still being developed, so we’ll have to check up on them next time.

          Keep on Truckin’…

          Monkey Bubble is a bust-a-move clone that is great for killing a few hours. The goal is to shoot a colored bubble at the stack of other colored bubbles near the top of the screen. When three bubbles of the same color come in contact, they explode. The goal is to clear the screen of bubbles before they fill up your screen. Fridge Tip: It supports up to 4 players with network play on a LAN, so set aside some time with your friends.

          Here’s a program that we should have used before we left! Celestia is a space simulator, a “browser” for the solar system. It allows you to seamlessly move between heavenly bodies and explore the real universe in three dimensions.

          glabels is a program for making printed labels. It has support for over 100 kinds of labels, just pick a template, insert the text, and print.

          Manually trudging through art sites for nifty artwork can be a pain. gnome-art takes the hard work out of the process, by connecting to the art.gnome.org web service and letting you browse and download wallpapers right from the application itself.

          Sometimes it’s just plain difficult to explain something to someone over the phone or via chat. Istanbul places a record button in your notification area. Clicking on it makes Istanbul record your desktop session as a video. After you’ve made your video, clicking on it again stops the recording and outputs the file as Ogg video. As you can see from the screenshot, it also supports streaming the video directly to an Icecast server.

          The Trip Home

          So, not a bad little journey. You’d be surprised what you can find if you go out and look for adventure, and we haven’t even scratched the surface of applications, so make sure you keep checking in so we can keep freewheeling through space. Feel free to contact me if you’ve found hidden nebula of desktop goodness and we’ll bring the ship on by.

          posted @ 2005-10-27 20:11 羅明 閱讀(168) | 評論 (0)編輯 收藏
           
          Linux更新時的版本問題
          系統更新時“一不小心”裝了下一版本的組件,結果他依賴的若干組件也要更新。
          因為不能聯網,上網更新不太可能,只有等Ubuntu的光盤寄過來了。
          本來想先回滾回去,但更新的時候好像影響了很多服務(包括ssh),怕回滾后系統出問題,先還是不動了,就讓那個組件處于Broken狀態吧,好像也沒什么關系。
          btw: 今天上午接到一個電話,當時在辦公室沒接,掛過去后說是郵局,但不知道是誰打過來的,還一個勁的問怎么不接,估計是那邊生氣了,hehe,待會再打電話過去問問,有可能是Ubuntu的光盤到了,這么快嗎?聽說好像得1個多月呢!God bless 是Ubuntu的光盤到了^_^
          posted @ 2005-10-27 18:35 羅明 閱讀(131) | 評論 (0)編輯 收藏
           
          香山行 --- 2005年10月14日
          (沒有照片,所以寫些文字留作紀念)
          2005年10月14日 星期五 北京香山行
          ?
          前些日子路過北京,聽朋友介紹,去香山玩了一趟。但是沒帶照相機,除了幾疊紅葉,沒有照片與家人朋友分享了。

          8點多到的北京西站,出門坐地鐵從環線轉到1號線,在古城下車。古城已是北京的邊緣地帶了。然后坐318路,318路始發站是古城,終點站就是香山。
          ?
          這樣坐了一個多小時車,終于到香山了。盡管在北京郊區的“郊區”,背靠著山,這里還是一派小城鎮的氣象,什么都有,應該是旅游帶動的經濟吧。稍稍抬頭就可以看見山頭上大片大片的紅葉,還是第一次看見這種景象呢。(是啊,讀大學之后就很少看見山了)。游客也特別多,碰巧還趕上了“紅葉節”。
          ?
          路兩旁有賣各式各樣小商品的,有栗子、朝鮮糕點、棉花糖,最多還是經過包裝的紅葉,那種真空壓縮的塑料薄膜,里面幾片紅葉,還有放蝴蝶標本的。我一個人,輕裝上陣,倒是清閑。

          到了香山前門(買票的地方到了),門票全票10元,學生免半,呵呵,學生證派上用場了。

          。。。(登山過程就不說了,沒什么特別的,除了看紅葉和登山沒什么特別的,從上山到下山要4個多小時,所以要安排好時間哦)
          ?
          如果想享受爬山的樂趣,去香山吧
          如果想看看紅葉,去香山吧
          但香山只有爬山和紅葉,真的,怕累就不要去了。

          建議從左邊開始上(也是我的路線),(左側有一個湖,在山腰里,特別PP。當時沒帶照相機,faint)在中途轉向“紅葉區”,可以看到大片大片的紅葉。到紅葉區的山頭后,可以再繞到香爐峰(另一個山頭,香山的主峰),這樣上山算是結束了,在香爐峰上可以合影留個紀念。
          ?
          下山的時候如果感覺累,可以坐纜車下來,30元,路程挺長的,從山頂下到山腳,可以一覽群山,心情必定舒暢不少。
          ?
          如果還有時間和興致,可以隨纜車線往下走,路旁有很多野棗子樹(hehe,可不要把樹弄傷了哦),能摘到就最好了(我下山時坐的纜車,看到下面的棗子樹,紅了一片,唉,只能看著別人摘了,口饞ing)。
          ?
          現在應該是紅葉最多最紅的時候了。
          ?
          上次沒有看到紅色的楓葉,都是那種橢圓的紅葉(黃櫨),不知道在哪邊可以看到紅色的楓葉?
          ?
          btw: 下山后是下午2點,感覺還有時間,就打電話給和佳的老楊,去他們公司look look。有好幾個朋友都在那里呢!都是公司的開發骨干啊。我呢,也得剝削一下,順便蹭了頓飯吃,呵呵,最后還得感謝老楊把我送到火車站。晚上9點多,我又踏上了到大連的火車。
          posted @ 2005-10-27 15:58 羅明 閱讀(1391) | 評論 (3)編輯 收藏
           
          (Ubuntu)Touring the Universe ( ZZ )

          jorgeOct 26, 2005?-? Show original item

          Have you ventured beyond Ubuntu’s default GNOME desktop applications? There’s a wealth of great tools available in the Ubuntu repositories. The Universe is a huge place, and it’s easy to get overwhelmed by the amount of software available. But don’t worry, because Jorge ‘whiprush’ Castro will pilot our guided tour of universe applications that will make you fall in love with Ubuntu all over again. Whether you’re an experienced user or brand new to Linux, there’s always new hidden gems in Ubuntu waiting to be discovered.

          Pre-flight Checklist

          Universe is composed of packages from Debian that aren’t fully supported by Ubuntu. But we need not worry - the MOTU team of over 30 developers ensures these packages build and work, and they’re very responsive to bug reports.

          Universe requires some manual set up before being used. Luckily for us, our hard working ground crew (aka the Documentation Team) has already outlined the process for us. Once you’ve followed those steps, you’re ready to go.

          Blast Off!

          The deskbar-applet is a small multipurpose text box which sits in the panel. Typing in the box allows you to quickly search amazon.com, Google, wikipedia, yahoo, ebay, Creative Commons, and even Beagle. It also acts as an application launcher, allowing you to launch applications or open folders right from your panel. Fridge Tip: The default keyboard shortcut to use the applet is Alt-F3.

          The Breezy release features two new applications that improve the Ubuntu laptop experience. GNOME Power Manager is an application which monitors and lets you control many power management features on modern laptops.

          The NetworkManager tool provides an easy to use applet for controlling wireless interfaces. It features autoscanning, graphical control of which network to join, and Virtual Private Networking support for Cisco VPNs. This allows a user to click on the icon, see which networks are available, and then join one by clicking on the name of the network. It automatically gets an IP address and shows a graphical status icon. It also manages wired connections, so when a user plugs in an ethernet cable, NetworkManager will automatically configure the wired connection.

          Both NetworkManager and gnome-power-manager are relatively new, so there are still instances where it might not work for you, but development on both tools is progressing rapidly, so if you have problems with these, make sure you revisit them when Ubuntu 6.04 is released.

          Gobby is a small collaborative text editor that updates documents in real time. Think of it as a multi-user gEdit. One user starts a session as a host, creates or opens a document, and then the other users join that session. The bottom of the application has an IRC-like window for chatting, while the user-assigned colors allow the users to see who is making changes to which specific portions of the file.

          Brightside is a tool for making “hot corners” on your desktop. You can assign different tasks to each corner; for example, you can configure it so that your screensaver activates when you move the mouse cursor to the bottom left corner. Fridge Tip: You can also make Brightside switch the workspace as you move the mouse to the edge of the screen.

          Gajim is a Jabber client with a simple interface. It supports different icon themes and full support for using the user’s GPG key to encrypt instant messaging traffic. A built-in notification dialog the user of incoming instant messages. The included “Human” color theme also looks great on an Ubuntu desktop.

          The Mono Galaxy

          This part of the universe is well travelled, but we’ll do a quick flyby just in case. Tomboy is a simple applet that allows you to quickly take and organize notes. Tomboy automatically links text in a note to another note’s title as it’s being written, so as the user continues to make notes the application it becomes a self-referencing wiki-like repository of information. Clicking on the icon shows the recent edited notes and a search feature.

          f-spot is a photo management application. It includes camera import support and exporting to Flickr, Gallery, or to CD-R/W. The GNOME Journal has a fairly complete introduction to f-spot.

          Two newly forming stars, the Banshee music player (with iPod read and write support) and the famous Beagle desktop search are also available, but they’re still being developed, so we’ll have to check up on them next time.

          Keep on Truckin’…

          Monkey Bubble is a bust-a-move clone that is great for killing a few hours. The goal is to shoot a colored bubble at the stack of other colored bubbles near the top of the screen. When three bubbles of the same color come in contact, they explode. The goal is to clear the screen of bubbles before they fill up your screen. Fridge Tip: It supports up to 4 players with network play on a LAN, so set aside some time with your friends.

          Here’s a program that we should have used before we left! Celestia is a space simulator, a “browser” for the solar system. It allows you to seamlessly move between heavenly bodies and explore the real universe in three dimensions.

          glabels is a program for making printed labels. It has support for over 100 kinds of labels, just pick a template, insert the text, and print.

          Manually trudging through art sites for nifty artwork can be a pain. gnome-art takes the hard work out of the process, by connecting to the art.gnome.org web service and letting you browse and download wallpapers right from the application itself.

          Sometimes it’s just plain difficult to explain something to someone over the phone or via chat. Istanbul places a record button in your notification area. Clicking on it makes Istanbul record your desktop session as a video. After you’ve made your video, clicking on it again stops the recording and outputs the file as Ogg video. As you can see from the screenshot, it also supports streaming the video directly to an Icecast server.

          The Trip Home

          So, not a bad little journey. You’d be surprised what you can find if you go out and look for adventure, and we haven’t even scratched the surface of applications, so make sure you keep checking in so we can keep freewheeling through space. Feel free to contact me if you’ve found hidden nebula of desktop goodness and we’ll bring the ship on by.

          posted @ 2005-10-27 12:12 羅明 閱讀(534) | 評論 (0)編輯 收藏
          僅列出標題
          共14頁: First 上一頁 4 5 6 7 8 9 10 11 12 下一頁 Last 
           
          主站蜘蛛池模板: 江华| 平武县| 深圳市| 普兰店市| 明水县| 鞍山市| 浪卡子县| 襄城县| 突泉县| 星子县| 临城县| 呼和浩特市| 千阳县| 永年县| 维西| 印江| 临城县| 亚东县| 华阴市| 得荣县| 凤山市| 鄯善县| 平罗县| 泰兴市| 城固县| 隆安县| 寿阳县| 安岳县| 门头沟区| 文昌市| 灵寿县| 莲花县| 汉中市| 耿马| 焦作市| 冕宁县| 兴海县| 鄂尔多斯市| 万年县| 舒城县| 钟祥市|