Slackware hata

Başlatan acemiyim91, 15 Aralık 2008 - 14:26:20

« önceki - sonraki »

0 Üyeler ve 2 Ziyaretçi konuyu incelemekte.

acemiyim91

 Slackware 12.1 kurdum.Terminal çalıştırmaya çalışınca pc cevap vermiyor, kilitleniyor ve reset atmak zorunda kalırıyorum.CTRL+ALT+F1 yapınca geçiyor ancak alta komut giremiyorum.
root@slackware:~# yazmıyor sadece boş oluyor.Ancak Konsole var ordan işlemler yapabiliyorum ama neden Terminal çalışmıyor anlamadım.KDE paketi ile ilgili bir sorun olabilir mi?
10 tane boş cd im vardı hepsine slackware yazdırdım.iso ları doğrulattım.Sadece Terminal çalışmıyor.
Bir soru daha;
CD leri hataya karşı nasıl taratabilirim.Ubuntu da ki gibi "CD hatalara karşı tara"seçeneği yok.
Başka bir soru daha;
DNS leri elle girmem lazım, opendns kullanıcam. /etc/resolv.conf dosyasına
nameserver 208.67.222.222.
nameserver  208.67.220.220

kaydedip çıkıyorum bir kaç saniye sonra tekrar eskli haline dönüyor

nameserver 192.168.1.1

Şimdilik sorularım bu kadar, şimdiden teşekkürler.

OKAN

Alıntı yapılan: acemiyim91 - 15 Aralık 2008 - 14:26:20
Bir soru daha;
CD leri hataya karşı nasıl taratabilirim.Ubuntu da ki gibi "CD hatalara karşı tara"seçeneği yok.

md5sum denetiminden geçirebilirsin. Slackware' de çok sorun yaşıyor ve böyle üst düzey bir dağıtım kullanmak istiyorsan ARCH' ı araştırmanı tavsiye ederim.

acemiyim91

Kotalar sıfırlandığı zaman deneyeceğim teşekkür ederim.
CD içindeki hangi dosyayı md5sum ile taratıcam ki?Yoksa reset atıp cd den mi yapıcam?

heartsmagic

Terminal dediğin ne, konsol dediğin ne?
CD kontrolü olacağını sanmıyorum, kaldı ki senin hatan onunla alakalı görülmüyor artık.
/etc/rc.d/rc.inet1 dosyası mevcutsa bir görebilir miyiz DNS için.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

acemiyim91


#! /bin/sh
# /etc/rc.d/rc.inet1
# This script is used to bring up the various network interfaces.
#
# @(#)/etc/rc.d/rc.inet1 10.2  Sun Jul 24 12:45:56 PDT 2005  (pjv)

############################
# READ NETWORK CONFIG FILE #
############################

# Get the configuration information from /etc/rc.d/rc.inet1.conf:
. /etc/rc.d/rc.inet1.conf

###########
# LOGGING #
###########

# If possible, log events in /var/log/messages:
if [ -f /var/run/syslogd.pid -a -x /usr/bin/logger ]; then
  LOGGER=/usr/bin/logger
else # output to stdout/stderr:
  LOGGER=/bin/cat
fi

############################
# DETERMINE INTERFACE LIST #
############################

# Compose a list of interfaces from /etc/rc.d/rc.inet1.conf (with a maximum
# of 6 interfaces, but you can easily enlarge the interface limit
# - send me a picture of such a box :-).
# If a value for IFNAME[n] is not set, we assume it is an eth'n' interface.
# This way, the new script is compatible with older rc.inet1.conf files.
# The IFNAME array will be used to determine which interfaces to bring up/down.
MAXNICS=6
i=0
while [ $i -lt $MAXNICS ];
do
  IFNAME[$i]=${IFNAME[$i]:=eth${i}}
  i=$(($i+1))
done
if [ "$DEBUG_ETH_UP" = "yes" ]; then
  echo "/etc/rc.d/rc.inet1:  List of interfaces: '${IFNAME[@]}'" | $LOGGER
fi

######################
# LOOPBACK FUNCTIONS #
######################

# Function to bring up the loopback interface.  If loopback is
# already up, do nothing.
lo_up() {
  if grep lo: /proc/net/dev 1> /dev/null ; then
    if ! /sbin/ifconfig | grep "^lo" 1> /dev/null ; then
      echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig lo 127.0.0.1" | $LOGGER
      /sbin/ifconfig lo 127.0.0.1
      echo "/etc/rc.d/rc.inet1:  /sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo" | $LOGGER
      /sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo
    fi
  fi
}

# Function to take down the loopback interface:
lo_down() {
  if grep lo: /proc/net/dev 1> /dev/null ; then
    echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig lo down" | $LOGGER
    /sbin/ifconfig lo down
  fi
}

#######################
# INTERFACE FUNCTIONS #
#######################

