Check Processor Type Without Open Computer Case on Linux Fedora Using dmidecode Command



Configuration for GNU Linux Fedora Computer using Linux Command

 

     The article below show how to check system Processor Type (CPU Type) without open the computer casing on Linux Fedora using Linux dmidecode command.  The step by step, Linux command example below show the Linux dmidecode command is execute to show processor type and the properties of Processor type inside the computer.

Linux command example:

/usr/sbin/dmidecode --type processor

or  same as

dmidecode --type 4

 

The dmidecode --type processor could give the output on:

4     Processor

 

The output of dmidecode command below show, CPU Type (Processor type), CPU Family (Processor Family), CPU Manufacturer (Processor Manufacturer) and other Processor information or CPU information, 

Check CPU Type or check Processor Type in Linux Fedora computer

[root@localhost ~]# dmidecode --type processor

# dmidecode 2.7

SMBIOS 2.1 present.

 

Handle 0x0400, DMI type 4, 32 bytes.

Processor Information

        Socket Designation: CPU1

        Type: Central Processor

        Family: Pentium III Xeon

        Manufacturer: Intel

        ID: 73 06 00 00 FF FB 83 03

        Signature: Type 0, Family 6, Model 7, Stepping 3

        Flags:

                FPU (Floating-point unit on-chip)

                VME (Virtual mode extension)

                DE (Debugging extension)

                PSE (Page size extension)

                TSC (Time stamp counter)

                MSR (Model specific registers)

                PAE (Physical address extension)

                MCE (Machine check exception)

                CX8 (CMPXCHG8 instruction supported)

                APIC (On-chip APIC hardware supported)

                SEP (Fast system call)

                MTRR (Memory type range registers)

                PGE (Page global enable)

                MCA (Machine check architecture)

                CMOV (Conditional move instruction supported)

                PAT (Page attribute table)

                PSE-36 (36-bit page size extension)

                MMX (MMX technology supported)

                FXSR (Fast floating-point save and restore)

                SSE (Streaming SIMD extensions)

                Version: Pentium(R) III Xeon(TM)

                Voltage: 2.0 V

                External Clock: 100 MHz

                Max Speed: 550 MHz

                Current Speed: 550 MHz

                Status: Populated, Enabled

                Upgrade: Slot 2

                L1 Cache Handle: 0x0700

                L2 Cache Handle: 0x0701

                L3 Cache Handle: No L3 Cache

 

        Handle 0x0401, DMI type 4, 32 bytes.

        Processor Information

        Socket Designation: CPU2

        Type: Central Processor

        Family: Pentium III Xeon

        Manufacturer: Intel

        ID: 73 06 00 00 FF FB 83 03

        Signature: Type 0, Family 6, Model 7, Stepping 3

        Flags:

                FPU (Floating-point unit on-chip)

                VME (Virtual mode extension)

                DE (Debugging extension)

                PSE (Page size extension)

                TSC (Time stamp counter)

                MSR (Model specific registers)

                PAE (Physical address extension)

                MCE (Machine check exception)

                CX8 (CMPXCHG8 instruction supported)

                APIC (On-chip APIC hardware supported)

                SEP (Fast system call)

                MTRR (Memory type range registers)

                PGE (Page global enable)

                MCA (Machine check architecture)

                CMOV (Conditional move instruction supported)

                PAT (Page attribute table)

                PSE-36 (36-bit page size extension)

                MMX (MMX technology supported)

                FXSR (Fast floating-point save and restore)

                SSE (Streaming SIMD extensions)

                Version: Pentium(R) III Xeon(TM)

                Voltage: 2.0 V

                External Clock: 100 MHz

                Max Speed: 550 MHz

                Current Speed: 550 MHz

                Status: Populated, Enabled

                Upgrade: Slot 2

                L1 Cache Handle: 0x0702

                L2 Cache Handle: 0x0703

                L3 Cache Handle: No L3 Cache

 

Wrong DMI structures length: 1225 bytes announced, structures occupy 1219 bytes.

