Why not foster whatever artistic talent the Linux community might have here by creating a new Linux art forum. It would be dedicated to discussing, and helping those creating art, themes, backgrounds, icons, logos, emblems, window decorations, and the use of apps like Gimp, PixiePlus etc.... for Linux ? I also post it at: http://linux.webmasterfund.com/devarchived/1262/65262-linux-artist-forum-for-lno.html; Post here or post at linux.webmasterfund.com, don't email. If you feel you have to mail, revert my....
$Dollar$
I think you mean chgrp.
It stands for change group.
you use it thusly:
chgrp groupname target1<target2, target 3,...>
What type of attack is SSH1 vulnerable to?
There were numerous vulnerabilities in SSH1. One allowed malicious data to be injected into an SSH stream. Another vulnerability in some implementations was to not disconnect after four unsuccessful attempts to log in, making brute force attacks easier.
Syslog is a system daemon that tracks system events and puts them in plaintext files the user can read. It also manages these files so that they don't get too numerous or too big.
Usually when something odd happens in any *nix system, the responsible first stop for an administrator is /var/log, where daemons like syslog places logs.
Which Linux command is used to assign privileges over a particular file to a designated user?
chown user file
dont forget that you should be owner of the file or root to give privilege to other users to a file
What is a valid reason to update your Linux kernel?
if your kernel is out of date then you could be missing out on features that are available in the new kernel
Which of the following are factors that determine which Linux distribution a user will use?
There are many factors:
A lot of users take the "ease of use" into account and may favor Ubunu or Mint.
Others may prefer package managers such as RPM, APT, or pacman and may choose Fedora, Debian, or Archlinux, respectively.
Still others may like having full control over every aspect of their system and thus may like Archlinux, Gentoo, or Slackware.
Sometimes it'll be about application: Phone? Android. Server? Red Hat. Desktop? Ubuntu. Router? dd-wrt.
It all boils down to preferences and needs.
How do you install Windows over Linux?
You could install it on an external drive without shutting down. You would download the live CD ISO and install is in a virtual machine (VirtualBox), add the external drive in the USB menu, and install as usual.
Linux is platform independent or not?
Linux is an operating system, which means that it is typically considered to be the platform on which other programs run.
Is there a Linux distro that will install and run Windows programs?
by default Linux doesnt support windows applications although wine and crossover can install and run them. you can take a look at winehq.org and www.codeweavers.com for more information on it and whether your application is supported.
Where can i find a copy of dmc2.ocx file?
http://www.v-basic.de/index.php?page=detail&nav=3:18:55:327 posted by Black Widowmaker! But i have also a few questions: Does docs exist? Can this ocx play mp3s? and how? Anwers please to: Thanks_for@shared-files.de thanks
How do you run a program in Linux?
Generally you run a program by typing in the name of the executable file for that program. If the program is not in the path, then you need to type the full path name, or the relative path name (e.g. ./configure). If the program is not executable, then you can make it executable with chmod +x (but do you really want that program to run). Script files can be run with the appropriate interpreter (e.g. sh configure)
Can you play World of Tanks on Linux?
World of Tanks is not officially compatible with Linux. It has been reported to work acceptably under Wine, but this can change as updates are made to the game.
How Linux platform is virus free?
It isn't virus free.
It is, however, extremely rare for Linxu to get a virus, due to a very low statistical record of in-the-wild malware (30) for it.
The reasons for this could be less popularity on the desktop, the high degree of technical users it has who would be all too effective at stopping a virus before it starts, it's effective security models, up to and including SELinux.
Which program is used to determine which shared libraries are used by a particular other program?
That would be ldd. You type 'lss /path/to/program' to see the list of shared libraries.
Linux as a platform and the kernel project have been and still are open-source to ensure that no malware or spyware have been inserted, and if any have been inserted, would be found and called out relatively quickly. For the most part, a large majority of Linux distribution maintainers and contributors have the general stance AGAINST spying on their users. However, there are exceptions - Ubuntu seems to be following Microsoft's footsteps (seeing as Microsoft is also part of the Linux Foundation) with their opt-in telemetry by default. For the most part, Ubuntu-based distributions that are not affiliated with Canonical should be okay if you wish to stick with Ubuntu's familiarity.
In Linux this connects the output of the first command with the input of the second command?
You would use a pipe.
For example.
ls | grep cool
The output of ls(the list of files in your current directory) is given to grep. Grep then finds and prints file names that include the word cool in them.
The file Normal already exists do you want to replace the existing file?
Normal.dot is a file template that is used to decide what settings are used when you start using a document. For example, when you load Word, it is already set with a particular font, normally Times New Roman, before you type anything. You can overwrite Normal.dot but normally it is best not to. It usually asks that if you have made some changes to things like styles. Save the document you are working on with an appropriate name, as seeing as you are not certain, do not overwrite Normal.dot on this occasion.
What command is used to assign executable permission to all for the filetxt in Linux?
the command to make anything executable is chmod +x <file>
What is the percentage of people use Linux?
This is the problem, no one really knows. Unlike Windows or OS X, Linux doesn't really have you "register" or phone home to anyone, so no statistic on how many Linux users there are is accurate. I personally estimate Linux users number at least as much as OS X users, though many will not agree with me.
What is the traceroute command in Linux?
Traceroute uses ICMP packets to determine what the route internet traffic takes to reach its destination, recording each "hop" (where it goes through a router, hardware firewall or some other routing mechanism) along the way. It is most widely used as a troubleshooting tool to pinpoint which areas of a given network are causing problems. Windows has a similar command called 'tracert'
I don't remember how this is done exactly, but you have to uninstall the bootloader. You should reinstall fedora on the same partition it was beofore just to get XP booting again, then search google for some answers.
How do you add two matrices using Linux shell script?
write ashell script to add awo matrix using array.