Fedora15 와 Ubuntu등 특허기간이 남아있는관계로 OS에 기본적으로 codec패키지들이 없습니다.
특히나 Ubuntu보다 Fedora는 기본적인 소프트웨어 관리자에 여러가지 패키지가 누락되어있습니다.


root 권한으로 당근 터미널에서요..

# rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
# rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

두줄을 설치합니다.
설치할 패키지들의 위치를 업데이트 한다고 보시면 됩니다. ㅋ
 
 
[jabcholove@localhost ~]$ su
암호:
[root@localhost ~]# rpm -ivh
rpm: 설치할 패키지가 지정되지 않았습니다
[root@localhost ~]# rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm(을)를 복구합니다
경고: /var/tmp/rpm-tmp.i1Nkmo: Header V3 RSA/SHA256 Signature, key ID a3780952: NOKEY
준비 중...               ########################################### [100%]
   1:rpmfusion-free-release ########################################### [100%]
[root@localhost ~]# rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm(을)를 복구합니다
경고: /var/tmp/rpm-tmp.9KV58m: Header V3 RSA/SHA256 Signature, key ID 2425b284: NOKEY
준비 중...               ########################################### [100%]
   1:rpmfusion-nonfree-relea########################################### [100%]
[root@localhost ~]#
 


codec 플러그인 + 어플리케이숀 설치 (bad, ugly 등등)
 
[root@localhost ~]# yum -y install gstreamer-plugins-bad gstreamer-plugins-ugly xine-lib-extras-nonfree gstreamer-ffmpeg       // 필수!

[root@localhost ~]# yum install xine xine-lib libdvdcss    //xine으로 영화보실분은 설치하셈요 ㅎ 안쓰실꺼면 노설치

[root@localhost ~]# 
yum -y install vlc                 //vlc로 영화보기위해 설치하실분은 설치하셈요. 리눅스사용자라면.. 필수 ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ
 

위의 명령어는 terminal에서 실행해야합니다.

 소프트웨어 관리자에서 패키지의 이름들로 검색후 설치하셔도됩니다... 만..-_- 더 귀찮어요 ㅋㅋㅋㅋㅋㅋ

 

 


fedora linux를 처음설치할때 기본으로 httpd,mysql,php 를 설치했을경우는 별도의 설정이 필요없습니다. mysql DB생성과 사용자를 인식하게 두가지만 설정해주면 됩니다.

처음설치에 포함안되있다면
아파치 서버 인스톨을 합니다.
apache1.x. 버젼과 달리 2.x.x버젼에서는 httpd라는 이름을 가지게 됩니다.

 - install httpd
아파치가 설치되있는지 알아봅니다. 
[root@www ~]# rpm -qa | grep httpd 
 아무것도 안나오면 설치되지 않은겁니다. 인제 설치합니다.

#설치 
[root@www ~]# yum -y install httpd

 # 테스트 페이지를 삭제합니다.
[root@www ~]# rm -f /etc/httpd/conf.d/welcome.conf
[root@www ~]#
rm -f /var/www/error/noindex.html

#Perl 링크를 만들어줍니다.
[root@www ~]#
rm -f /user/bin/perl /user/local/bin/perl

 - httpd 설정 http버젼에 따라 줄이 다를수 있지만 찾아보면 다 나옵니다.
설정파일을 vi,vim으로 열어줍니다.루트 사용자로..
[root@www ~]# vi /etc/httpd/conf/httpd.conf

# line 44: change
ServerTokens Prod

# line 76: change to ON
KeepAlive On

# line 262: Admin's address - 이메일주소변경
ServerAdmin root@jabcholove.tistory.com

# line 276: change to your server's name - 서버이름변경 없으면 localhost
ServerName www.jabcholove.com:80

# line 331: change (enable CGI and disable Indexes)
Options FollowSymLinks ExecCGI

# line 338: change
AllowOverride All

# line 402: add file name that it can access only with directory's name
DirectoryIndex index.html index.cgi index.php

# line 536: change
ServerSignature Off

# line 796: uncomment and add file-type that apache looks them CGI
AddHandler cgi-script .cgi .pl .php

#아파치웹서버를시작합니다.
 
[root@www ~]# /etc/rc.d/init.d/httpd start 
Starting httpd (via systemctl): Starting httpd: [ OK ]

[ OK ]
[root@www ~]# chkconfig httpd on 