[root@localhost ~]#

 




Check L1 and L2 CPU or Processor memory cache in Linux Fedora using dmidecode command



Configuration for GNU Linux Fedora Computer using Linux Command

 

     The dmidecode command below can be use to check available CPU memory cache or Processor memory cache in Linux Fedora.  The CPU memory cache or Processor memory cache or some say L1 cache and L2 cache that usually reside inside CPU / Processor in the system unit.  The dmidecode command example below is execute to show the L1 memory cache and L2 memory cache for each of my system Processor.

Linux command example::

/usr/sbin/dmidecode --type cache

or  same as

dmidecode --type 7

 

The dmidecode --type cache could give the output on:

7     Cache

 

The output from dmidecode command below show total amount of Processor L1 memory cache and L2 memory cache available on my Linux Fedora system.

Amount L1 memory cache and L2 memory cache display using Linux dmidecode command

[root@localhost ~]# dmidecode --type cache

# dmidecode 2.7

SMBIOS 2.1 present.

 

Handle 0x0700, DMI type 7, 19 bytes.

Cache Information

        Socket Designation: CPU1 L1

        Configuration: Enabled, Not Socketed, Level 1

        Operational Mode: Write Back

        Location: Internal

        Installed Size: 32 KB

        Maximum Size: 32 KB

        Supported SRAM Types:

        Unknown

        Installed SRAM Type: Unknown

        Speed: Unknown

        Error Correction Type: Unknown

        System Type: Unified

        Associativity: Unknown

 

Handle 0x0701, DMI type 7, 19 bytes.

Cache Information

        Socket Designation: CPU1 L2

        Configuration: Enabled, Not Socketed, Level 2

        Operational Mode: Write Back

        Location: Internal

        Installed Size: 512 KB

        Maximum Size: 2048 KB

        Supported SRAM Types:

        Unknown

        Installed SRAM Type: Pipeline Burst

        Speed: Unknown

        Error Correction Type: Single-bit ECC

        System Type: Unified

        Associativity: 4-way Set-associative

 

Handle 0x0702, DMI type 7, 19 bytes.

Cache Information

        Socket Designation: CPU2 L1

        Configuration: Enabled, Not Socketed, Level 1

        Operational Mode: Write Back

        Location: Internal

        Installed Size: 32 KB

        Maximum Size: 32 KB

        Supported SRAM Types:

        Unknown

        Installed SRAM Type: Unknown

        Speed: Unknown

        Error Correction Type: Unknown

        System Type: Unified

        Associativity: Unknown

 

Handle 0x0703, DMI type 7, 19 bytes.

Cache Information

        Socket Designation: CPU2 L2

        Configuration: Enabled, Not Socketed, Level 2

        Operational Mode: Write Back

        Location: Internal

        Installed Size: 512 KB

        Maximum Size: 2048 KB

        Supported SRAM Types:

        Unknown

        Installed SRAM Type: Pipeline Burst

        Speed: Unknown

        Error Correction Type: Single-bit ECC

        System Type: Unified

        Associativity: 4-way Set-associative

 

Wrong DMI structures length: 1225 bytes announced, structures occupy 1219 bytes.

[root@localhost ~]#

 




Linux dmidecode keyword use to retrieve information from DMI or SMBIOS tables



Configuration for GNU Linux Fedora Computer using Linux Command

 

     Below is the example of dmidecode keywords that we can use in Linux Fedora to get the information about system properties or system hardware properties.  The dmidecode command example below show the execution of dmidecode command but with out the proper option.  The output of the dmidecode command below give the possible option of  dmidecode keyword to use with the dmidecode command.

Example of dmidecode command:

Using Linux dmidecode command and dmidecode command keyword

[root@fedora ~]# dmidecode --type chasis

Invalid type keyword: chasis

Valid type keywords are:

bios

system

baseboard

chassis

processor

memory

cache

connector

slot

[root@fedora ~]#

 

Possible dmidecode command example.