# Function to bring up a network interface.  If the interface is
# already up or does not yet exist (perhaps because the kernel driver
# is not loaded yet), do nothing.
if_up() {
  # Determine position 'i' of this interface in the IFNAME array:
  i=0
  while [ $i -lt $MAXNICS ]; do
    [ "${IFNAME[$i]}" = "${1}" ] && break
    i=$(($i+1))
  done
  # If the interface isn't in the kernel yet (but there's an alias for it in
  # modules.conf), then it should be loaded first:
  if ! grep `echo ${1}: | cut -f 1 -d :`: /proc/net/dev 1> /dev/null ; then # no interface yet
    if /sbin/modprobe -c | grep -w "alias ${1}" | grep -vw "alias ${1} off" > /dev/null ; then
      echo "/etc/rc.d/rc.inet1:  /sbin/modprobe ${1}" | $LOGGER
      /sbin/modprobe ${1}
    fi
  fi
  if grep `echo ${1}: | cut -f 1 -d :`: /proc/net/dev 1> /dev/null ; then # interface exists
    if ! /sbin/ifconfig | grep -w "${1}" 1>/dev/null || \
      ! /sbin/ifconfig ${1} | grep "inet addr" 1> /dev/null ; then # interface not up or not configured
      if [ ! "${HWADDR[$i]}" = "" ]; then # Set hardware address _before_ the interface goes up:
        echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig ${1} hw ether ${HWADDR[$i]}" | $LOGGER
        /sbin/ifconfig ${1} hw ether ${HWADDR[$i]}
      fi
      if [ ! "${MTU[$i]}" = "" ]; then # Set MTU to something else than 1500
        echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig ${1} mtu ${MTU[$i]}" | $LOGGER
        /sbin/ifconfig ${1} mtu ${MTU[$i]}
      fi
      if [ -x /etc/rc.d/rc.wireless ]; then
        . /etc/rc.d/rc.wireless ${1} start # Initialize any wireless parameters
      fi
      if [ "${USE_DHCP[$i]}" = "yes" ]; then # use DHCP to bring interface up
        [ ${DHCP_HOSTNAME[$i]} ] && DHCP_OPTIONS="-h ${DHCP_HOSTNAME[$i]}"
        [ "${DHCP_KEEPRESOLV[$i]}" = "yes" ] && DHCP_OPTIONS="$DHCP_OPTIONS -R"
        [ "${DHCP_KEEPNTP[$i]}" = "yes" ] && DHCP_OPTIONS="$DHCP_OPTIONS -N"
        [ "${DHCP_KEEPGW[$i]}" = "yes" ] && DHCP_OPTIONS="$DHCP_OPTIONS -G"
        [ ${DHCP_IPADDR[$i]} ] && DHCP_OPTIONS="$DHCP_OPTIONS -s ${DHCP_IPADDR[$i]}"
        echo "Polling for DHCP server on interface ${1}:"
        # If you set a timeout, you get one, even if the kernel doesn't think that
        # your device is connected, in case /sys isn't right (which it usually isn't
        # except right after the device is loaded, when it usually is):
        if [ "${DHCP_TIMEOUT[$i]}" = "" ]; then
          ifconfig ${1} up && sleep 1
          CONNSTATUS="$(cat /sys/class/net/${1}/carrier 2> /dev/null)"
          ifconfig ${1} down
          if [ "$CONNSTATUS" = "0" ]; then
            # The kernel has just told us the cable isn't even plugged in, but we will
            # give any DHCP server a short chance to reply anyway:
            echo "No carrier detected on ${1}.  Reducing DHCP timeout to 10 seconds."
            DHCP_TIMEOUT[$i]=10
          fi
        fi
        # 30 seconds should be a reasonable default DHCP timeout.  60 was too much.  :-)
        echo "/etc/rc.d/rc.inet1:  /sbin/dhcpcd -d -t ${DHCP_TIMEOUT[$i]:-30} ${DHCP_OPTIONS} ${1}" | $LOGGER
        /sbin/dhcpcd -d -t ${DHCP_TIMEOUT[$i]:-30} ${DHCP_OPTIONS} ${1}
      else # bring up interface using a static IP address
        if [ ! "${IPADDR[$i]}" = "" ]; then # skip unconfigured interfaces
          # Determine broadcast address from the IP address and netmask:
          BROADCAST[$i]=`/bin/ipmask ${NETMASK[$i]} ${IPADDR[$i]}|cut -f1 -d' '`
          # Set up the network card:
          echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig ${1} ${IPADDR[$i]} broadcast ${BROADCAST[$i]} netmask ${NETMASK[$i]}" | $LOGGER
          /sbin/ifconfig ${1} ${IPADDR[$i]} broadcast ${BROADCAST[$i]} netmask ${NETMASK[$i]}
        else
          if [ "$DEBUG_ETH_UP" = "yes" ]; then
            echo "/etc/rc.d/rc.inet1:  ${1} interface is not configured in /etc/rc.d/rc.inet1.conf" | $LOGGER
          fi
        fi
      fi
    else
      if [ "$DEBUG_ETH_UP" = "yes" ]; then
        echo "/etc/rc.d/rc.inet1:  ${1} is already up, skipping" | $LOGGER
      fi
    fi
  else
    if [ "$DEBUG_ETH_UP" = "yes" ]; then
      echo "/etc/rc.d/rc.inet1:  ${1} interface does not exist (yet)" | $LOGGER
    fi
  fi
}

