網頁

2013年2月25日 星期一

[Linux][Fedora] 安裝LibreOffice4




參考連結:http://www.if-not-true-then-false.com/2012/install-libreoffice-on-fedora-centos-red-hat-rhel/

下載x64和語言包

# wget http://download.documentfoundation.org/libreoffice/stable/4.0.0/rpm/x86_64/LibreOffice_4.0.0_Linux_x86-64_rpm.tar.gz
# wget http://download.documentfoundation.org/libreoffice/stable/4.0.0/rpm/x86_64/LibreOffice_4.0.0_Linux_x86-64_rpm_langpack_zh-TW.tar.gz


下載 仿windows介面(選,適用於fedora18以上)

# yum install pangox-compat


解壓縮

# tar -xvf LibreOffice_4.*.tar.gz


安裝

# cd LibreOffice_4.0.0_Linux_x86-64_rpm
# yum localinstall RPMS/*.rpm RPMS/desktop-integration/libreoffice4.0-freedesktop-menus-4.*.noarch.rpm

# cd LibreOffice_4.0.0_Linux_x86-64_rpm_langpack_zh-TW
# yum localinstall RPMS/*.rpm 

[Linux] 新增root權限帳戶

參考連結:
1. http://www.xiaoxiaozi.com/2009/07/21/1209/
2. http://linux.vbird.org/linux_basic/0410accountmanager.php
3. http://blog.yam.com/gavint/article/23251174

useradd -r -m -s /bin/bash -u 0 -o -g 0 <使用者帳戶>
passwd <使用者密碼>

-r 建立系統帳號
-m 建立家目錄
-s 定義使用者登入後所使用的 shell
-u <uid> uid為0是指派root權限
-o 允許使用相同的uid 搭配-u <uid>使用
-g <gid> gid為0是指配root群組


使用者帳號/密碼相關參數:/etc/passwd, /etc/shadow
使用者群組相關參數:/etc/group, /etc/gshadow
使用者個人檔案資料: /home/username

2013年2月21日 星期四

[Linux][Fedora] Nvidia重新安裝的Error問題

參考連結:http://dariofaggioli.wordpress.com/2013/02/19/nvidia-31032-kernel-377/

Linux環境:Fedora17、3.7.6-102.fc17.x86_64


終於搞定... 差點以為這次又要重灌了。
這次問題google了很久繞了一大圈,沒想到這麼簡單的一行指令就解決了...

原本預定升級kernel同時,打算跟著和以前一樣把Nvidia的驅動移除再重新安裝一次時,
沒想到竟然出現了下面的error訊息。

ERROR: If you are using a Linux 2.4 kernel, please make sure
you either have configured kernel sources matching your
kernel or the correct set of kernel headers installed
on your system.

If you are using a Linux 2.6 kernel, please make sure
you have configured kernel sources matching your kernel
installed on your system. If you specified a separate
output directory using either the "KBUILD_OUTPUT" or
the "O" KBUILD parameter, make sure to specify this
directory with the SYSOUT environment variable or with
the equivalent nvidia-installer command line option.

Depending on where and how the kernel sources (or the
kernel headers) were installed, you may need to specify
their location with the SYSSRC environment variable or
the equivalent nvidia-installer command line option.

ERROR: Installation has failed. Please see the file
'/var/log/nvidia-installer.log' for details. You may find suggestions
on fixing installation problems in the README available on the Linux
driver download page at www.nvidia.com.


為了這個找出一堆patch、重新再編譯的解法,無奈還是無解。

當我找到了上方的參考連結一個簡單指令,解決。

# ln -s /usr/src/kernels/3.7.6-102.fc17.x86_64/include/generated/uapi/linux/version.h /usr/src/kernels/3.7.6-102.fc17.x86_64/include/linux/version.h

紅字地方請改上你家的kernel版本號

2013年2月6日 星期三

[筆記] 在Linux的環境下如何用root的權限下開啟chrome














網路上資料是不少,不過大部分跟著打都有問題。
所以用我自己能理解的方式自己紀錄一下。

Linux環境:CentOS 6.3

編輯 google-chrome

# vim /opt/google/chrome/google-chrome

exec -a "$0" "$HERE/chrome" "$@" --user-data-dir=/opt/chrome





好了之後存檔就能執行了