Loading
Home ›
Resources for “The Ultimate Linux/Windows System”
Apr 25, 2006 By Kevin Farnham
Resources for the print article.
The System Rescue CD: www.sysresccd.org
The AbiWord Word Processor: www.AbiSource.com
The Gnumeric Spreadsheet Application: www.gnome.org/projects/gnumeric
The Scintilla Text Editor (SciTE): www.scintilla.org/SciTE.html
Mozilla Firefox and Thunderbird: www.Mozilla.com
Kevin Farnham Can Be Reached at kfarnham@LyraTechnicalSystems.com
Kevin's Business Web Site: www.LyraTechnicalSystems.com
Kevin's Software Development Experimentation Site: www.MathematicalAnalysis.com
______________________
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- Readers' Choice Awards 2011
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- Why Python?
- The Linux powered LAN Gaming House
- Linux-Based X Terminals with XDMCP
- Short Notices: News In Linux Audio
- buena información
3 hours 13 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
4 hours 14 min ago - Gnome3 is such a POS. No one
13 hours 41 min ago - Gnome 3 is the biggest POS
13 hours 52 min ago - I didn't knew this thing by
19 hours 56 min ago - Author's reply
23 hours 20 min ago - Link to modlys
1 day 27 min ago - I use YNAB because of the
1 day 38 min ago - Search
1 day 5 hours ago - Question
1 day 6 hours ago






Comments
I noticed from the article
I noticed from the article instructions that downloads get lost in cyberspace somewhere. I had them set to a download folder of the desktop. (This is for firefox) I then created a downloads folder under the /users/myusername/downloads. But all I get is a zero length file and no download window. Not sure what's causing that either.
Linux/Windows recommendations
I noted a few things about the article. Before I begin, though, it is well written and definitely seems to be a topic many would be able to use. Thanks!
Going one step further would be to add "user" to the options as well. This does imply a few changes to "defaults" (user implies nodev, noexec, nosuid), and in fact "defaults" isn't needed. The resulting union of defaults with noauto and user gives "rw,user,noauto,async". In a simple dual-boot computer where the user typically has full access, this simplifies everything (
"mount /share"as the user).The now changed /etc/fstab entry would look something like this (sorry about formatting):
"/dev/hda4 /share vfat rw,uid=1000,gid=1000,noauto,user,async 0 0".There are a few times (e.g. multi-OS projects) when the user will need exec (or perhaps even suid). Those are the exception and, in my opinion, it's better (and more secure) to make the user want to include those if needed. (That's why, if I understand it correctly, "user" implies "nodev,noexec,nosuid".)
There are definitely other ways to automate this (perhaps using autofs or something similar), but for single-user systems, those solutions are rarely that helpful.
There is one subtle drawback to this. I'm a fan of keeping all user documents (and email and ...) in a centralized and easily found location such as this extra partition. By sticking with the windows location, you are not gaining that advantage. That's minor and more of a personal technique, however.
This can possibly bite somebody when they perform an upgrade to windows, using NTFS instead, and they think to themselves "Oh, I don't need to back that up, it's on the linux side as well." (Contrived, perhaps, but feasible I guess.)
Thanks for the article.
-bill