# Function to take down a network interface:
if_down() {
  # Determine position 'i' of this interface in the IFNAME array:
  i=0
  while [ $i -lt $MAXNICS ]; do
    [ "${IFNAME[$i]}" = "${1}" ] && break
    i=$(($i+1))
  done
  if grep `echo ${1}: | cut -f 1 -d :`: /proc/net/dev 1> /dev/null ; then
    if [ "${USE_DHCP[$i]}" = "yes" ]; then
      echo "/etc/rc.d/rc.inet1:  /sbin/dhcpcd -k -d ${1}" | $LOGGER
      /sbin/dhcpcd -k -d ${1} 2> /dev/null || /sbin/ifconfig ${1} down
      sleep 1
    else
      echo "/etc/rc.d/rc.inet1:  /sbin/ifconfig ${1} down" | $LOGGER
      /sbin/ifconfig ${1} down
    fi
    if [ -x /etc/rc.d/rc.wireless ]; then
      . /etc/rc.d/rc.wireless ${1} stop # Kill wireless daemons if any.
    fi
  fi
}

#####################
# GATEWAY FUNCTIONS #
#####################

# Function to bring up the gateway if there is not yet a default route:
gateway_up() {
  if ! /sbin/route -n | grep "^0.0.0.0" 1> /dev/null ; then
    if [ ! "$GATEWAY" = "" ]; then
      echo "/etc/rc.d/rc.inet1:  /sbin/route add default gw ${GATEWAY} metric 1" | $LOGGER
      /sbin/route add default gw ${GATEWAY} metric 1 2>&1 | $LOGGER
    fi
  fi
}

# Function to take down an existing default gateway:
gateway_down() {
  if /sbin/route -n | grep "^0.0.0.0" 1> /dev/null ; then
    echo "/etc/rc.d/rc.inet1:  /sbin/route del default" | $LOGGER
    /sbin/route del default
  fi
}

# Function to start the network:
start() {
  lo_up
  for i in ${IFNAME[@]} ; do
    if_up $i
  done
  gateway_up
}

# Function to stop the network:
stop() {
  gateway_down
  for i in ${IFNAME[@]} ; do
    if_down $i
  done
  lo_down
}


############
### MAIN ###
############

case "$1" in
'start') # "start" brings up all configured interfaces:
  start
  ;;
'stop') # "stop" takes down all configured interfaces:
  stop
  ;;
'restart') # "restart" restarts the network:
  stop
  start
  ;;
*_start) # Example: "eth1_start" will start the specified interface 'eth1'
  INTERFACE=`echo $1 | /bin/cut -d '_' -f 1`
  if_up $INTERFACE
  gateway_up
  ;;
*_stop) # Example: "eth0_stop" will stop the specified interface 'eth0'
  INTERFACE=`echo $1 | /bin/cut -d '_' -f 1`
  if_down $INTERFACE
  ;;
*_restart) # Example: "wlan0_restart" will take 'wlan0' down and up again
  INTERFACE=`echo $1 | /bin/cut -d '_' -f 1`
  if_down $INTERFACE
  sleep 1
  if_up $INTERFACE
  gateway_up
  ;;
'up') # "up" does the same thing as "start"
  start
  ;;
'down') # "down" does the same thing as "stop"
  stop
  ;;
*_up) # "*_up" does the same thing as "*_start"
  INTERFACE=`echo $1 | /bin/cut -d '_' -f 1`
  if_up $INTERFACE
  gateway_up
  ;;
*_down) # "*_down" does the same thing as "*_stop"
  INTERFACE=`echo $1 | /bin/cut -d '_' -f 1`
  if_down $INTERFACE
  ;;
*) # The default is to bring up all configured interfaces:
  lo_up
  for i in ${IFNAME[@]} ; do
    if_up $i
  done
  gateway_up
esac

# End of /etc/rc.d/rc.inet1

ALT+F2>Terminal  > yazıyorum pc kilitleniyor açılıyormuş gibi oluyor.
ALT+F2>Konsole > sorunsuz çalışıyor.
Bunlar;
[IMG]http://img216.yukle.tc/thumbs/4514Goruntu_Yakalayc1.png[/img]

ebubekirs

Bu terminal-konsol-uçbirim vb. için şahsen tercih ettiğim ve hiç sorun çıkarmayan genel uygulama

xterm

dir :) İşletim sistemleri genellikle X terminali için kendilerince, daha albenisi olan, yazıtipi daha göze hitap eden, renkli, ancak bir o kadar da sistem kaynağı tüketen uygulamalar kullanıyorlar. Yukarıdaki komut her türlü işinizi görecektir.
Dünyaya gelen de benim, dünyadan giden de benim

heartsmagic

Terminal diye bir şey yok zaten.
Linux altında sanal terminallerin kendisine Ctrl+Alt+F# serisi ile ulaşırsın. X üzerinden ulaştıklarınsa terminal emülatörleridir. Bu Gnome altında gnome-terminal, KDE altında konsole, XFCE altında xfce-terminal, bağımsız olarak xterm, urxvt gibi emülatörlerdir. Sen KDE kullandığına göre konsole kullanacaksın. Fakat sistem sen Terminal diyerek bir şey çalıştırmaya kalkıştığında neden çakılıyor bir fikrim yok.

DNS sorunu içinse, bana verdiğin dosyadaki şu satırı:

/sbin/dhcpcd -d -t ${DHCP_TIMEOUT[$i]:-30} ${DHCP_OPTIONS} ${1}

şu şekilde değiştir:

/sbin/dhcpcd -d -t -R ${DHCP_TIMEOUT[$i]:-30} ${DHCP_OPTIONS} ${1}

sonra tekrar dene bakalım. Ağı yeniden başlatman gerekecek ama.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

acemiyim91

@heartsmagic bey olmadı.
DNS leri yapmam lazım yoksa Slackware de internete giremicem.
http://www.slackware.org.tr/ kayıt oluyorum aktivasyon kodu gelmiyor.Hotmail de denedim mynet de. bunu bildirmeliyiz onlara ama nasıl?

acemiyim91

#8
Alıntı Yap
ftp linux.org.tr

yaz. eğer bağlanıyorsa, DNS sorunun var demektir. DHCP'den DNS adreslerinin otomatik alınmasını engellemen gerekiyor. TTNET ADSL kullanıcısı isen, /etc/resolv.conf dosyasına

nameserver 195.175.39.39
nameserver 195.175.39.40

satırlarını girmen lazım. Sonrasında network hizmetini yeniden başlat. Bazen şöyle bir sorun olduğu bildiriliyor. İnternetteki forumlarda şöyle bir şer dolaşıyor;

İnsanlar /etc/resolv.conf dosyasını düzenliyor ve kaydediyor ama network hizmeti ve dhcpd yeniden başlayınca /etc/resolv.conf dosyasını sıfırlıyor ve bunun çözümü bulunamıyor. En azından ben bu sorunu aştım diyeni duymadım. Redhat/Suse/Ubuntu/Fedora/CentOS gibi sistemlerde bu sıfırlamayı engellemek için çözümler var ama slack'ta bunu çözen duymadım. Eğer içimizden birisi bu sorunu çözmüşse ve çözebilirse, lütfen bizimle paylaşşsın
-------------------------------------------------------------------------------

ben dns adreslerini netconfig ile ekliyorum hiçde sıfırlama olmuyor.

http://www.slackware.org.tr/index.php?option=com_joomlaboard&Itemid=19&func=view&id=1362&catid=4
Benimde netconfig ile eklemem lazım o zaman ama orada hangi adımda ve nasıl  yazıcağımı bilmiyorum tabii ki :)

heartsmagic

netconfig sana basit bir iki soru sorar, çalıştırıp dene eminim yaparsın. Fakat benim dediğim şekilde neden olmadı onu da anlamış değilim. resolv.conf'un sıfırlanmasına sebep olan şey dhpcd olayı. Onu da engelleyen şeyin -R parametresi olması lazım. Ubuntu'daki gibi bir yol da deneyebilirsin aslında, tabii dhclient.conf mevcutsa Slackware altında. Forumda DNS değiştirme anlatılıyor.

Fakat bu işin en güzel çözümü sabit IP almaktır.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

heartsmagic

ATI nasıl bir hata veriyor? Xfree86 dediğin şeyi yeni xorg'tur ve tabii ki kurulu gelir aksi takdirde masaüstünü göremezdin :)

Not: Slackware cidden araştırma isteyen bir dağıtımdır, henüz Linux mantığını kavramamışken kullanmak için Google'ın pîr-i muazzaması olmak gerekir :)
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

acemiyim91

ATI radeon hatası;

root@slackware:~/Desktop# ./ati-driver-installer-8.28.8.run
Creating directory fglrx-install
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.28.8...
==================================================
ATI Technologies Linux Driver Installer/Packager
==================================================
Detected configuration:
Architecture: i686 (32-bit)
which: no XFree86 in (/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin)
X Server: unable to detect
Removing temporary directory: fglrx-install


Sitesinden xfree86 ve xorg indirdim.Onlarıda kurmaya çalıştığımda şu hatayı alıyorum;


