answersLogoWhite

0

📱

Linux

A free and open-source family of operating systems first started in 1991 and named after its creator, Linus Torvalds.

2,239 Questions

Cmd commands in Linux 5.0 like lsmkdircat etc?

There are many different commands available in Linux. Some of the most basic are:

* ls - lists the contents of a directory * dir - same as above but with escaped spaces * mv - move a file * rm - delete a file (semi-permanent) * cat - reads a file * less - used to pipe lengthy output from a command so that it can be scrolled through. Use like ls | less. * cp - copy files. cp file1 file1copy

* grep - search for text in a file. Can also be used to search for words in a command output. Example: ls | grep partoffilename

Could Windows have more users than Linux?

That depends on whether you are asking whether more people use Windows or Linux or which system supports more users. The maximum number of users in a modern Linux system is 4,294,967,295. Windows doesn't have any specific limit that has been published, but each account takes up a significant amount of space, limiting the number to well below the limit in Linux.

As to how many people use them, more people use Windows on their personal computers than Linux.

How can i get Linux mint 11 onto an emachine T3265 because it freezes every time i try to install it?

Try adding at least 1GB of DDR RAM to it. That might work. All other specs seem fine.

If that doesn't work, then something might be wrong with the Power Supply. If there is, I'd just buy another used computer if I were you.

1GB DDR on Newegg: http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&N=100007611%20600006040%20600006060%20600006085&IsNodeId=1&name=DDR%20400%20%28PC%203200%29&Order=PRICE&Pagesize=100

What does an absolute path-name look like in Linux?

It is the path as relative to the topmost directory, /.

For example, /usr/bin is absolute, but ../bin is relative (Means "the directory 'bin' in the parent of the current directory.")

How do you check whether a particular device driver is available in windows and Linux and What is the command?

Windows (at least in Vista)The command

DRIVERQUERY /FO LIST

should return a list of drivers in use and their locations.

LinuxThe command

lsmod

will return a list of kernel modules currently in use.

modprobe -l

will return a (very long) list of all the kernel modules in the system.

Why are PID numbers useful when you run processes in the background?

Process IDs are useful for backgrounded processes in cases where you need to either bring it into the foreground, send it a signal, or terminate/kill it. The reason for this is it's often not a good idea to identify a process by its program name lest there be multiple instances and you wish to address one of them. Process names are hardly unique, but running process IDs are. Thus when trying to background a process it's a good idea to make note of its PID.

Daemons, on the other hand, don't necessarily require you to track its PID, as they are managed by the system's init system. If a daemon is misbehaving or needs management intervention by you, you can, as root, simply ask init, systemd, or whatever your distribution uses to pause or stop the daemon for a moment. Often when changing a daemon's configuration you use your init system to restart the daemon so it runs on the new config.

Do not that daemons and even some other background processes are only under the control of root, or even more extremely, the kernel in kernel space, and you might not be able to do anything with them.

What is a Linux package manager?

A package manager does as what it says - it manages software packages that make up your installation.

Which file system cannot be mounted by using the mount command?

The only one I can think of is the swap partition, seeing as how it's not even a filesystem, just a place to dump pages. However, I'm sure there's even a filesystem driver somewhere for it.

Where can you download the Linux kernel?

The Linux kernel sources can be downloaded from the official Linux Kernel Archives, found at the link below.

What is the B shell use for in Linux?

A shell in Linux is the interpreter that provides a commandline interface (CLI). There are many kinds of shells.

What are the key features of Vector Linux?

Vector Linux, often abbreviated VL, has the key features that it is built for the x86 platform, is a Slackware distribution, and has a graphical front end. There are 4 versions available which include SOHO, Standard, Light and Live.

What is the date command used for in Linux?

If you use Linux its hard to get one anywhere else...

All kidding aside, the date command is used to print the current date and time (such as day of week, month, day of month, time, timezone, and year).

How many kbs are there in 2 GB?

There is 1,000,000 kilobytes in a gigabyte. There 2,000,000kb in 2gb.

Does a Dell 922 AIO printer have a driver for Linux?

Yes. The Dell AIO 922 is completely supported by CUPS (Common Unix Printing System) in Linux.

How Ncomputing Linux terminal service works?

ncomputing using terminal service like we use for vnc (virtual network connection), like windows have remote desktop, on Linux generally using vnc for default remote connection.

by ncomputech.com

How can you find out what user you are logged in as in Linux?

The "whoami" command should show you what account you are currently using.

What is Sabayon?

Sabayon is a Gentoo-based Linux distribution. Rather than having the user compile from source, most packages are provided in binary format. Notably, it also includes proprietary video drivers out-of-box, which is something many distributions usually refuse to do.

What is Linux and who created it?

The Linux is a kernel was initially conceived and created by Finnish computer science student Linus Torvalds in 1991.

Can you dual boot Linux and a Windows 7 installation activated with Daz Loader?

Yes, I would suggest installing Linux last, makes it so you don't have to reinstall grub/grub2/lilo

What command do you use to list all files in a directory that have an exe file extension?

First you eat a bottle of mustard. then you get outside and bury a peppermint. in 3-5 days you dig up this peppermint and eat it

How do you install curses header file in fedora Linux in order to use getch function in a c and c plus plus program?

You probably want ncurses instead of curses. If you can't find and install it via apt-get, yum, aptitude or rpm etc., just locate the sources and compile it yourself. Follow the README and INSTRUCTIONS files if there is one.