[root@fedora ~]# dmidecode --type bios  <-- retrieve information on system BIOS

[root@fedora ~]# dmidecode --type system  <-- retrieve information on system hardware

[root@fedora ~]# dmidecode --type baseboard  <-- retrieve information on motherboard

[root@fedora ~]# dmidecode --type chassis  <-- retrieve information on system chassis

[root@fedora ~]# dmidecode --type processor  <-- retrieve information on processor

[root@fedora ~]# dmidecode --type memory  <-- retrieve information on system memory

[root@fedora ~]# dmidecode --type cache  <-- retrieve information on system cache

[root@fedora ~]# dmidecode --type connector  <-- retrieve information on system connector

[root@fedora ~]# dmidecode --type slot  <-- retrieve information on system slot

 




Check System BIOS Information on Linux Fedora using dmidecode Command



Configuration for GNU Linux Fedora Computer using Linux Command

 

     The step by step command example below use the dmidecode to check system BIOS information on Linux Fedora computer.  The output from the dmidecode command below show the system BIOS information and BIOS language that execute on ACER computer.  The information display include the BIOS version, Bios release date, BIOS vendor, BIOS language and other BIOS characteristics available on the system.

Linux command example::

/usr/sbin/dmidecode --type bios

or  same as

dmidecode --type 0,13

 

The dmidecode --type bios could give the output on:

0     BIOS

13   BIOS Language

 

The output from the Linux command dmidecode --type bios:

View bios information on Linux Fedora computer

[root@localhost ~]# dmidecode --type bios

# dmidecode 2.7

SMBIOS 2.1 present.

 

Handle 0x0000, DMI type 0, 19 bytes.

BIOS Information

      Vendor: ACER

      Version: V3.1 R01-C8 EN

      Release Date: 04/08/2000

      Address: 0xF0000

      Runtime Size: 64 kB

      ROM Size: 512 kB

      Characteristics:

               ISA is supported

               PCI is supported

               PNP is supported

               APM is supported

               BIOS is upgradeable

               BIOS shadowing is allowed

               ESCD support is available

               Boot from CD is supported

               Selectable boot is supported

               BIOS ROM is socketed

               EDD is supported

               Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)

               Japanese floppy for Toshiba 1.2 MB is supported (int 13h)

               5.25"/360 KB floppy services are supported (int 13h)

               5.25"/1.2 MB floppy services are supported (int 13h)

               3.5"/720 KB floppy services are supported (int 13h)

               3.5"/2.88 MB floppy services are supported (int 13h)

               Print screen service is supported (int 5h)

               8042 keyboard services are supported (int 9h)

               Serial services are supported (int 14h)

               Printer services are supported (int 17h)

               CGA/mono video services are supported (int 10h)

               ACPI is supported

               USB legacy is supported

               AGP is supported

               LS-120 boot is supported

 

Handle 0x0D00, DMI type 13, 22 bytes.

BIOS Language Information

      Installable Languages: 1

               en|US|iso8859-1

      Currently Installed Language: en|US|iso8859-1

 

Wrong DMI structures length: 1225 bytes announced, structures occupy 1219 bytes.

[root@localhost ~]#

 




Check Memory Size and Memory Types on Linux Fedora using dmidecode Command



Configuration for GNU Linux Fedora Computer using Linux Command

 

     The dmidecode command example below execute in Linux Fedora to check memory size and memory type.  In Linux Fedora we can use the dmidecode command utility to retrieved the information from DMI or SMBIOS tables.  The example below show the step by step using dmidecode command on Linux Fedora to retrieve information about how much memory install and what type of memory install on our Linux Fedora machine.

Linux command example:

/usr/sbin/dmidecode --type memory

or  same as

dmidecode --type 5,6,16,17

 

The dmidecode --type memory could give the output on:

5     Memory Controller

6     Memory Module

16   Physical Memory Array

17   Memory Device

 

The output from dmidecode command below show information on each slot of memory module in Linux Fedora computer.