</root/Desktop/fglrx_4_3_0-8.28.8-1.i386.rpm';echo RESULT=$?
error: Failed dependencies:
/bin/sh is needed by fglrx_4_3_0-8.28.8-1
ld-linux.so.2 is needed by fglrx_4_3_0-8.28.8-1
libc.so.6 is needed by fglrx_4_3_0-8.28.8-1
libdl.so.2 is needed by fglrx_4_3_0-8.28.8-1
libexpat.so.1 is needed by fglrx_4_3_0-8.28.8-1
libfontconfig.so.1 is needed by fglrx_4_3_0-8.28.8-1
libfreetype.so.6 is needed by fglrx_4_3_0-8.28.8-1
libgcc_s.so.1 is needed by fglrx_4_3_0-8.28.8-1
libICE.so.6 is needed by fglrx_4_3_0-8.28.8-1
libm.so.6 is needed by fglrx_4_3_0-8.28.8-1
libpthread.so.0 is needed by fglrx_4_3_0-8.28.8-1
libSM.so.6 is needed by fglrx_4_3_0-8.28.8-1
libstdc++.so.5 is needed by fglrx_4_3_0-8.28.8-1
libX11.so.6 is needed by fglrx_4_3_0-8.28.8-1
libXcursor.so.1 is needed by fglrx_4_3_0-8.28.8-1
libXext.so.6 is needed by fglrx_4_3_0-8.28.8-1
libXft.so.2 is needed by fglrx_4_3_0-8.28.8-1
libXmu.so.6 is needed by fglrx_4_3_0-8.28.8-1
libXrandr.so.2 is needed by fglrx_4_3_0-8.28.8-1
libXrender.so.1 is needed by fglrx_4_3_0-8.28.8-1
libXt.so.6 is needed by fglrx_4_3_0-8.28.8-1
libz.so.1 is needed by fglrx_4_3_0-8.28.8-1
librt.so.1 is needed by fglrx_4_3_0-8.28.8-1
/bin/bash is needed by fglrx_4_3_0-8.28.8-1
libc.so.6(GLIBC_2.0) is needed by fglrx_4_3_0-8.28.8-1
libc.so.6(GLIBC_2.1) is needed by fglrx_4_3_0-8.28.8-1
libc.so.6(GLIBC_2.1.3) is needed by fglrx_4_3_0-8.28.8-1
libc.so.6(GLIBC_2.2) is needed by fglrx_4_3_0-8.28.8-1
libc.so.6(GLIBC_2.2.3) is needed by fglrx_4_3_0-8.28.8-1
libdl.so.2(GLIBC_2.0) is needed by fglrx_4_3_0-8.28.8-1
libdl.so.2(GLIBC_2.1) is needed by fglrx_4_3_0-8.28.8-1
libgcc_s.so.1(GCC_3.0) is needed by fglrx_4_3_0-8.28.8-1
libgcc_s.so.1(GLIBC_2.0) is needed by fglrx_4_3_0-8.28.8-1
libm.so.6(GLIBC_2.0) is needed by fglrx_4_3_0-8.28.8-1
libm.so.6(GLIBC_2.1) is needed by fglrx_4_3_0-8.28.8-1
libm.so.6(GLIBC_2.2) is needed by fglrx_4_3_0-8.28.8-1
libpthread.so.0(GLIBC_2.0) is needed by fglrx_4_3_0-8.28.8-1
libpthread.so.0(GLIBC_2.1) is needed by fglrx_4_3_0-8.28.8-1
librt.so.1(GLIBC_2.2) is needed by fglrx_4_3_0-8.28.8-1
libstdc++.so.5(GLIBCPP_3.2) is needed by fglrx_4_3_0-8.28.8-1

   



heartsmagic

Başka bir yerden xorg falan indirme. Sende zaten kurulu o. Boşuna kürek çekmiş olursun. ATI neden o yollarda aradığını bulamıyor anlamış değilim.

Bu hangi kart için olan sürücü?
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

acemiyim91

9200 pro.Nerde alakasız bozukluklar var beni buluyor hep.
Eğer DNS leri elle girmessem internete bağlanamıyorum.
netconfig de nereye DNS leri yazacağımı bilmiyorum.
Enter hostname-> slackware yazdım.
Enter Domain name ->localhost.com yazdım.
DHCP seçtim.
Set DHCP NAME-> boş bıraktım.
DNSler nereye yazılacak ki?
/etc/dhclient.conf var yazdım DNS ler çalışmadı.

# dhclient.conf
#
# Configuration file for ISC dhclient (see 'man dhclient.conf')
#
prepend domain-name-servers 208.67.222.222, 208.67.220.220;

Şu an tek istediğim Ekran kartımın kurulması ve DNS leri girmek.Başka bir şey istemeyeceğim. :) :) :)

heartsmagic

DNS sormuyor muymuş o? Slackware'den ayrılalı uzun zaman oldu, hatırlamıyorum inan :)
Benim gördüğüm DNS çözümü işe yaramadı, başka alternatiflere bakmak lazım. Mesela şunu deneyebilirsin:

Önce DNS'leri resolv.conf'a işle.


su
chattr +i /etc/resolv.conf


ile dosyayı erişime kapatalım bakalım. Bir sonraki başlangıçta eğer DNS'ler yerinde duruyorsa ne âlâ. Yoksa biraz bakınmak gerekecek sanırım.

ATI neden öyle bir hata veriyor anlamış değilim. Hiç ATI denememiştim Slackware üzerindeyken, Nvidia ile mutlu mesut geçiniyorduk. Yine bu konu hakkında bir Google danışıklığı gerekiyor fakat benim şu saat itibariyle bakmam pek mümkün değil. Kendin bir miktar bakın, müsait olunca ben de bakmaya çalışırım.
Hayattan çıkarı olmayanların, ölümden de çıkarı olmayacaktır.
Hayatlarıyla yanlış olanların ölümleriyle doğru olmalarına imkân var mıdır?


Böylece yalan, dünyanın düzenine dönüştürülüyor.

hasansahin

netconfig komutuyla sabit almanı tavsiye ederim. TTnet abonesi isen, sabit IP numaran 192.168.1.2 veya 3 olmalıdır. Gateway 192.168.1.1 olmalıdır. DNS adreslerini de ilgili yere girip kaydetmen gerekir.
sonrasında ise,

/etc/rc.d/rc.inet1 restart

