Search Members Help

» Welcome Guest
[ Log In :: Register ]

Mini-ITX Boards Sale, Fanless BareBones Mini-ITX, Bootable 1G DSL USBs, 533MHz Fanless PC <-- SALE $200 each!
Get The Official Damn Small Linux Book. DSL Market , Great VPS hosting provided by Tektonic
Pages: (4) </ 1 [2] 3 4 >/

[ Track this topic :: Email this topic :: Print this topic ]

reply to topic new topic new poll
Topic: Improved self -learning help . (wiki/howto/tutor)< Next Oldest | Next Newest >
jpeters Offline





Group: Members
Posts: 804
Joined: April 2006
Posted: July 22 2007,03:11 QUOTE

Quote (william99 @ July 21 2007,16:31)
but the info needed it's all to scattered around the forum and you have to search it thread to thread.

Regarding apps, you're expected to find documentation at the site for the app; basic stuff is in the wiki.  I'd recommend the DSL book available...then there's one coming out this month.  There are far too many topics, levels of involvement, and ongoing changes to put in any one place.
Back to top
Profile PM 
lucky13 Offline





Group: Members
Posts: 1478
Joined: Feb. 2007
Posted: July 22 2007,13:14 QUOTE

Quote
since dsl is cut to it's size (50Mb). most of the apps are using mydsl. mydsl is fine but it has it's limit. not all apps will be included in mydsl.

I'm not sure your frame of reference since you brought up Gentoo before, but comparing Gentoo (a source-based distro) to DSL (a binary-based distro) is apples and oranges. DSL isn't monolithic in the sense that it's a live CD; it's also not limited to binary extensions (MyDSL, Debian via apt-get) since there are compilers that allow users to compile their own apps and utilities.

DSL comes with just about everything most people need: file management tools, text editing and word processing apps, internet tools like browsers and an e-mail client, file transfer utilities like ftp, and so on. MyDSL extensions allow DSL to be treated more modularly and customized. You need more power than Ted? Go get abiword or Open Office. You want support for non-free multimedia codecs? There are apps there for that. Etc. But it's very useful as it is on the CD.

As jpeters wrote in his reply and as you previously noted, documentation for each app is widely available online. As convenient as it would be to post step-by-step instructions to suit every user's needs, it's just not practical. It would also be overly redundant (something which is at odds with the DSL philosophy).

If you think there's a shortcoming in the wiki, please add to it. That's why it's there.

And as far as "not all apps will be available," they're not all available in any other distro, either. The nature of open source is such that new apps pop up all the time, old ones don't continue development, and very few people can keep up with everything in between. If there's an app you want in MyDSL, try making it yourself. The extensions are community-driven.

There are reasons Gentoo has such extensive documentation compared to, say, Slackware or DSL. First, Gentoo is source-based and has proven to be a difficult adjustment for most new users. Second, Gentoo attempts to be more like a BSD than a Linux distro. One of the areas where the BSDs have an edge over Linux is their man pages and related documentation, and Gentoo appears to subscribe to the old Unix philosophy that it's better to provide too much information than not enough. DSL, of course, strips man pages and gives you tools and browsers to find information online rather than on your CD or hard drive. Different strokes.

Quote
for example like i was installing XFree86 it takes me around three days to make it working. i have to google use the search. it is more like a puzzle, i have to take pieces of it and combine it into one.

XFree86 can be a pain in the ___ (select appropriate body part) to configure regardless of how much documentation you have to start with. If you look at the info file for that extension, note that it has warnings in capital letters that it's not a plug and play extension; it also has links for more information. I hope you noticed all that before you started.

Quote
in the other hand to have a great wiki it is not such an easy task. most of the wiki's are contributed from it's community so it will take times to build a full wiki

Which is why it's up to people like you and me to fill in any glaring holes. Consider adding to it as you learn, especially if you successfully got XFree86 set up for your hardware. Take an active role. :)