Display memory size in Linux Fedora using dmidecode command

[root@localhost ~]# dmidecode --type memory

# dmidecode 2.7

SMBIOS 2.1 present.

 

Handle 0x0500, DMI type 5, 24 bytes.

Memory Controller Information

            Error Detecting Method: 64-bit ECC

            Error Correcting Capabilities:

                        Single-bit Error Correcting

            Supported Interleave: One-way Interleave

            Current Interleave: One-way Interleave

            Maximum Memory Module Size: 512 MB

            Maximum Total Memory Size: 2048 MB

            Supported Speeds:

                        Other

            Supported Memory Types:

                        Standard

                        ECC

                        DIMM

                        SDRAM

            Memory Module Voltage: 3.3 V

            Associated Memory Slots: 4

                        0x0600

                        0x0601

                        0x0602

                        0x0603

            Enabled Error Correcting Capabilities:

                        Single-bit Error Correcting

 

Handle 0x0600, DMI type 6, 12 bytes.

Memory Module Information

            Socket Designation: DM1

            Bank Connections: 0 1

            Current Speed: Unknown

            Type: ECC DIMM SDRAM

            Installed Size: 128 MB (Double-bank Connection)

            Enabled Size: 128 MB (Double-bank Connection)

            Error Status: See Event Log

 

Handle 0x0601, DMI type 6, 12 bytes.

Memory Module Information

            Socket Designation: DM2

            Bank Connections: 2 3

            Current Speed: Unknown

            Type: ECC DIMM SDRAM

            Installed Size: 128 MB (Double-bank Connection)

            Enabled Size: 128 MB (Double-bank Connection)

            Error Status: See Event Log

 

Handle 0x0602, DMI type 6, 12 bytes.

Memory Module Information

            Socket Designation: DM3

            Bank Connections: 4 5

            Current Speed: Unknown

            Type: ECC DIMM SDRAM

            Installed Size: 128 MB (Double-bank Connection)

            Enabled Size: 128 MB (Double-bank Connection)

            Error Status: See Event Log

 

Handle 0x0603, DMI type 6, 12 bytes.

Memory Module Information

            Socket Designation: DM4

            Bank Connections: 6 7

            Current Speed: Unknown

            Type: ECC DIMM SDRAM

            Installed Size: 128 MB (Double-bank Connection)

            Enabled Size: 128 MB (Double-bank Connection)

            Error Status: See Event Log

 

Wrong DMI structures length: 1225 bytes announced, structures occupy 1219 bytes.

[root@localhost ~]#

 




.bash_profile configuration file under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

    Below is the .bash_profile configuration file for Linux fedora 9.  The example below use the cat command to view the .bash_profile configuration file under the /root home directory

Fedora Linux .bash_profile File Location:

/root/.bash_profile

 

The example below use Linux cat command to view the hidden file .bash_profile under /root home directory.

contents of .bash profile under root home directory

[root@fedora ~]# cat /root/.bash_profile

# .bash_profile

 

# Get the aliases and functions

if [ -f ~/.bashrc ]; then

. ~/.bashrc

fi

 

# User specific environment and startup programs

 

PATH=$PATH:$HOME/bin

 

export PATH

unset USERNAME

[root@fedora ~]#

 

Use ls -l command to show the .bash_profile file permission, owner, group owner, file size, date created or edited and file location.

bash profile

[root@fedora ~]# ls -l /root/.bash_profile

-rw-r--r-- 1 root root 191 2006-07-12 20:06 /root/.bash_profile

[root@fedora ~]#

 




.bashrc configuration file under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

    Below is the .bashrc configuration file for Linux fedora 9.  The example below use Linux cat command to view the .bashrc configuration file under the /root home directory on Linux Fedora 9.

Fedora Linux .bashrc File Location:

/root/.bashrc

 

The Linux command example below use the cat command to view the contents of hidden file .bashrc under the root home directory.

.bashrc file view using cat command

[root@fedora ~]# cat /root/.bashrc

# .bashrc

 

