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

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.

How do you display processes in Linux?

There are several commands that can be used to display running processes in Linux:

top - probably the best choice in most situations

PS - very basic. list may be too long on modern systems.

ksysguard - graphical. Found in most KDE desktops.

gnome-system-monitor - graphical. Found in most GNOME desktops.

Which is the Linux kernel image file from the following and what is location in the file system?

The kernel image is the file in /boot that has a name like "vmlinuz" in it.

What is the command to find all of the files which have been accessed within the last 30 days?

find / -type f -atime -30 > December.files

This command will find all the files under root, which is '/', with file type is file. '-atime -30′ will give all the files accessed less than 30 days ago. And the output will put into a file call December.files.

What are the system requirements for Mandriva?

The system requirements for Mandriva as of the 2010.2 release are:

  • Any i586-class or higher processor from Intel, AMD, or VIA.
  • 512 MB of RAM (1 GB recommended)
  • 2 GB of hard drive space (6 GB recommended)
  • DVD drive (or CD drive for One version)

Is there a portable version of Wine?

No. As a general rule, there are no "portable apps" for Linux. Firstly because it is a potential security risk to allow untrusted binaries to be run on a system, thus a competent system administrator will not allow a public Linux computer to run binaries outside a trusted /bin or /usr/bin directory. Secondly, there are simply not that many public Linux computers, so the relative utility of a portable version would be gone anyway.

How do you uninstall Microsoft Office 2003 in Linux with Wine?

You can either run the uninstall program, or you can just delete the folder that it is installed in. Windows programs are placed in /home/yourusername/.wine/drive_c/Program\ Files

Why Linux script does not support comparison using less than or greater than symbols?

The "greater than / less than" symbols, < and >, are used to redirect the output of a command or action somewhere else. For instance

echo "hello" > test

would create a file named test with the word helloin it, rather than simply displaying hello on the console.

What is the difference between VxWorks and Linux?

  • VxWorks is a proprietary operating system. Linux is free and open-source.
  • VxWorks is distributed by a single company. Linux id developed by thousands of companies and individuals around the world.
  • VxWorks is primarily used for real-time embedded applications. Linux is multi-purpose, used from anything from servers to desktops to embedded applications.

Use of 'kill'command in Linux?

The 'kill' command sends a signal to a given process. By default without any options it will send the TERM (terminate) signal. Other options may include the KILL signal which forcbly terminates a process without waiting. As far as USR1 and USR2 signals it depends on the kind of application that is in said process.