--------------
"It felt kind of like having a pitbull terrier on my rear end."
-- meo (copyright(c)2008, all rights reserved)
Back to top
Profile PM WEB 
william99 Offline





Group: Members
Posts: 10
Joined: July 2007
Posted: July 22 2007,16:54 QUOTE

regarding apps it is true that they supply man page either in the package or on their web. but their man pages are for average linux user, which is hard for new user to understand. sometimes they did give step by step manual but step  by step are for eg. suse / red hat, they dont give specific info for dsl.

my reference for gentoo is only their man pages. i've never tried any other linux distro. i am only using DSL distro which i admitted it is  a great distro especially it has improved a lot since the first time i knew about DSL (v.0.9.x)

my point is DSL could have a more man page that teaches people like how to compile their own apps. so people like me and any other new linux users could  learn how to compile their wanted apps or tools etc. it doesn't have to include all of the apps. which i assume it is impossible to create man pages for all apps and stuff. just few common apps that people use so they can learn how to compile their own apps.

about XFree it is sure pain in the ***. as soon i understand enough about DSL i will take part in the wiki. right now i dont understand completely about it so i wont write something which i don't completely understand. just to make sure other people don't get in trouble just in case i miss wrote about something.

nb: where can i found link on how to compile linux kernel (specifically DSL 3.4) sometimes i cant compile apps cause by incorrect kernel source configuration
Back to top
Profile PM 
lucky13 Offline





Group: Members
Posts: 1478
Joined: Feb. 2007
Posted: July 22 2007,20:29 QUOTE

Quote
my point is DSL could have a more man page that teaches people like how to compile their own apps.

Compile source or make DSL extensions? When compiling from source, there's usually a README, an INSTALL, or both files. Additionally, you can do the following and see if there are any features you want to enable or disable that may not be included in the INSTALL and/or README:
Code Sample
./configure --help | less


The less pipe will let you scroll through the output. Sometimes that's helpful, sometimes it just has the basic configure options like prefix (the directory to which you'll install whatever it is you're compiling, e.g., to /opt or /usr/local).

The basic commands to compile source (assuming you've installed a C compiler such as the gcc extension) are basic:
./configure (with whatever options)
make
sudo make install

You can take the easy road with things that play well with everything and do it on one line:
./configure && make && sudo make install

(You can add whatever options you need to the configure part before the first ampersand pair.)

Some things are a little different than that (pine/pico/pilot comes to mind), some will include a Makefile that may or may not need to be edited. Read the information that comes with it and you'll be fine. That's why it's there. With so many people putting out so many apps, it's difficult to give pat instructions in a wiki beyond "read the INSTALL and/or README files, then run ./configure, make, make install."

As far as building extensions go, there are a couple pages in the wiki and clivesay's deb2dsl tutorial is available here:
http://www.mirrorservice.org/sites....ion.pdf

Anything else?

Edit: I was weeding out some old podcasts and you might be interested in this one. The Linux Reality series of podcasts is geared to people new to Linux.
http://www.linuxreality.com/podcast/episode-41-compiling-from-source/


--------------
"It felt kind of like having a pitbull terrier on my rear end."
-- meo (copyright(c)2008, all rights reserved)
Back to top
Profile PM WEB 
curaga Offline





Group: Members
Posts: 2163
Joined: Feb. 2007
Posted: July 23 2007,08:45 QUOTE

Sorry to bump in, but some packages do not have any docs, not even man pages, not even on the program site. Betaftpd for example..

--------------
There's no such thing as life. Those mean little jocks invented it ;)
-
Windows is not a virus. A virus does something!
Back to top
Profile PM 
18 replies since July 21 2007,18:20 < Next Oldest | Next Newest >

[ Track this topic :: Email this topic :: Print this topic ]

Pages: (4) </ 1 [2] 3 4 >/
reply to topic new topic new poll
Quick Reply: Improved self -learning help . (wiki/howto/tutor)

Do you wish to enable your signature for this post?
Do you wish to enable emoticons for this post?
Track this topic
View All Emoticons
View iB Code