# User specific aliases and functions

 

alias rm='rm -i'

alias cp='cp -i'

alias mv='mv -i'

 

# Source global definitions

if [ -f /etc/bashrc ]; then

. /etc/bashrc

fi

[root@fedora ~]#

 

Use ls -l command to show the .bashrc file permission, owner, group owner, file size, date created or edited and file location.

Properties file permission for .bashrc file

[root@fedora ~]# ls -l /root/.bashrc

-rw-r--r-- 1 root root 176 2006-07-12 20:06 /root/.bashrc

[root@fedora ~]#

 




.bash_history configuration file under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

    The .bash_history contains all Linux command history that you already use or execute on your Linux shell.  Below is the .bash_history configuration file for Linux fedora 9.  The example below use the cat command to view the bash command history .bash_history configuration file under the /root home directory

Fedora Linux .bash_history File Location:

/root/.bash_history

 

The Linux command example below use the cat command to view the .bash_history file in the /root home directory:

View list of Linux command.  Using the cat command to view the .bash_history file

[root@fedora ~]# cat /root/.bash_history | less

passwd labu

ls

cd /home

ll

shutdown -h now

ls

cd fedora9/

ls

rpm -Uvh mt-st-0.9b-5.fc9.i386.rpm mtx-1.3.11-3.fc9.i386.rpm

shutdown -h now

gedit&

rpm -q mt*

mt

uname -a

uname -a

uname -a

ping 192.168.1.15

service network stop

service network start

ifconfig

df -h

df -h ./

df -h ./root

:

 

Hit 'q' key to exit

 

Use ls -l command to show the .bashrc file permission, owner, group owner, file size, date created or edited and file location.

bash history file properties and permission

[root@fedora ~]# ls -l /root/.bash_history

-rw------- 1 root root 9240 2008-08-22 07:13 /root/.bash_history

[root@fedora ~]#

 




inittab configuration file under /etc directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

     Below is the inittab configuration file for Linux Fedora 9.  On Linux Fedora 9 system, the inittab is use by upstart for default runlevel only.  To change other setting, that use to be on inittab configuration file... please look the other configuration file under /etc/event.d/ directory.  The example below use the cat command to show the contents of inittab configuration file under the /etc directory

Example of inittab configuration file on Linux Fedora 9:

inittab the Linux boot up configuration file

[root@fedora ~]# cat /etc/inittab

# inittab is only used by upstart for the default runlevel.

#

# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.

#

# System initialization is started by /etc/event.d/rcS

#

# Individual runlevels are started by /etc/event.d/rc[0-6]

#

# Ctrl-Alt-Delete is handled by /etc/event.d/control-alt-delete

#

# Terminal gettys (tty[1-6]) are handled by /etc/event.d/tty[1-6] and

# /etc/event.d/serial

#

# For information on how to write upstart event handlers, or how

# upstart works, see init(8), initctl(8), and events(5).

#

# Default runlevel. The runlevels used are:

# 0 - halt (Do NOT set initdefault to this)

# 1 - Single user mode

# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)

# 3 - Full multiuser mode

# 4 - unused

# 5 - X11

# 6 - reboot (Do NOT set initdefault to this)

#

id:5:initdefault:

[root@fedora ~]#

 

Use ls -l command to show the inittab file permission, owner, group owner, file size, date created or edited and file location.

list of inittabconfiguration file permission properties

[root@fedora ~]# ls -l /etc/inittab

-rw-r--r-- 1 root root 853 2008-05-20 08:26 /etc/inittab

[root@fedora ~]#

 




View Partition Label and Partition Type on Fedora using blkid Command



Configuration for GNU Linux Fedora Computer using Linux Command

 

   The blkid command can be use to view partition label and partition type on Linux Fedora system.  The blkid is command line utility to locate or print block device attributes on Linux Fedora system.  The command example below show execution of blkid command.

blkid command example:

View partition label and view partition type on Linux Fedora system.

[root@fedora ~]# /sbin/blkid

