asked on
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
A Linux distribution is an operating system made as a software collection based on the Linux kernel and, often, on a package management system and are available for a variety of systems. A typical Linux distribution comprises a Linux kernel, GNU tools and libraries, additional software, documentation, a window system (the most common being the X Window System), a window manager, and a desktop environment. Most Linux systems are open-source software made available both as compiled binaries and in source code form, allowing modifications to the original software. Over three hundred distributions are in active development, including commercially backed distributions (such as Fedora, openSUSE and Ubuntu) and community-driven distributions (such as Debian, Slackware, Gentoo and Arch Linux).
TRUSTED BY
A- Correct. You have to install support for pcmcia interface devices.
pcmcia runs as a service in Fedora Linux and if it's installed, up and running you can see it listed in service config list by running chkconfig tools.
chkconfig --list ( will give you the list of services )
chkconfig --list pcmcia ( will tell you pcmcia status ) etc.
To enable support for pcmcia open terminal window , login as root ( su )
and type: yum install pcmciautils
PCMCIAUTILS package replaces older PCMCIA-CS package.
The older pcmcia-cs package using the cardmgr/pcmcia service has been replaced with a new pcmciautils package where the PCMCIA devices are handled directly with the hotplug system using udev dynamically in this Fedora release.
Once pcmcia package is installed , you have to start pcmcia service by typing
/sbin/service pcmcia start
( you have to gogin as root to do that )
To enable pcmcia support in runlevels 3, 4 and 5 type:
chkconfig --level 234 pcmcia on