komutunu vererek network hizmetini yeniden başlatmalısın. netconfig komutunu kullanmadan da /etc/rc.d/rc.inet1.conf(sabit IP) ve /etc/hosts(DNS)dosyasını düzenlerek sonuca gidebilirsin. DHCPd kullandığımızda maalesef DNS'leri sıfırlıyor. Bunun çözümünü bende bulamadım.
ATI ekran kartını slackware altında bende kullanmadım ama sürücüyü yüklerken böyle bir hata vermesi normal değil. www.slacky.it adresindeki depolardan 12.1 için ATI sürücülerini arattır. Belkide hazırlamışlardır. Çünkü akıllarına her geleni paketliyorlar :)

heartmagic'in dediği gibi slackware çok sert bir dağıtımdır ve çok fazla tecrübe ister. Maalesef slack hakkında çok fazla türkçe kaynak bulmakta sıkıntı oluyor.
Geçmiş zamanlarda slackware ile ilgili birkaç link vermiştim, forumda arama yaparsan bulabilirsin.
Anyone who has never made a mistake has never tried anything new.
Albert Einstein.

acemiyim91

#16
Şu paketler kurulu olmadığı için ekran kartı kurulmuyor indirdim rpm paketi ama kuramıyorum;

· XFree86-Mesa-libGL
· libstdc++
· libgcc
· XFree86-libs
· fontconfig
· expat
· freetype
· zlib


Bir kaçı zaten kurulumda geldi ama XFreeler ve libgcc yi kurmam gerek.
rpm olduğu için kuramadım bir türlü;
XFCE masaüstünü tercih ettim terminal bozuk resimde.

[IMG]http://img222.yukle.tc/thumbs/3249snapshot2.png[/img]


Bir sitede aynı hatayı karşılarşmış birini buldum ama o galiba polonyaca yada öyle birşeydei :)
Ati sitesindekileri yapmış kurmuş

Detected configuration:
Architecture: i686 (32-bit)
which: no XFree86 in (/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin)
X Server: unable to detect
Removing temporary directory: fglrx-install

hasansahin

RPM paketleri indirip sistemini bozma, ayrıca full kurulum yapılmış bir slackware, ati ekran kartı kurulumu için aşağıda bahsettiğin paketlere ihtiyaç duyamaz.
Aşağıdaki linkte slackware altında ati sürücü kurulumunu anlatan türkçe bir döküman var.

http://doctus.org/slackware-ati-s-r-c-t33355.html?s=e0518782aadd8742817391e6d3cd54d7&amp;
Anyone who has never made a mistake has never tried anything new.
Albert Einstein.

acemiyim91


sh ./ati-driver-installer-8-10-x86.x86_64.run

Bu çalışsa zaten kurulcak bundan sonra hatayı veriyor.

acemiyim91

#19
linuxquestions da ati kurulumu var ama ingilizce olmadığı için anlamadım.
ATI Drivers
Now here is a little something contributed by dawizman. He realized that not everyone is using the Nvidia video cards, so he was nice enough to give me these steps for getting the ATI drivers working. If you use this, make sure you pay attention. Following my directions will have you upgrading to xfree86 4.4, then to the xorg Xserver, and also using the 2.6.5 kernel. Looks like the ATI drivers wouldn't be to happy about that.

Note: You cannot use Xfree 4.4 or kernel 2.6 with these drivers.