/dev/mapper/VolGroup00-LogVol00: UUID="dffdebe3-3947-4c32-ba40-d746425c7e5e" TYPE="ext3"

/dev/mapper/VolGroup00-LogVol01: TYPE="swap" UUID="49869de6-3229-44bf-ac02-e626a4bf7762"

/dev/sda1: LABEL="/boot" UUID="df4d5c90-76db-4e8a-b1e0-2a85d1cb4877" TYPE="ext3" SEC_TYPE="ext2"

/dev/sda2: UUID="Pt1Wq1-4Npc-ssSo-kJsZ-gu5K-ZjrR-Voe38a" TYPE="lvm2pv"

/dev/VolGroup00/LogVol00: UUID="dffdebe3-3947-4c32-ba40-d746425c7e5e" TYPE="ext3"

/dev/VolGroup00/LogVol01: TYPE="swap" UUID="49869de6-3229-44bf-ac02-e626a4bf7762"

[root@fedora ~]#

 

The command output above show the properties of Fedora partition including the partition LABEL and partition TYPE.

 




.bash_logout configuration file under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

    Below is the .bash_logout configuration file for Linux fedora 9.  The example below use the cat command to view the .bash_logout configuration file under the /root home directory

Fedora Linux.bash_logout File Location:

/root/.bash_logout

 

View the .bash_logout file using cat command:

using cat command to view .bash_logout configuration file

[root@fedora ~]# cat /root/.bash_logout

# ~/.bash_logout

 

clear

[root@fedora ~]#

 

Use ls -l command to show the .bash_logout file permission, owner, group owner, file size, date created or edited and file location.

Using la with -l option to view .bash_logout configuration file

[root@fedora ~]# ls -l /root/.bash_logout

-rw-r--r-- 1 root root 24 2006-07-12 20:06 /root/.bash_logout

[root@fedora ~]#

 




anaconda-ks.cfg configuration file under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

     Below is the anaconda-ks.cfg configuration file for Linux fedora 9.  The anaconda-ks.cfg configuration file automatically generate by anaconda, base on your Fedora installation setup and configuration.  The example below use the cat command to view the anaconda-ks.cfg configuration file under the /root home directory

anaconda-ks.cfg File Location:

/root/anaconda-ks.cfg

 

View the anacoda-ks.cfg file using cat command:

view anaconda-ks.cfg configuration file

[root@fedora ~]# cat /root/anaconda-ks.cfg

# Kickstart file automatically generated by anaconda.

 

#version=F9

install

cdrom

lang en_US.UTF-8

keyboard us

xconfig --startxonboot

network --device eth0 --bootproto dhcp

rootpw --iscrypted

$6$K8rcR/VnLlliLbI6$L64CRYd3pjP0OEyuLeMEzvB2Hu8ocyRX3HvJTAGqQ4CmTVMOG/wanuX7m2vRLmbsrmZQ06JrDCJKV1w9nyRK7.

firewall --enabled --port=22:tcp

authconfig --enableshadow --passalgo=sha512

selinux --enforcing

timezone --utc America/New_York

bootloader --location=mbr --driveorder=sda --append="rhgb quiet"

# The following is the partition information you requested

# Note that any partitions you deleted are not expressed

# here so unless you clear all partitions first, this is

# not guaranteed to work

#clearpart --linux --drives=sda

#part /boot --fstype ext3 --size=200 --ondisk=sda

#part pv.2 --size=0 --grow --ondisk=sda

#volgroup VolGroup00 --pesize=32768 pv.2

#logvol / --fstype ext3 --name=LogVol00 --vgname=VolGroup00 --size=1024 --grow

#logvol swap --fstype swap --name=LogVol01 --vgname=VolGroup00 --size=272 --grow --maxsize=544

 

%packages

@office

@engineering-and-scientific

@mysql

@development-libs

@editors

@window-managers

@system-tools

@fedora-packager

@gnome-software-development

@legacy-fonts

@fonts

@xfce-software-development