- test 페이지 만들고 확인하기.

[root@www ~]# 
vi /var/www/html/index.html
<html>
<body>
<div style="width: 100%; text-align: center;">
teststssssssssssssssssssssssssssssssssssssssttttttttt+_+ 
</div>
</body>
</html>

흰패이지로 나오면 권한부여해줘본다.
[root@www ~]# chmod 705 /var/www/html/index.html
 


 Cgi 테스트 페이지만들고 웹브라우져로 확인하기
[root@www ~]# vi /var/www/html/index.cgi



#!/usr/local/bin/perl

print "Content-type: text/html\n\n";
print "<html>\n<body>\n";
print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n";
print "CGI Test Page";
print "\n</div>\n";
print "</body>\n</html>\n";




[root@www ~]# chmod 705 /var/www/html/index.cgi
 


Fedora


  • Based on: Independent
  • Origin: USA 
  • Architecture: i686, x86_64
  • Desktop: GNOME, KDE, LXDE,Openbox, Xfce
  • Category: Desktop, Server, Live Medium
레드햇의 시험판이라할수있는 Fedora15입니다.
 
페도라에서 안정적인 팩키지를 레드햇엔터프라이즈에 제공하고,
레드햇은 페도라 프로젝트에 재정지원을 해주고 그런식입니다.

페도라는 공짜입니다.

데스크탑용 리눅스로서도 세손가락안에 꼽힙니다.
1위는 우분투 ㅎ 2위는 리눅스민트(데비안,우분투기반) 3위 페도라 거의 이런식입니다.
 
CentOS는,
 Fedora에서 마루타?로 개발-->red hat enterprise-->CentOS식으로
유료레드햇엔터프라이즈의 클론판이라 할수있습니다. 따라서 빌드가 제일 느린겁니다. 하지만 안정성은 뛰어납니다.

fedora15는 loverock이라는 코드명아래  많은 패키지들이 추가, 빌드업되었습니다.  그중에 가장큰변화는 xwindow 관리자가, Gnome3 로 업글되었는데요. 정식판으로 역시 안정성도 뛰어납니다.

3Dunity를 이용하는 Gnome3는 아직 뭔가 부족한 모습을 보이긴하지만 앞으로의 발전가능성을 보여주는 시작이라 할수있겠습니다.

리눅스가 어렵다는 인식을 많이 바꿔줄수도있을것같고 데스크탑용으로도 충분히 사용하는데 부족함이 없다는것을 다시한번 알리는데 도움이 되리라 봅니다. 
 
CentOS.5.6도 설치해서 사용해보시길 추천합니다. ^0 ^ 


Fedora Summary
Distribution Fedora Project
Home Page http://fedoraproject.org/
Mailing Lists http://fedoraproject.org/wiki/Communicate
User Forums Fedora Forum
Documentation http://docs.fedoraproject.org/
http://fedoraproject.org/wiki/Docs
Screenshots The Coding Studio
Download Mirrors http://fedoraproject.org/get-fedora.html
http://torrent.fedoraproject.org/
http://mirrors.fedoraproject.org/publiclist
Bug Tracker https://bugzilla.redhat.com/

Feature rawhide 15
lovelock
14
laughlin
Release Date 2011/06/08 2011/05/24 2010/11/02
Price (US$) Free Free Free
CDs 1 DVD 1 DVD 1 DVD
Free Download ISO ISO ISO
Installation Graphical Graphical Graphical
Default Desktop GNOME GNOME GNOME
Package Management RPM (yum) RPM (yum) RPM (yum)
Office Suite GOffice, LibreOffice* LibreOffice OO.o
Processor Architecture i686, ppc, ppc64, s390, s390x, x86_64 i686, x86_64 i686, x86_64
Journaled File Systems ext3, ext4, XFS ext3, ext4, XFS ext3, ext4, XFS
Multilingual Yes Yes Yes
Asian Language Support Yes Yes Yes

