Archive

‘Novell SuSE Linux Enterprise’ 分類過的Archive

SUSE Linux Rescue Mode grub-install 使用方式

2010年6月30日 Figaro Yang 尚無評論

印象中之前我曾經介紹過這個操作模式,但突然找不到之前發的那篇文章,由於很多朋友跟我詢問在 SUSE Linux 底下,到底要怎樣執行 grub-install呢?操作方式其實蠻簡單的,步驟如下所示:

  1. 首先,請透過光碟開機進入 Rescue Mode 項目
  2. 接著,於 login:後方輸入 root 進行登入 ( 不需要密碼 )
  3. 假設我的磁碟分割區如下:
    /dev/sda1    /
    /dev/sda2   swap
    /dv/sda3    /home
    那麼,請執行:
    mount /dev/sda1 /mnt
  4. 接著重新安裝 GRUB的語法為:
    grub-install --root-directory=/mnt /dev/sda
  5. 就是這麼簡單,由於掛到 /mnt 目錄為你的 / 系統,因此你也可以進入裡面修整與調整相關檔案配置

Banshee 檔名亂碼問題解決

2010年4月9日 Figaro Yang 3 則評論

很多音樂再轉檔案時因為ID3標籤編碼問題會造成播放器的名稱產生亂碼,雖然不影響播放的功能,但看起來就是有著那麼一點不舒服,若你也是使用Banshee這個播放器,碰到同樣的問題時,解決方式如下所示:

1) zypper in python-mutagen  首先安裝 python-mutagen 這個 Python 程式,待會我們要透過它來解決編碼問題

2) 接著,移動到你的 MP3 存放目錄內,執行:

find . -name "*.mp3" -exec mid3iconv -e gbk {} \;

或者是

find . -name "*.mp3" -exec mid3iconv -e big5 {} \;

這兩個指令差別在於將 gbk 編碼的轉成 UTF-8或是將 Big5 編碼的轉成 UTF-8,基本上若是你的音樂檔案本身就是採用 UTF-8編碼的標籤則不會受到影響

於OpenSUSE Linux添加 IPv6 網路配置

2009年12月22日 Figaro Yang 尚無評論

剛好最近有些朋友的服務單位開始使用 IPv6 網路配置了,因此把配置方式留下紀錄,新版本的 OpenSUSE 11.2 已經可以直接透過 YaST2 控制中心中的網路裝置來直接設定 IPv6 網路,不過我這邊還是以文字介面為主,讓大家比較容易知道是如何運作的,這次會修改的檔案一共有兩個,分別為:

  • 網路組態檔案:/etc/sysconfig/network/ifcfg-ethX

    首先在這個檔案內需要添加上取得的 IPv6位址資訊於檔案的尾端:

    LABEL_0='0'
    IPADDR_0='IPv6位址'
    PREFIXLEN_0='64'

  • 路由組態檔案:/etc/sysconfig/network/routs

    在檔案尾端添加上IPv6的路由位址,資訊如下:

    default IPv6路由位址 - -

設定完畢後可以直接透過 rcnetwork restart,然後進行下列測試,若可以得到回應變表示已經可以正常運作了。

s1:~ # ping6 ipv6.google.com
PING ipv6.google.com(tx-in-x68.1e100.net) 56 data bytes
64 bytes from tx-in-x68.1e100.net: icmp_seq=1 ttl=52 time=12.9 ms
64 bytes from tx-in-x68.1e100.net: icmp_seq=2 ttl=52 time=12.2 ms
64 bytes from tx-in-x68.1e100.net: icmp_seq=3 ttl=52 time=14.2 ms

What do you do with Linux ?

2009年6月28日 Figaro Yang 尚無評論

既上次的 geeko 圖像產生工具之後,Novell SLES 11 又有一個可以贏得大獎的活動嚕,那就是 " What do you do with Linux ? ",有興趣的朋友只要拍下一段影片,告訴大家你和Linux間的愛恨情仇,微妙關係 ( 當然不能講壞的阿 ~ 要拍好的正向的宣導影片 ),那就有機會奪得大獎 ^^

當然,如果你也是害羞一族的,沒關係,再這個網站上也提供幾張不錯的 Geeko 桌布讓使用者下載使用,還在等什麼呢?立刻拿起你的手機自拍一下吧。

SUSE® Linux Enterprise Server 11 上市 ~ 開放下載

2009年3月26日 Figaro Yang 尚無評論

新版本的SUSE® Linux Enterprise Server11系列於3/24號正式開放下載,新版本的相關更新內容包含有:

  • Reliability, availability and serviceability advances

SUSE Linux Enterprise Server 11 now supports Swap over NFS. Data center managers can leverage remote storage for local server needs and denser “diskless” server systems to reduce their acquisition, implementation, administration, and management costs. By using Swap over NFS, data center managers can cost-effectively protect their systems against application restarts and expensive downtime. Also new in SUSE Linux Enterprise Server 11 are control groups and CPUset for more fine-grained management of CPU, memory, storage and networking resources.

閱讀全文...

Run Internet Explorer on Linux

2007年2月2日 Figaro Yang 尚無評論

Novell 的 Cool Solutions,總算可以解決部分ASP元件無法在Firefox上啟用的問題了,有興趣的朋友可以參考看看http://www.novell.com/coolsolutions/feature/18418.html

Novell SUSE官方技術手冊

2007年1月30日 Figaro Yang 尚無評論

Novell官方所提供的相關學習文件下載,有興趣的朋友可以下載閱讀http://www.novell.com/documentation/suse.html

於SLES10使用php4搭配apache2解決方案

2006年12月14日 Figaro Yang 尚無評論

由於SLES10已經改使用php5作為預設的apache2搭配模組, 閱讀全文...