@text-internet

@legacy-software-development

@x-software-development

@legacy-network-server

@dns-server

@gnome-desktop

@core

@authoring-and-publishing

@base

@java

@java-development

@hardware-support

@games

@xfce-desktop

@ftp-server

@clustering

@network-server

@web-development

@legacy-software-support

@base-x

@graphics

@web-server

@dial-up

@ruby

@smb-server

@eclipse

@printing

@kde-software-development

@kde-desktop

@mail-server

@education

@server-cfg

@sql-server

@admin-tools

@news-server

@development-tools

@graphical-internet

@sound-and-video

openoffice.org-voikko

kdepim

netcdf

openbabel

mod_auth_mysql

php-mysql

emacs

joe

vbetool

gnokii

createrepo

radeontool

wireshark-gnome

fuse

festival

rdesktop

audit

qdbm

culmus-fonts

xorg-x11-fonts-ISO8859-9-100dpi

fonts-KOI8-R-100dpi

urw-fonts

fonts-japanese

xorg-x11-fonts-ISO8859-1-100dpi

baekmuk-bdf-fonts

ghostscript-fonts

taipeifonts

wqy-bitmap-fonts

baekmuk-ttf-fonts-batang

samyak-fonts-malayalam

nafees-web-naskh-fonts

sazanami-fonts-gothic

smc-fonts-rachana

smc-fonts-suruma

VLGothic-fonts-proportional

baekmuk-ttf-fonts-dotum

tibetan-machine-uni-fonts

smc-fonts-raghumalayalam

sarai-fonts

sazanami-fonts-mincho

samyak-fonts-gujarati

baekmuk-ttf-fonts-hline

cjkunifonts-ukai

smc-fonts-meera

samyak-fonts-oriya

samyak-fonts-devanagari

samyak-fonts-tamil

smc-fonts-dyuthi

madan-fonts

w3m

lynx

mesa-libGLU-devel

scim-bridge-gtk

esc

gnome-netstatus

scribus

xfsprogs

mtools

gpgme

pax

gnupg2

iscsi-initiator-utils

reiserfs-utils

bridge-utils

squashfs-tools

jfsutils

tcsh

libifp

ctapi-cyberjack-pcsc

openct

gpsd

ctapi-cyberjack

kdegames

gnuchess

dnsmasq

vnc-server

velocity

im-chooser

vnc-server

ImageMagick

digikam

dcraw

kipi-plugins

netpbm-progs

kdegraphics

moin-latex

tomcat5-admin-webapps

mod_auth_kerb

namazu

tiquit

tclhttpd

mediawiki

tomcat5

perl-Kwiki

php-pgsql

mod_fcgid

tomcat-native

dap-server-cgi

perl-HTML-Mason

lighttpd-fastcgi

wordpress

mod_cband

php-odbc

php-pecl-apc

mod_security

lighttpd

mod_auth_pgsql

mod_auth_mysql

apachetop

tomcat5-webapps

moin

vdradmin-am

mod_geoip

thttpd

phpldapadmin

Pound

vdr-wapd

drupal

awstats

mod_authz_ldap

boa

mod_extract_forwarded

exim

spambayes

postfix

esmtp

kdeedu

imake

rpmdevtools

lua

rpmlint

memtest86+

liferea

libflashsupport

kdepim

kftpgrabber

thunderbird

konversation

festvox-clb-arctic-hts

vdr

festvox-rms-arctic-hts

vdr-wapd

amarok

festvox-bdl-arctic-hts

vdradmin-am

jack-audio-connection-kit

kaffeine

kdemultimedia

k3b

[root@fedora ~]#

 

Use ls -l command to show the anaconda-ks.cfg file permission, owner, group owner, file size, date created or edited and file location.

anaconda-ks.cfg configuration file properties

[root@fedora ~]# ls -l /root/anaconda-ks.cfg

-rw------- 1 root root 3658 2008-05-20 08:26 /root/anaconda-ks.cfg

[root@fedora ~]#