Download the proper drivers for your X-Free version off of ATI.com ( http://ati.com/support/driver.html )

Then login as root

su

Then cd into the directory containing the drivers and run the following:


rpm2tgz filename.rpm
installpkg filename.tgz
cd /lib/modules/fglrx/build_mod
sh make.sh
cd ..
sh make_install.sh

Make sure in your Kernel that you have the DO NOT have DRI compiled or Moduled in and that for agpgart you have it Moduled in with your correct AGP Chipset compiled in. From there type in the ATI X config command that is giving at the last command to go through there auto XF86Config maker. Then load the modules for your AGP Chipset and fglrx like so


modprobe agp-gart
modprobe intel-agp
modprobe fglrx

Then run ATI's xf-config utility


fglrxconfig




Ati sitesinden check.sh indirdim çalıştırdım, burda ne diyor?
Desktop# sh check.sh
=====================================================================
ATI Technologies
=====================================================================
You are either not running this script from the console
or simply do not have console ownership.  Requirement failed.
Unable to determine XFree86 Version. Stopping now.


xorg.conf dosyam

# File generated by xf86config.

#
# Copyright (c) 1999 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **********************************************************************
# Refer to the XF86Config(4/5) man page for details about the format of
# this file.
# **********************************************************************

# NOTE:  This is a NEW IMPROVED version of XF86Config-fbdev that uses the vesa
# driver instead of the fbdev driver.  Thanks to Kenneth Fanyo who pointed
# this out to me. :)

# This XF86Config file is designed for use with the VESA framebuffer.
# This generic interface should work with nearly all video cards
# (although not every card will support every resolution).

# With the new driver, it should no longer be required to have frame buffer
# support in the kernel, or to run it on the console.
#
# Enjoy! :)
# -- volkerdi@slackware.com
#

# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"  # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the font modules
    Load        "type1"
    Load        "freetype"
    #Load        "speedo"

# This loads the GLX module
    Load       "glx"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath "/usr/share/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
#

    FontPath   "/usr/share/fonts/local/"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/OTF/"
    FontPath   "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/CID/"
    FontPath   "/usr/share/fonts/Speedo/"
    FontPath   "/usr/share/fonts/75dpi/:unscaled"
    FontPath   "/usr/share/fonts/100dpi/:unscaled"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/cyrillic/"

# ModulePath can be used to set a search path for the X server modules.
# The default path is shown here.

#    ModulePath "/usr/lib/xorg/modules"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to cause a core dump at the spot where a signal is
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#    Option     "NoTrapSignals"

# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#    Option     "DontVTSwitch"

# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

#    Option     "DontZap"

# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
# sequences.  This allows clients to receive these key events.

#    Option     "DontZoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

#    Option     "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

#    Option     "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

#    Option     "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

#    Option     "AllowNonLocalModInDev"

# Set the basic blanking screen saver timeout.

#    Option      "blank time"    "10"    # 10 minutes

# Set the DPMS timeouts.  These are set here because they are global
# rather than screen-specific.  These settings alone don't enable DPMS.
# It is enabled per-screen (or per-monitor), and even then only when
# the driver supports it.

#    Option      "standby time"  "20"
#    Option      "suspend time"  "30"
#    Option      "off time"      "60"

# On some platform the server needs to estimate the sizes of PCI
# memory and pio ranges. This is done by assuming that PCI ranges
# don't overlap. Some broken BIOSes tend to set ranges of inactive
# devices wrong. Here one can adjust how aggressive the assumptions
# should be. Default is 0.

# Option   "EstimateSizesAggresively" "0"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier "Keyboard1"
    Driver "kbd"
# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

# Set the keyboard auto repeat parameters.  Not all platforms implement
# this.

#    Option     "AutoRepeat"    "500 5"

# Specifiy which keyboard LEDs can be user-controlled (eg, with xset(1)).

#    Option     "Xleds" "1 2 3"

# To disable the XKEYBOARD extension, uncomment XkbDisable.

#    Option     "XkbDisable"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a European
# keyboard, you will probably want to use one of:
#
#    Option     "XkbModel"      "pc102"
#    Option     "XkbModel"      "pc105"
#
# If you have a Microsoft Natural keyboard, you can use:
#
#    Option     "XkbModel"      "microsoft"
#
# If you have a US "windows" keyboard you will want:
#
#    Option     "XkbModel"      "pc104"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#
#    Option     "XkbLayout"     "de"
#
# or:
#
#    Option     "XkbLayout"     "de"
#    Option     "XkbVariant"    "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#
#    Option     "XkbOptions"    "ctrl:swapcaps"


# These are the default XKB settings for X.Org
#
#    Option     "XkbRules"      "xorg"
#    Option     "XkbModel"      "pc105"
#    Option     "XkbLayout"     "us"
#    Option     "XkbVariant"    ""
#    Option     "XkbOptions"    ""

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier "Mouse1"
    Driver "mouse"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:

#    Option     "Protocol"      "Auto"

# The available mouse protocols types that you can set below are:
#    Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
#    Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
#    MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
#    ThinkingMouse ThinkingMousePS/2 Xqueue
    Option "Protocol"    "PS/2"

# The mouse device.  The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

    Option "Device"      "/dev/mouse"
#   Option "Device"      "/dev/psaux"
#   Option "Device"      "/dev/ttyS0"
#   Option "Device"      "/dev/ttyS1"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol" "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate" "9600"
#    Option "SampleRate" "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection

# Some examples of extended input devices

# Section "InputDevice"
#    Identifier "spaceball"
#    Driver     "magellan"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball2"
#    Driver     "spaceorb"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen0"
#    Driver     "microtouch"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "1412"
#    Option     "MaxX"          "15184"
#    Option     "MinY"          "15372"
#    Option     "MaxY"          "1230"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen1"
#    Driver     "elo2300"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "231"
#    Option     "MaxX"          "3868"
#    Option     "MinY"          "3858"
#    Option     "MaxY"          "272"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonThreshold"       "17"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

    Identifier  "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    HorizSync   31.5 - 50.0

#    HorizSync 30-64         # multisync
#    HorizSync 31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync 15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    VertRefresh 40-90

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
    Identifier  "VESA Framebuffer"
    Driver      "vesa"
    #VideoRam    4096
    # Insert Clocks lines here if appropriate
EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen 1"
    Device      "VESA Framebuffer"
    Monitor     "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

#   DefaultDepth 8
#   DefaultDepth 16
   DefaultDepth 24
#   DefaultDepth 32

# "1024x768" is also a conservative usable default resolution.  If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

    Subsection "Display"
        Depth       8
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes "1024x768" "800x600" "640x480"
    EndSubsection

EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present.  Each describes
# the way multiple screens are organised.  A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option.  In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

Section "ServerLayout"

# The Identifier line must be present
    Identifier  "Simple Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens.  The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen.  In this example, screen 2 is located to the
# right of screen 1.

    Screen "Screen 1"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used.  Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection



hasansahin

Donanımını (özellikle ekran kartını) listelermisin?
Ayrıca hangi slack versiyonunu kullanıyorsun? Sistemi kurduğundan beri ne değişiklikler yaptın anlatırmısın? Çünkü slackware paket yöneticisi(yöneticileri) apt-get,pacman veya yum gibi bağımlılık denetimi yapmaz. Neler yaptığını merak ediyorum.
Eğerki geri alamayacağımız birşeyler yaptıysan, yeniden kurulum yap. Sonrasında ati sürücülerini beraber adım adım kuralım. ok?

Aldığın hata mesajlarından bağımlılık sorunları olduğu anlaşılıyor. Ayrıca xorg.conf dosyan ilk kurulduğu haliyle yani "vesa" desteğiyle duruyor.
Anyone who has never made a mistake has never tried anything new.
Albert Einstein.

acemiyim91

#21
Slackware 12.2 kullanıyorum.
Birazcık anladığıma göre sitedeki xorg ve xfree86 i indirip kurmamı istedi tgz dediğiniz gibi kontrol etmedi kurdum onları, sonra sinirlendim lib++ ligbgcc rpm leri indirdim kurdum başkada * bir şey yapmadım
Ekran kartım Ati radeon 9200 son driveri 9250 olup 128 mb tır ve eski bi kartır :).3b özelliği vardır.Pardus, Debian ve Ubuntu otomatik tanıyor.İnşallah kurarız.
lspci