Package rawhide 15
lovelock
14
laughlin
abiword (2.8.6) 2.8.6 -- --
alsa-lib (1.0.24.1) 1.0.24 1.0.24 1.0.23
amarok (2.4.1) 2.4.1 2.4.1 2.3.2
ati-driver (8.850) -- -- --
bash (4.2) 4.2 4.2 4.1
bind (9.8.0-P2) 9.8.0 9.8.0-P1 9.7.2-P2
chromium (r88135) -- -- --
compiz (0.8.8) 0.9.4 -- 0.8.6
cups (1.4.6) 1.5 1.4.6 1.4.4
db (5.1.25) 5.1.25 5.1.25 5.0.26
dhcp (4.2.1-P1) 4.2.1 4.2.1-P1 4.2.0
emacs (23.3) 23.3 23.3 23.2
firefox (4.0.1) 4.0.1 4.0.1 3.6.10
freetype (2.4.4) 2.4.4 2.4.4 2.4.2
gcc (4.6.0) 4.6.0 4.6.0 4.5.1
gimp (2.6.11) 2.6.11 2.6.11 2.6.11
glibc (2.14) 2.14 2.13.90 2.12.90
gnucash (2.4.6) 2.4.5 -- --
gnumeric (1.10.15) 1.10.15 -- --
grub (1.99) 0.97 0.97 0.97
gtk+ (3.0.11) 2.24.4 3.0.9 2.22.0
hal (0.5.14) -- 0.5.14 0.5.14
httpd (2.2.19) 2.2.17 2.2.17 2.2.16
inkscape (0.48.1) 0.48.1 -- --
jre (6u26) -- -- --
k3b (2.0.2) 2.0.2 2.0.2 2.0.1

Package rawhide 15
lovelock
14
laughlin
kdebase (4.6.3) 4.6.3 4.6.2 4.5.2
libgnome (2.32.1) 2.32.1 2.32.1 2.32.0
linux (2.6.39.1) 3.0 2.6.38.6 2.6.35.6
module-init-tools (3.16) 3.16 3.12 3.11.1
mono (2.10.2) 2.10.2 -- --
mysql (5.5.13) 5.5.13 5.5.10 5.1.51
nautilus (3.0.2) 3.1.1 3.0.1 2.32.0
NVIDIA (270.41.19) -- -- --
OpenOffice.org (3.3.0) -- 3.3.2* 3.3.0
openssh (5.8p2) 5.8p2 5.6p1 5.5p1
openssl (1.0.0d) 1.0.0d 1.0.0d 1.0.0a
perl (5.14.0) 5.12.3 5.12.3 5.12.2
php (5.3.6) 5.3.6 5.3.6 5.3.3
pidgin (2.8.0) 2.7.11 -- --
postfix (2.8.3) 2.8.3 -- --
postgresql (9.0.4) 9.0.4 9.0.4 8.4.5
Python (3.2) 2.7.1 2.7.1 2.7
qt-x11 (4.7.3) 4.7.3 4.7.2 4.7.0
samba (3.5.8) 3.5.8 3.5.8 3.5.5
sendmail (8.14.5) 8.14.5 8.14.4 8.14.4
thunderbird (3.1.10) 3.1.10 3.1.10 3.1.4
udev (171) 171 167 161
vim (7.3) 7.3 7.3 7.2
xfce (4.8) 4.8.2 4.8 --
xine-lib (1.1.19) 1.1.19 1.1.19 1.1.19
xorg-server (1.10.2) 1.10.99.1 1.10.1 1.9.0



This howto explains howto install Google Chrome Web browser on Fedora 14Fedora 13Fedora 12 and Red Hat 6 (RHEL 6). Best way to install and keep up-to-date with Google Chrome browser is use Google’s own YUM repository.

Enable Google YUM repository

Add following to /etc/yum.repos.d/google.repo file:
32-bit

[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

64-bit

[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

Note: Both 32-bit and 64-bit repos can be placed in the same file.

Install Google Chrome with YUM (as root user)

Install Google Chrome Stable Version

## Install Google Chrome Stable version ##
yum install google-chrome-stable

Install Google Chrome Beta Version

## Install Google Chrome Beta version ##
yum install google-chrome-beta

Install Google Chrome Unstable Version

## Install Google Chrome Unstable version ##
yum install google-chrome-unstable

'리눅스관련' 카테고리의 다른 글

[fedora15] apache web server - httpd install  (0) 2011.06.10
ubuntu 11.4 에서 unity 2D 설치  (0) 2011.06.09
CentOS Network 설정  (0) 2011.06.06
CentOS 설정파일 위치  (0) 2011.06.06
Centos 5.X에서 MP3재생  (0) 2011.06.06

+ Recent posts