Home | Forums | What's new | Resources | |
New to linux |
Scared0o0Rabbit - Aug 18, 2003 |
antime | Aug 18, 2003 | |||
You can get NTFS access (read-only) by installing the drivers from the Linux NTFS Project.... There are precompiled RPMs for RH9 that seem to work fine (just remember to get the ones that match the kernel you're running). There are also tools that let you access ext(2|3)fs partitions under Windows, just ask Google. For your MP3 needs, I suggest finding a third-party precompiled version of XMMS for RH9. I can't remember if XMMS is included in the RH9 install, but in any case MP3 support was removed from the distro due to patent issues. |
antime | Aug 18, 2003 | |||
Uninstall the Redhat-supplied XMMS first. |
antime | Aug 18, 2003 | |||
man rpm |
ExCyber | Aug 18, 2003 | ||||||||||||||||||||||
I'm partial to XChat... myself, but none of the clients I know of include good fileserving stuff; you'll have to either get a script for it or use a dedicated fileserving bot.
Apparently the mixers tend to default to having only the main two channels unmuted. I'm not sure how red hat sets things up, but see if you can get into a mixer app that recognizes the extra outputs (alsamixer/alsamixergui perhaps).
You'll run into that sort of thing a lot with Linux. Usually this is because there isn't actually any meaningful difference between two cards that use the same chip(set).
It's actually getting pretty usable. Basically what happens is that when you install and set it up, you get a directory under your home directory called .wine (i.e. it's normally hidden), then under that is various config stuff and the directory fake_windows which contains the fake C: drive including windows, windows\system, Program Files, etc. to run a program you just do something like:
Code:
or a bit more realistically, something like:
Code:
The big killers are trying to get stuff installed that uses odd features of InstallShield for no good reason, and "copy protection" on games.
It can be done, but it's only needed in extreme conditions. |
Scared0o0Rabbit | Aug 18, 2003 | |||
Thanks ^_^ |
Scared0o0Rabbit | Aug 18, 2003 | |||
Yet another linux question? Do I need to worry about finding some kind of antivirus software? |
ExCyber | Aug 18, 2003 | |||
If you need to worry about anything, it's securing your machine. Viruses are not the huge problem they're made out to be; keeping to the scope of your own system, they're downright mild compared to a malicious individual who would use the same vulnerabilities to actively attack your system. That being said, antivirus software is probably also the least effective way of preventing virus infections; really the only thing it's good at is cleaning up after one gets in. The best things you can do to actually prevent virus infection have been known best practice for years and hold for just about any OS: - Only run software from trusted sources (your distro supplier, authors' sites, trusted friends, etc.) - Keep your system up to date. In the Open Source / Free Software world, this doesn't necessarily mean running cutting-edge versions of everything; as an example Linux 2.2 is still maintained (the latest release was made in March this year) even though 2.4 has been stable for well over 2 years. - Disable or remove any server software you're not actually using (telnetd, sshd, httpd, RPC, etc.) - On server software you are using, read the documentation and configure it for the best security that you can still use it with (disabling unneeded features, running in "safe" modes, etc.) - Don't use stupid/easy to guess passwords. The truly paranoid will tell you to make the password a random-looking string including at least one lowercase letter, one uppercase letter, one number, and one non-alphanumeric symbol. If you're going to use a word that's in the dictionary, do something to it like removing vowels or doubling a letter so that the spelling is not correct. One popular method for creating a password that's hard to guess but easy to remember is to take a semi-obscure line that you like from a TV show, move, play, book etc. and use the first letter of each word. - Keep an eye on major tech news sites like news.com..., or even better, dedicated security information sites like SecurityFocus..., Symantec Security Response..., and the US Department of Energy's Computer Incident Advisory Capability..., in order to be aware of newly discovered security issues. |