00:00.0 Host bridge: VIA Technologies, Inc. CN700/VN800/P4M800CE/Pro Host Bridge
00:00.1 Host bridge: VIA Technologies, Inc. CN700/VN800/P4M800CE/Pro Host Bridge
00:00.2 Host bridge: VIA Technologies, Inc. CN700/VN800/P4M800CE/Pro Host Bridge
00:00.3 Host bridge: VIA Technologies, Inc. PT890 Host Bridge
00:00.4 Host bridge: VIA Technologies, Inc. CN700/VN800/P4M800CE/Pro Host Bridge
00:00.7 Host bridge: VIA Technologies, Inc. CN700/VN800/P4M800CE/Pro Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. VT8237/VX700 PCI Bridge
00:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
00:08.0 Modem: Smart Link Ltd. SmartPCI2800 V.92 PCI Soft DFT (rev 02)
00:0f.0 IDE interface: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80)
00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [KT600/K8T800/K8T890 South]
00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60)
01:00.0 VGA compatible controller: ATI Technologies Inc RV280 [Radeon 9200 PRO] (rev 01)
01:00.1 Display controller: ATI Technologies Inc RV280 [Radeon 9200 PRO] (Secondary) (rev 01)

hasansahin

Zaten bunları yaptıktan sonra başka birşey yapmana gerek yok :) Bayıltmışın sistemi :)
ATI Kartların sisteme kurulması iki şekilde oluyor. Birisi generic kurulum yani her sistemde çalışabilen ve bazı paketlerin ön gereksinim olarak yüklenmiş olduğunu varsayıldığı yöntemdir. Full kurulum yaptığınızda sıkıntı yapmayın,zaten ihtiyaç duyduğu her paketi yüklemiş oluyorsunuz.
İkinci yöntem ise, dağıtım tabanlı kurulumdur ama bundan bahsetmeyecem, çünkü slackware paket yöneticisi ile uyumlu değil.
X ortamındayken bir terminal açın ve sürücünün olduğu klasör altına gidin. Örneğin; home dizinimizdeyse;
cd /home/hasan
sonra yönetici yetkileri alın.
su
(zaten root iseniz yapmaya gerek yok.
sh ./Ati_sürücüsünün_dosya_ismi.run
komutu ile kuruluma geçin. Karşınıza gelen pencereden "install driver <falanca_sürüm> on X.org 7.1 or nevest" seçeneğini seçin ve continue ile
devam edin. lisans kısımında "I aggree" seçip devam edin. Bir sonraki aşamada "Automatic" seçin ve devam edin. Kurulum başlayacak ve bir süre sonra bitecek.
Sonrada exit seçerek kurulumu sonlandırın. Kurulumdan sonra yine terminalde,
/usr/X11R6/bin/aticonfig --initial
komutunu verin ve sisteminizi yeniden başlatın.

Kaynak : https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/linux_cat812-inst.pdf
Anyone who has never made a mistake has never tried anything new.
Albert Einstein.

acemiyim91

Desktop#sh ./ati-driver-installer-8.28.8.run
Creating directory fglrx-install
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.28.8...
==================================================
ATI Technologies Linux Driver Installer/Packager
==================================================
Detected configuration:
Architecture: i686 (32-bit)
which: no XFree86 in (/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin)
X Server: unable to detect
Removing temporary directory: fglrx-install

ATI Drivers
Now here is a little something contributed by dawizman. He realized that not everyone is using the Nvidia video cards, so he was nice enough to give me these steps for getting the ATI drivers working. If you use this, make sure you pay attention. Following my directions will have you upgrading to xfree86 4.4, then to the xorg Xserver, and also using the 2.6.5 kernel. Looks like the ATI drivers wouldn't be to happy about that.

Note: You cannot use Xfree 4.4 or kernel 2.6 with these drivers. // burda xfree 4.4 ve kernel 2.6 ile kullanamazsın diyor ama :/
Slackware 10 falan mı indirsem :D

hasansahin

resolv.conf dosyası ile alakası yok, Xfree sürümünü ve X ortamının yüklemesini tanımlayamıyor. Biraz zaman verin araştırayım.
Anyone who has never made a mistake has never tried anything new.
Albert Einstein.