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

How do you turn on Bluetooth on a computer with Linux?

If the hardware is physically enabled (such as via a switch or in the BIOS), most Linux distributions should be able to use the Bluetooth receiver. The program that is used to manage Bluetooth connections varies by interface and distro.

Who is Unix work performed by?

Unix work is performed by users of the unix system, for application and system programs, or anything that requires a Unix system.

What Linux distributions run on Old World Macs?

Debian, Ubuntu, and Yellow Dog will run on them. Yellow Dog probably has the best support for them.

Do you think Linux will surpass other operating systems for network and web servers?

Linux has already surpassed all other operating systems for web servers. The growth rate for new servers is slowing, but it is still ahead of Windows servers.

What kind of Linux-based computer should you buy if you're building a website with a wide target market and want to get a lot of views?

Any mid-range desktop or laptop would be suitable for use with Linux and have enough power for web design. Dells, Acers, and ASUS laptops tend to have high compatibility with Linux (I would not get an ASUS Eee PC for web design, as it is slow and has a low resolution).

How are the shell and kernel used in Linux?

The shell is used to allow the user to interface with the operating system and run their applications. BASH is a shell, as is GNOME (Often referred to as a "graphical shell.").

The kernel, on the other hand, is the core of the operating system. It manages the hardware, resources, and processes running on the sysem.

Write a shell script to Print a table of any number?

Improve

$vi multable.sh

echo "enter the value of n:"

read n

i=1

for((i=1;i<=10;i++))

do

echo " $n * $i = `expr $n \* $i`"

done

How do you see disk information in Linux?

That depends on what you want to know. If you want to know how much disk space is being used, use the df command. If you want to see what files systems are mounted, use the mountcommand. If you want to see SMART information about a particular drive, use smartctl.

Does The majority of computers attached to NetWare networks today run some version of the SUSE Linux operating system?

No. Netware deployments preceded Novell's acquisition of SUSE. They thus have no affilitiation other than their mutual owner. Netware is used primarily to support Windows networks.

How do you install fedora and Windows 8 in a dual boot mode?

First make partitions for the operating systems - first windows 8 then fedora partitions of / swap and /home - then

First install window 8 after having made partitions for both operating systems, then install fedora to the partition previously made for installing it. Grub bootloader detects windows 8 and adds entry to the menu.

On your Linux workstation you open a terminal window and type at the command prompt iwconfig eth0 key 5c00951b22 what have you done?

Network+ Guide to Networks answer: Established the credentials the wireless interface will use to communicate securely with the access point.

Complete linux installer has an error unable to mount the loop device i edit the bootscriptsh ext4 but i didn't fix it please help?

If the Complete Linux Installer has an error and is unable to mount the loop device, try relaunching the installer.

How do you write a Linux function that will go to any directory then ls and pwd on it?

WHAT I NEED DONE in .bash_profile define a function go_show, that will

  • Go to a specific directory
  • Print your current location
  • Print the contents of your current directory

The directory this function takes you to will be specified as an argument to the function on the command line. You will need to use a positional parameter to do this

How do you get a copy of Linux for your home PC?

you can wait and then you could burn it on a disc and then you could make that CD that you burned of Linux and use it on your home PC

Why are Linux mint codenamed women names?

Every software developer has a different idea for naming their releases. For example, Canonical decides to name their releases of Ubuntu after a adjective and a animal (e.g. 10.10 "Maverick Meerkat" or 12.04 "Quantal Quetzal"), and Google decides to name their Android releases after desserts (e.g. 2.2 "Froyo", 2.3 "Gingerbread", 4.0-4.3 "Jellybean", 4.4 "KitKat", 5.0 "Lollipop").

How can we make a thesis proposal?

The best way to determine a thesis proposal is to decide what nuance of the subject has not been presented before. Talk with your advisor to make that determination.

How do you run minecraft.jar in puppy Linux?

You need to have Java installed, then just run "java -jar minecraft.jar".

What is dependency hell in Linux?

Dependency hell refers to the practice of reusing code from various sources to keep programmers from having to "reinvent the wheel" for every application they write.

As a result many programs cannot be installed until some set of libraries is installed. Sometimes these libraries themselves will be dependent on some other library, and things can snowball from there.

How do you access the C drive from a Linux terminal?

Linux does not identify drives or partitions with letters. To Windows, "C:" is the partition that the running version of Windows is currently installed on, regardless of how many partitions are on the disk. Linux identifies partitions based on the order they are placed on the disk. For instance, the second partition on the first hard drive would be /dev/sda2 or /dev/hda2.

In order to access a Windows partition,you will need to identify what partition it is actually on. A quick way to do this is to run

cfdisk /dev/sda

or cfdisk with whatever hard drive it is on if you have more than one. A Windows partition will have the type of either NTFS or FAT32. To mount it, create a directory (such as /mnt/windows), and use the command

mount /dev/sda3 /mnt/windows

substituting of course the correct partition.

What are the applications and devices that Linux can support?

Linux distributions can support hundreds of thousands of devices and programs, far too many to list.