instalasi berbagai format file di fedora 8

Berikut ini cara menginstal file-file dengan berbagai format di fedora.

Sebelumnya atur previledge anda sebagai root, salah satu caranya

# su -

kemudian masukkan password root anda.

instalasi file berformat .bin

# chmod +x samplefile.bin

# ./samplefile.bin

instalasi file berformat .run

# chmod +x samplefile.run

# ./samplefile.run

untuk beberapa file driver lebih baik menggunakan

# sh samplefile.run

instalasi file berformat .sh

# chmod +x samplefile.sh

# ./samplefile.sh

atau

# sh samplefile.sh

atau

# bash samplefile.sh

instalasi file berformat .rpm

# rpm -ivh samplefile.rpm

bila untuk upgrade

# rpm -Uvh samplefile.rpm

instalasi file berformat .tar.gz

# tar -xvzf samplefile.tar.gz

# cd samplefile

# ./configure

# make

# make install

instalasi file berformat .tar.bz2

# tar -xvjf samplefile.tar.gz

# cd samplefile

# ./configure

# make

# make install

1 thought on “instalasi berbagai format file di fedora 8”

Leave a Reply

Your email address will not be published. Required fields are marked *