Search the web
Sign In
New User? Sign Up
lucknow-lug · Uttar Pradesh Linux Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 60 of 247   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#60 From: anujsingh_1
Date: Sat Oct 15, 2005 4:53 am
Subject: Web-based interface for system administration for Unix.
anujsingh_1
Offline Offline
 
What is Webmin?
Webmin is a web-based interface for system administration for Unix.
Using any browser that supports tables and forms (and Java for the
File Manager module), you can setup user accounts, Apache, DNS, file
sharing and so on.

Webmin consists of a simple web server, and a number of CGI programs
which directly update system files like /etc/inetd.conf and
/etc/passwd. The web server and all CGI programs are written in Perl
version 5, and use no non-standard Perl modules.

download it from
http://www.webmin.com/

n-joy

#59 From: anujsingh_1
Date: Thu Oct 13, 2005 10:21 pm
Subject: RHCE Forth Coming Exam Schedule
anujsingh_1
Offline Offline
 
#58 From: anujsingh_1
Date: Thu Oct 13, 2005 4:56 pm
Subject: Re: Colourful bash prompt and timeout feature
anujsingh_1
Offline Offline
 
PS1='\[\033[11;31m\]\u@\h\[\033[00m\]:\$'
is not showing the p working directory. So:

PS1='\[\033[11;33m\]\u@\h\w\[\033[00m\]:\$'
shows present working directory (add \w)
example:
user@tuxlover~/works:$


--- In lucknow-lug@yahoogroups.com, anujsingh_1 <no_reply@y...> wrote:
>
> When working on a network with multiple linux boxes it looks confusing
> as all bash prompts look same (colour) and it is fairly easy to
> operate when  you the bash prompt is colourful...so how to make it
> colourful?
> Simply you have to add this entry in to your
> /~home/.bashrc
> i.e. in ur home directory open your .bashrc file and add this entry
> #RED
> PS1='\[\033[11;31m\]\u@\h\[\033[00m\]:\$'
>
> #GREEN
> PS1='\[\033[11;32m\]\u@\h\[\033[00m\]:\$'
>
> #ORANGE
> PS1='\[\033[11;33m\]\u@\h\[\033[00m\]:\$'
>
> #BLUE
> PS1='\[\033[11;34m\]\u@\h\[\033[00m\]:\$'
>
> #PURPLE
> PS1='\[\033[11;35m\]\u@\h\[\033[00m\]:\$'
>
> #CYAN
> PS1='\[\033[11;36m\]\u@\h\[\033[00m\]:\$'
>
>
>
> The above line will make your bash shell colourful. (easy to recognize
> when working with many systems ) ...even you can give ur root bash
> some colour. Suppose your server is with a red bash command prompt and
> ur other system is with green or someother colour.
>
> example:-my .bashrc file is
> ______________________________________________________________
> # .bashrc
> # User specific aliases and functions
> # Source global definitions
> if [ -f /etc/bashrc ]; then
>         . /etc/bashrc
> PS1='\[\033[11;31m\]\u@\h\[\033[00m\]:\$'
> #Make your terminal to close after a defined period of inactivity
> TMOUT=15
> fi
> _____________________________________________________________
>
>
> Also as a security feature you can add a timeout entry in your .basrc
> which causes your terminal to close after the given n seconds of
> inactivity.
>
> anuj
>

#57 From: anujsingh_1
Date: Wed Oct 12, 2005 6:20 pm
Subject: diff Installation methods, partitions
anujsingh_1
Offline Offline
 
Which one is your favorite installation method?
FTP, HTTP, NFS (network installation)
HDD or directly threw cd/dvd?

I found that:
HTTP installtion does not support Graphical Installation.
NFS is the fastest and easy installtion Supports graphical installation).

why partitions are necessary?
There are many. Like to limit the users from filling all the hard disk
with data.
Practical thing I experienced was a DOS (Dinal of service attack)  on
my  test server causing all the space filled with log files.
there are many good points and everyone must make partitions.

main partitions are :
/    is your mount point
/boot   (100Mb is enough as this partiton holds grub bootloader)

/var   ( for the server files like web pages, ftp so it's size depends
on how much you going to put for web)
I share a lot of mp3s on my server @ home so my partition is around
2000MB.

/usr  (Contains most of the applications and utilities thus it's
decision depends on how much applications you want.)
I use many applications also i try new things so I found 3 GB is enough.

/tmp (name is obvious this partition holds the temporary files best
practice is to put iton a different hard disk as this thing ensures
proper working of those applications which require to write in to /tmp.

/swap (it should be double of the your ram size, processor uses this
partiton as an extra ram )

/home  (again this partition depends on how many documents , files
e.g. mp3, pictures etc). I download a lot so I gave it 1.5 Gb.


If you want to add more/feel corrections installations feel free to
share.
Plese be careful when you insall. It is just a brief information and
not the full installtion cross check everything  before installation,
read shipped documentation with your distro n undestand before acting
regds
anuj

#53 From: anujsingh_1
Date: Tue Oct 11, 2005 1:55 pm
Subject: Re: Let me know how can I contribute to LUG Lucknow
anujsingh_1
Offline Offline
 
what are you up to?
Hakcing ? not bad.
about perl check this site
http://www.perlmonks.org/

and about spoofing ....serious ? try dsniff.
http://naughty.monkey.org/~dugsong/dsniff/

what are you using ? I mean which o/s?


--- In lucknow-lug@yahoogroups.com, rajni kant <rajnikant12345@y...>
wrote:
>
> plzz help how learn parl
>
> genrally socket programming
>
> i also want to know how i can learn ip spoofing
>
>
>
>
> ---------------------------------
>  Start your day with Yahoo! - make it your home page
>

#50 From: anujsingh_1
Date: Mon Oct 10, 2005 2:37 pm
Subject: Colourful bash prompt and timeout feature
anujsingh_1
Offline Offline
 
When working on a network with multiple linux boxes it looks confusing
as all bash prompts look same (colour) and it is fairly easy to
operate when  you the bash prompt is colourful...so how to make it
colourful?
Simply you have to add this entry in to your
/~home/.bashrc
i.e. in ur home directory open your .bashrc file and add this entry
#RED
PS1='\[\033[11;31m\]\u@\h\[\033[00m\]:\$'

#GREEN
PS1='\[\033[11;32m\]\u@\h\[\033[00m\]:\$'

#ORANGE
PS1='\[\033[11;33m\]\u@\h\[\033[00m\]:\$'

#BLUE
PS1='\[\033[11;34m\]\u@\h\[\033[00m\]:\$'

#PURPLE
PS1='\[\033[11;35m\]\u@\h\[\033[00m\]:\$'

#CYAN
PS1='\[\033[11;36m\]\u@\h\[\033[00m\]:\$'



The above line will make your bash shell colourful. (easy to recognize
when working with many systems ) ...even you can give ur root bash
some colour. Suppose your server is with a red bash command prompt and
ur other system is with green or someother colour.

example:-my .bashrc file is
______________________________________________________________
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
         . /etc/bashrc
PS1='\[\033[11;31m\]\u@\h\[\033[00m\]:\$'
#Make your terminal to close after a defined period of inactivity
TMOUT=15
fi
_____________________________________________________________


Also as a security feature you can add a timeout entry in your .basrc
which causes your terminal to close after the given n seconds of
inactivity.

anuj

#49 From: "Frederick Noronha (FN)" <fred@...>
Date: Sat Oct 8, 2005 11:08 am
Subject: FN'sEyeOnFLOSS *** Few hours to midnight... and FOSS.in deadline
fredericknor...
Offline Offline
Send Email Send Email
 
................................................................
FN's Eye on FLOSS (Free/Libre and Open Source Software  ........
................................................................

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

MEET INDIAN FLOSS BLOGGERS: http://planet.foss.in/
----------------------------------------------------
FOSS4US blog (NGOs and FLOSS) http://foss4us.org/blog

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

NEWS FROM BANGALORE AND PLANS FOR FOSS.IN: Atul Chitnis
<mail@...> writes on the
http://groups.yahoo.com/group/foss-in-announce/ list:

           This is it, the last day of speaker and talks
           registration for FOSS.IN/2005.

By midnight tonight (October 8th), we will be closing
registration for talks for the technical and community
sessions of the event. Speakers who have registered but not
submitted any talks will be removed from the speaker database
tonight.

           So if you are planning to submit any talks - you
           have till midnight tonight (GMT+0530!)

FOSS.IN seems to be generating massive amounts of enthusiasm
in the Linux community, and *especially* in the BSD community
(who have proposed several talks and workshops), the Gentoo
community, the Debian community, etc.

The FOSS community rulez!

I will send in another mail giving you some top level stats
about talks and speakers once we close registrations tonight.

           Once registrations close, we will spend a couple of
           days sorting things out, checking which talks need
           work on, and will release the first shortlist
           (minus work-in-progress talks and "star" talks) on
           schedule in the evening of the 12th of October.
           (See the schedule at http://foss.in/2005/cfp/).

Once clashes and WIP talks are sorted out, we will release a
second list with these added. "Star" speakers will be
announced as soon as the remaining major sponsor
confirmations come in.

Call for participation for business sessions and student
talks will go out early next week. Stay tuned. Atul

-----------------------------------------------------------
FOSS.IN/2005 India's Premiere Free & Open Source Software
Event Nov 29 to Dec 2, 2005 Bangalore Palace.  foss.in/2005
Speaker Registration open till Oct.08, 2005
----------------------------------------------------------

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

WANTED, CODERS FOR AN EDUCATIONAL DEVELOPMENT-ORIENTED GAME:
Sunil Abraham sunil@... of Bangalore sent across this
note from his friend Dev <dev@...> who put
forward a specific proposal.

           Dev wrote: "I need your help to find young social
           technopreneurs (in your circle its probably Open
           source software engineers who might want to design
           a game like WFP Food Force or other software)."

Global Knowledge Partnership's Youth Social Enterprise
Initiative (YSEI) fellowships are designed to help social
entrepreneurs achieve their goals from the initial idea
through to project implementation and impact creation.

They seek to support projects by young people who are
creating impact with innovative solutions to social problems,
especially those using information and communication
technologies (ICTs) for development. YSEI will support
fellows by providing mentorship and training programmes;
networking; and seed grants.

If you are a young social entrepreneur (age <30) from India,
Sri Lanka, Bangladesh, Philippines and Malaysia in search for
support and opportunities. Please visit
www.globalknowledge.org/ysei OR www.futureshifters.net to
learn more and submit your proposal by 31st October 2005.

Youth Social Enterprise Initiative (YSEI) is a Global
Knowledge Partnership (GKP) Youth Program supported by the
Swiss Agency for Development and Cooperation (SDC). Its
partners include MITRA, OrphanIT, TakingITGlobal,
YoungAsiaTelevision, Philippines Resources for Sustainable
Development (PRSD), Development Research Network (D.Net) with
TRN as the intiative's lead.

Sunil Abraham <sunil@...> also happens to be manager
of the IOSN.net In addition, he's behind the Mahiti group in
Bangalore. http://www.mahiti.org 314/1, 7th Cross, Domlur
Bangalore - 560 071 Karnataka, INDIA Ph/Fax: +91 80 51150580.
Mob: (91) 9342201521 UK: (44) 02000000259

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

YOUNG NETWORK IN GOA: Our friend 'DP' of the Goa Lug
rediscovered this abandoned network and is trying to rebuild
it. It's in the town of Ponda in central Goa. A place where a
small but committed number of techies are deeply interested
in GNU/Linux. Please offer your support:
http://groups.yahoo.com/group/ilug-ponda

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

AN INTERESTING LINK: Guru Prasath <aprasadh@...> posted
to the SonaLUG <sonalug@yahoogroups.com> recently, a link
that gives an interesting background, in all its graphic
detail:

           Unix history in graphic.
           http://www.levenez.com/unix/history.html

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

ENGICOS TAKE TO FLOSS, AND THEIR COLLEGE DISTRO IS BORN: Prof
George Easaw <geasaw@...> of the Goa Engineering
College, the live-wire behind Free/Libre and Open Source
Software in that part of Goa, reports:

           The Goa Engicos linux iso, it is available for
           download from http://www.gec.ac.in/me , the
           temporary homepage of the mech engg dept.

           There you can find the link to engicos.iso. Right
           click and click on 'save link target as' and save
           it to your pc. Cut it on a cd and you can start the
           pc afresh.

Contact: George Easaw Mech Engg. Dept., College of Engg.
Ponda, Goa, 403 401. INDIA. ring : (0832) - 2319185

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

WHY GNU/LINUX NEEDS A MENTOR PROGRAM: See this interesting
essay at
http://business.newsforge.com/article.pl?sid=05/09/13/1816200&from=rss

Why Linux needs a mentor program By: Tarun Agnani: Imagine
you're a new Linux user. You ordered an Ubuntu CD weeks ago
and forgot about it. You're surprised it actually comes in
the mail. You slap the shiny disc into your PC and cross your
fingers. The installation is quite slick. You're impressed by
the splash screen and attractive desktop. Wow, you think
you're hot stuff -- a Linux user. But the euphoria fades as
you realize there's a problem with your modem. Now what do
you do? ...

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

FLOSS FELLOWSHIPS FROM SARAI: V Vivek <viyyer@...>
announces the Sarai/CSDS Short Term FLOSS Fellowship,
2005-2006.

           The Sarai Programme, Centre for the Study of
           Developing Societies, Delhi (www.sarai.net) invites
           applications for fellowship to projects in the area
           of Free Software, Open Source Software and Social
           Usage of Software.

Sarai invites developers, researchers and programmers
(practitioners as well as students) to propose projects in
the area of free and open source software applications
relevant to educational, social and community needs. They are
looking for original ideas, as well as proposals to localize
and adapt existing software and applications to South Asian
conditions. They are also looking for ideas around technical
manuscripts, beginners' manuals, review manuscripts etc.

Some of the focus areas are:

- Indic Computing
- Developing/Distributing/Supporting a standalone / addon
   localized  Linux distribution
- Printing support (i.e. ability to print in Indian
   Languages)
- Multimedia / Publishing Tools Research
- Developing / Enhancing Tools like GIMP, Scribus for
   publishing quality work
- Enhancing current audio/video tools available under
   Linux
- Fixing/Supporting Cinelerra, LiVES etc
- P2P
- Researching on feasibility and implementation of P2P news
   distribution network
- Researching and developing
- Collaboration Tools/Frameworks
   (Apnaopus, CreativeDot  )
- Developing extensions for the project newsrack
   http://floss.sarai.net/newsrack
- Low Resource Computing
- Devising solutions for networked computing in Low Resource
   Spaces (Define the parameters of the "low resource space"
   and work on it)
- Generic
- Developing Linux drivers/software for easily available
   hardware (usually the cheapest hardware available on the
   market is not supported under Linux (scanners, webcams etc))
   [This would include writing a howto on how to get it to
   work under popular distributions (redhat, pcqlinux etc) and
   all.]
- Review papers on emerging technologies
   - Indic Computing
   - IPV6
   - Wireless Networks
- Manuscripts for beginners

For more information visit www.sarai.net. Sarai says it "is
committed to promoting the free software and open source
vision".

Conditions: Applicants should be resident in India, and
should have a bank account in any bank operating in India.
These are support grants and grantees will be free to pursue
their primary occupations, if any. Mail your project
proposal, workplan and CV to both the following addresses:
floss at sarai.net
<https://mail.sarai.net/mailman/listinfo/prc>

Please mark your subject line 'FLOSS (Free/Libre Open Source
Software) Initiative'.  Also point out what you see as the
relevance of your work, and how you plan to share the
resultant software once finalized.

Enquires: floss at sarai.net

Note: Proposals from teams, partnerships, collectives,
faculty are welcome, so long as the grant amount is
administered by a single individual, and the funds are
deposited in a single bank account in the name of an
individual. *** Knowlege is power... share it equitably!

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

           MAILING LIST FOR e-learning in FLOSS:
           ELEARN-OPENSOURCE@...

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

Copyleft -- verbatim copying, with credits -- allowed/encouraged.

#48 From: anuj_su_linux
Date: Fri Oct 7, 2005 9:30 pm
Subject: Using Shell Account
anuj_su_linux
Offline Offline
 
I hope most of you got a shell account. This is a good thing as you
can use a unix  from your system (on any os with internet). These are
the places where you can learn A LOT of things from other Users/Hackers.

You have to telnet to these sites and follow the instructions.

Few Points :
If you make a typing mistake, press the Backspace key (or try Delete
or Ctrl-H).

To cancel the entire command before you press Enter, press Ctrl-U
(occasionally Ctrl-K). The command disappears.

When you finish typing a command, press Enter.

If you type a command that UNIX doesn't know, it displays a message
saying that it couldn't find the command. What probably happened is
that you mistyped the command.

UNIX cares about capitalization. Enter commands as they appear here,
or else UNIX won't recognize them. UNIX considers ls and LS to be two
totally different commands. Most UNIX commands are in all lowercase.
When you're typing filenames, upper- and lowercase matter too: FROG,
Frog, FrOg, and frog are four different names and may be four
different files. (We didn't say that this would be easy.)

Don't stick any extra spaces in the middle of commands. Do, however,
type a space after a command and before any other information you type
on the command line.

If you're stuck, type help. Not all UNIX providers have a help
command, but you never know.


I placed few links in the group link section..make your shell account
a right place for some cool stuff. remember unix shell accounts are
not the place of chatting but you can learn real things from the gurus.

The List of Shell Providers.
http://www.ductape.net/~mitja/freeunix.shtml

Few more things.
for browsing you will get:
links or lynx (Web Browser)
mutt, pine (mail)

#47 From: anuj_su_linux
Date: Thu Oct 6, 2005 2:17 pm
Subject: Re: RHCE and RHCT Exam Preparation Guide
anuj_su_linux
Offline Offline
 
Dear ranjan!
Well for rhce some institutions are providing training  in the
city..(you have to pay a lot)...
Redhat Linx Bible (Fedora & Enterprise Linux 4/with a DVD) is a good
book for administrating your box.
if you need latest installation cds contact me..I have RHEL4, FC4 etc.
You have to copy them.
Fedora core 4 is a bit more user friendly and with more advanced
features.(masqurading, journaling SE etc .....)
regards
anuj

http://www.polarhome.com:793/~anujhere







--- In lucknow-lug@yahoogroups.com, Rajan Singh
<rajanraghuvanshi@y...> wrote:
>
> Hello  Dear Anuj
> this is rajan here working as SE and i am working on
> Linux since last 1 year and wish to go for these
> certifications and preparing for it and wish to work
> in same domain of Linux and C/C++ only .
> Regards
> Rajan
> --- anuj_su_linux <no_reply@yahoogroups.com> wrote:
>
> > DearFriends!
> > Please inform me how many of you are preparing for
> > redhat
> > certification/development/security? serious into
> > linux as a
> > profession......???
> >
> _________________________________________________________________
> >
> > RHCE and RHCT Exam Preparation Guide
> > Overview
> >
> > This guide provides information candidates may use
> > in preparing to
> > take the RHCT or RHCE exam. Red Hat is not
> > responsible for the content
> > or accuracy of other guides, books, online
> > resources, or any other
> > information provided by organizations or individuals
> > other than Red
> > Hat Global Learning Services. Red Hat reserves the
> > right to change
> > this Guide when appropriate, and candidates who have
> > enrolled in
> > forthcoming classes or exams are advised to check
> > this guide
> > periodically for changes.
> >
> > The Red Hat Certified Engineer (RHCE) and Red Hat
> > Certified Technician
> > (RHCT) exams are performance-based evaluations of
> > Red Hat Enterprise
> > Linux and Red Hat Linux system administration skills
> > and knowledge.
> > Candidates perform a number of routine system
> > administration tasks and
> > are evaluated on whether they have met specific
> > objective criteria.
> > Performance-based testing means that candidates must
> > perform tasks
> > similar to what they must perform on the job.
> >
> > Prospective employers of RHCEs and RHCTs should
> > verify any and all
> > claims by people claiming to hold one of these
> > certificates by
> > requesting their certificate number and verifying it
> > here.
> >
> > Only Red Hat and Red Hat Certified Training Partners
> > administer the
> > RHCE and RHCT exams. Prospective candidates should
> > exercise due
> > diligence when purchasing a seat in an RHCE or RHCT
> > exam from a
> > provider other than Red Hat itself. They should
> > verify that the
> > provider is, in fact, an authorized training partner
> > in good standing.
> > Please notify greymarket@r... about
> > organizations that purport
> > to offer the RHCE or RHCT exams, but who are not Red
> > Hat Certified
> > Training Partners.
> >
> > Official scores for the RHCE and RHCT exams come
> > exclusively from Red
> > Hat Certification Central. Red Hat does not
> > authorize examiners or
> > training partners to report results to candidates
> > directly. Scores on
> > the exam are usually reported within three (3) US
> > business days.
> >
> > Exam results are reported as section scores. Red Hat
> > does not report
> > performance on individual items, nor will it provide
> > additional
> > information upon request.
> > Preparation for the RHCT and RHCE Exams
> >
> > Red Hat encourages all candidates for RHCT and RHCE
> > to consider taking
> > one or more of its official training courses to help
> > prepare for the
> > RHCE or RHCT exam. Attendance in these classes is
> > not required, and
> > one can choose to take just an exam. Many successful
> > candidates who
> > have come to class already possessing substantial
> > skills and knowledge
> > have reported that the class made a positive
> > difference for them.
> >
> > To help you determine the best courses to take, Red
> > Hat provides
> > online skills assessment.
> >
> > While attending Red Hat's classes can be an
> > important part of one's
> > preparation to take the RHCE or RHCT exam, attending
> > class does not
> > guarantee success on the exam. Previous experience,
> > practice, and
> > native aptitude are also important determinants of
> > success.
> >
> > Many books and other resources on system
> > administration for Red Hat's
> > OS products are available. Red Hat does not
> > officially endorse any as
> > preparation guides for the RHCT or RHCE exams.
> > Nevertheless, you may
> > find additional reading deepens understanding and
> > can prove helpful.
> > Components of the RHCE and RHCT Exams
> >
> > The RHCT exam is a subset of the RHCE exam, and is
> > organized as
> > follows:
> >
> >     * Troubleshooting and System Maintenance — 1
> > hour
> >     * Installation and Configuration — 2 hours
> >
> > In order to earn RHCT, one must successfully
> > complete all the
> > requirements in Troubleshooting and System
> > Maintenance, and must
> > achieve a score of 70 or higher on Installation and
> > Configuration.
> >
> > For RHCE exams given on Red Hat Enterprise Linux 3
> > and higher, the
> > exam is organized as follows:
> >
> >     * Troubleshooting and System Maintenance — 2.5
> > hours
> >     * Installation and Configuration — 3.0 hours
> >
> > In order to earn RHCE, one must successfully
> > complete all the
> > RHCT-level Troubleshooting and System Maintenance
> > requirements, and
> > successfully complete enough additional RHCE items
> > to earn a score of
> > 80 or higher overall on the section.
> >
> > In addition, one must score 70 or higher on the RHCT
> > items of
> > Installation and Configuration, and 70 or higher on
> > the RHCE
> > components of that section. We describe the skills
> > associated with
> > RHCT and RHCE below.
> >
> > For RHCE exams given on Red Hat Linux 9, the
> > following structure
> > applies:
> >
> >     * Troubleshooting — 2.5 hours
> >     * Multiple Choice — 1.0 hour
> >     * Installation and Configuration — 2.5 hours
> >
> > In order to earn RHCE on these exams, one must
> > successfully complete
> > all the RHCT-level Troubleshooting requirements,
> > score a minimum of 50
> > on the multiple choice, score 70 or higher on both
> > the RHCE and RHCT
> > components, and earn an overall score of 80 or
> > better for the exam as
> > a whole.
> > Study Points for the RHCE Exam
> > Prerequisite skills for RHCT and RHCE
> >
> > Candidates should possess the following skills, as
> > they may be
> > necessary in order to fulfill requirements of the
> > RHCT and RHCE exams:
> >
> >     * use standard command line tools (e.g., ls, cp,
> > mv, rm, tail,
> > cat, etc.) to create, remove, view, and investigate
> > files and
> > directories
> >     * use grep, sed, and awk to process text streams
> > and files
> >     * use a terminal-based text editor, such as
> > vi/vim, to modify text
> > files
> >     * use input/output redirection
> >     * understand basic principles of TCP/IP
> > networking, including IP
> > addresses, netmasks, and gateways
> >     * use su to switch user accounts
> >     * use passwd to set passwords
> >     * use tar, gzip, and bzip2v
> >     * configure an email client on Red Hat
> > Enterprise Linux
> >     * use mozilla and/or links to access HTTP/HTTPS
> > URLs
> >
> === message truncated ===
>
>
>
>
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com

#46 From: Rajan Singh <rajanraghuvanshi@...>
Date: Thu Oct 6, 2005 3:29 am
Subject: Re: RHCE and RHCT Exam Preparation Guide
rajanraghuva...
Offline Offline
Send Email Send Email
 
Hello  Dear Anuj
this is rajan here working as SE and i am working on
Linux since last 1 year and wish to go for these
certifications and preparing for it and wish to work
in same domain of Linux and C/C++ only .
Regards
Rajan
--- anuj_su_linux <no_reply@yahoogroups.com> wrote:

> DearFriends!
> Please inform me how many of you are preparing for
> redhat
> certification/development/security? serious into
> linux as a
> profession......???
>
_________________________________________________________________
>
> RHCE and RHCT Exam Preparation Guide
> Overview
>
> This guide provides information candidates may use
> in preparing to
> take the RHCT or RHCE exam. Red Hat is not
> responsible for the content
> or accuracy of other guides, books, online
> resources, or any other
> information provided by organizations or individuals
> other than Red
> Hat Global Learning Services. Red Hat reserves the
> right to change
> this Guide when appropriate, and candidates who have
> enrolled in
> forthcoming classes or exams are advised to check
> this guide
> periodically for changes.
>
> The Red Hat Certified Engineer (RHCE) and Red Hat
> Certified Technician
> (RHCT) exams are performance-based evaluations of
> Red Hat Enterprise
> Linux and Red Hat Linux system administration skills
> and knowledge.
> Candidates perform a number of routine system
> administration tasks and
> are evaluated on whether they have met specific
> objective criteria.
> Performance-based testing means that candidates must
> perform tasks
> similar to what they must perform on the job.
>
> Prospective employers of RHCEs and RHCTs should
> verify any and all
> claims by people claiming to hold one of these
> certificates by
> requesting their certificate number and verifying it
> here.
>
> Only Red Hat and Red Hat Certified Training Partners
> administer the
> RHCE and RHCT exams. Prospective candidates should
> exercise due
> diligence when purchasing a seat in an RHCE or RHCT
> exam from a
> provider other than Red Hat itself. They should
> verify that the
> provider is, in fact, an authorized training partner
> in good standing.
> Please notify greymarket@... about
> organizations that purport
> to offer the RHCE or RHCT exams, but who are not Red
> Hat Certified
> Training Partners.
>
> Official scores for the RHCE and RHCT exams come
> exclusively from Red
> Hat Certification Central. Red Hat does not
> authorize examiners or
> training partners to report results to candidates
> directly. Scores on
> the exam are usually reported within three (3) US
> business days.
>
> Exam results are reported as section scores. Red Hat
> does not report
> performance on individual items, nor will it provide
> additional
> information upon request.
> Preparation for the RHCT and RHCE Exams
>
> Red Hat encourages all candidates for RHCT and RHCE
> to consider taking
> one or more of its official training courses to help
> prepare for the
> RHCE or RHCT exam. Attendance in these classes is
> not required, and
> one can choose to take just an exam. Many successful
> candidates who
> have come to class already possessing substantial
> skills and knowledge
> have reported that the class made a positive
> difference for them.
>
> To help you determine the best courses to take, Red
> Hat provides
> online skills assessment.
>
> While attending Red Hat's classes can be an
> important part of one's
> preparation to take the RHCE or RHCT exam, attending
> class does not
> guarantee success on the exam. Previous experience,
> practice, and
> native aptitude are also important determinants of
> success.
>
> Many books and other resources on system
> administration for Red Hat's
> OS products are available. Red Hat does not
> officially endorse any as
> preparation guides for the RHCT or RHCE exams.
> Nevertheless, you may
> find additional reading deepens understanding and
> can prove helpful.
> Components of the RHCE and RHCT Exams
>
> The RHCT exam is a subset of the RHCE exam, and is
> organized as
> follows:
>
>     * Troubleshooting and System Maintenance — 1
> hour
>     * Installation and Configuration — 2 hours
>
> In order to earn RHCT, one must successfully
> complete all the
> requirements in Troubleshooting and System
> Maintenance, and must
> achieve a score of 70 or higher on Installation and
> Configuration.
>
> For RHCE exams given on Red Hat Enterprise Linux 3
> and higher, the
> exam is organized as follows:
>
>     * Troubleshooting and System Maintenance — 2.5
> hours
>     * Installation and Configuration — 3.0 hours
>
> In order to earn RHCE, one must successfully
> complete all the
> RHCT-level Troubleshooting and System Maintenance
> requirements, and
> successfully complete enough additional RHCE items
> to earn a score of
> 80 or higher overall on the section.
>
> In addition, one must score 70 or higher on the RHCT
> items of
> Installation and Configuration, and 70 or higher on
> the RHCE
> components of that section. We describe the skills
> associated with
> RHCT and RHCE below.
>
> For RHCE exams given on Red Hat Linux 9, the
> following structure
> applies:
>
>     * Troubleshooting — 2.5 hours
>     * Multiple Choice — 1.0 hour
>     * Installation and Configuration — 2.5 hours
>
> In order to earn RHCE on these exams, one must
> successfully complete
> all the RHCT-level Troubleshooting requirements,
> score a minimum of 50
> on the multiple choice, score 70 or higher on both
> the RHCE and RHCT
> components, and earn an overall score of 80 or
> better for the exam as
> a whole.
> Study Points for the RHCE Exam
> Prerequisite skills for RHCT and RHCE
>
> Candidates should possess the following skills, as
> they may be
> necessary in order to fulfill requirements of the
> RHCT and RHCE exams:
>
>     * use standard command line tools (e.g., ls, cp,
> mv, rm, tail,
> cat, etc.) to create, remove, view, and investigate
> files and
> directories
>     * use grep, sed, and awk to process text streams
> and files
>     * use a terminal-based text editor, such as
> vi/vim, to modify text
> files
>     * use input/output redirection
>     * understand basic principles of TCP/IP
> networking, including IP
> addresses, netmasks, and gateways
>     * use su to switch user accounts
>     * use passwd to set passwords
>     * use tar, gzip, and bzip2v
>     * configure an email client on Red Hat
> Enterprise Linux
>     * use mozilla and/or links to access HTTP/HTTPS
> URLs
>
=== message truncated ===




__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#45 From: anuj_su_linux
Date: Tue Oct 4, 2005 7:37 pm
Subject: RHCE and RHCT Exam Preparation Guide
anuj_su_linux
Offline Offline
 
DearFriends!
Please inform me how many of you are preparing for redhat
certification/development/security? serious into linux as a
profession......???
_________________________________________________________________

RHCE and RHCT Exam Preparation Guide
Overview

This guide provides information candidates may use in preparing to
take the RHCT or RHCE exam. Red Hat is not responsible for the content
or accuracy of other guides, books, online resources, or any other
information provided by organizations or individuals other than Red
Hat Global Learning Services. Red Hat reserves the right to change
this Guide when appropriate, and candidates who have enrolled in
forthcoming classes or exams are advised to check this guide
periodically for changes.

The Red Hat Certified Engineer (RHCE) and Red Hat Certified Technician
(RHCT) exams are performance-based evaluations of Red Hat Enterprise
Linux and Red Hat Linux system administration skills and knowledge.
Candidates perform a number of routine system administration tasks and
are evaluated on whether they have met specific objective criteria.
Performance-based testing means that candidates must perform tasks
similar to what they must perform on the job.

Prospective employers of RHCEs and RHCTs should verify any and all
claims by people claiming to hold one of these certificates by
requesting their certificate number and verifying it here.

Only Red Hat and Red Hat Certified Training Partners administer the
RHCE and RHCT exams. Prospective candidates should exercise due
diligence when purchasing a seat in an RHCE or RHCT exam from a
provider other than Red Hat itself. They should verify that the
provider is, in fact, an authorized training partner in good standing.
Please notify greymarket@... about organizations that purport
to offer the RHCE or RHCT exams, but who are not Red Hat Certified
Training Partners.

Official scores for the RHCE and RHCT exams come exclusively from Red
Hat Certification Central. Red Hat does not authorize examiners or
training partners to report results to candidates directly. Scores on
the exam are usually reported within three (3) US business days.

Exam results are reported as section scores. Red Hat does not report
performance on individual items, nor will it provide additional
information upon request.
Preparation for the RHCT and RHCE Exams

Red Hat encourages all candidates for RHCT and RHCE to consider taking
one or more of its official training courses to help prepare for the
RHCE or RHCT exam. Attendance in these classes is not required, and
one can choose to take just an exam. Many successful candidates who
have come to class already possessing substantial skills and knowledge
have reported that the class made a positive difference for them.

To help you determine the best courses to take, Red Hat provides
online skills assessment.

While attending Red Hat's classes can be an important part of one's
preparation to take the RHCE or RHCT exam, attending class does not
guarantee success on the exam. Previous experience, practice, and
native aptitude are also important determinants of success.

Many books and other resources on system administration for Red Hat's
OS products are available. Red Hat does not officially endorse any as
preparation guides for the RHCT or RHCE exams. Nevertheless, you may
find additional reading deepens understanding and can prove helpful.
Components of the RHCE and RHCT Exams

The RHCT exam is a subset of the RHCE exam, and is organized as
follows:

     * Troubleshooting and System Maintenance — 1 hour
     * Installation and Configuration — 2 hours

In order to earn RHCT, one must successfully complete all the
requirements in Troubleshooting and System Maintenance, and must
achieve a score of 70 or higher on Installation and Configuration.

For RHCE exams given on Red Hat Enterprise Linux 3 and higher, the
exam is organized as follows:

     * Troubleshooting and System Maintenance — 2.5 hours
     * Installation and Configuration — 3.0 hours

In order to earn RHCE, one must successfully complete all the
RHCT-level Troubleshooting and System Maintenance requirements, and
successfully complete enough additional RHCE items to earn a score of
80 or higher overall on the section.

In addition, one must score 70 or higher on the RHCT items of
Installation and Configuration, and 70 or higher on the RHCE
components of that section. We describe the skills associated with
RHCT and RHCE below.

For RHCE exams given on Red Hat Linux 9, the following structure
applies:

     * Troubleshooting — 2.5 hours
     * Multiple Choice — 1.0 hour
     * Installation and Configuration — 2.5 hours

In order to earn RHCE on these exams, one must successfully complete
all the RHCT-level Troubleshooting requirements, score a minimum of 50
on the multiple choice, score 70 or higher on both the RHCE and RHCT
components, and earn an overall score of 80 or better for the exam as
a whole.
Study Points for the RHCE Exam
Prerequisite skills for RHCT and RHCE

Candidates should possess the following skills, as they may be
necessary in order to fulfill requirements of the RHCT and RHCE exams:

     * use standard command line tools (e.g., ls, cp, mv, rm, tail,
cat, etc.) to create, remove, view, and investigate files and
directories
     * use grep, sed, and awk to process text streams and files
     * use a terminal-based text editor, such as vi/vim, to modify text
files
     * use input/output redirection
     * understand basic principles of TCP/IP networking, including IP
addresses, netmasks, and gateways
     * use su to switch user accounts
     * use passwd to set passwords
     * use tar, gzip, and bzip2v
     * configure an email client on Red Hat Enterprise Linux
     * use mozilla and/or links to access HTTP/HTTPS URLs
     * use lftp to access FTP URLs

RHCT skills
Troubleshooting and System Maintenance

RHCTs should be able to:

     * boot systems into different run levels for troubleshooting and
system maintenance
     * diagnose and correct misconfigured networking
     * diagnose and correct hostname resolution problems
     * configure the X Window System and a desktop environment
     * add new partitions, filesystems, and swap to existing systems
     * use standard command-line tools to analyze problems and
configure system

Installation and Configuration

RHCTs must be able to:

     * perform network OS installation
     * implement a custom partitioning scheme
     * configure printing
     * configure the scheduling of tasks using cron and at
     * attach system to a network directory service, such as NIS or
LDAP
     * configure autofs
     * add and manage users, groups, and quotas
     * configure filesystem permissions for collaboration
     * install and update RPMs
     * properly update the kernel RPM
     * modify the system bootloader
     * implement software RAID at install-time and run-time
     * use /proc/sys and sysctl to modify and set kernel run-time
parameters

RHCE skills
Troubleshooting and System Maintenance

RHCEs must demonstrate the RHCT skills listed above, and should be
able to:

     * use the rescue environment provided by first installation CD
     * diagnose and correct boot failures arising from bootloader,
module, and filesystem errors
     * diagnose and correct problems with network services (see
Installation and Configuration below for a list of these services)
     * add, remove, and resize logical volumes

Installation and Configuration

RHCEs must demonstrate the RHCT-level skills listed above, and they
must be capable of configuring the following network services:

     * HTTP/HTTPS
     * SMB
     * NFS
     * FTP
     * Web proxy
     * SMTP
     * IMAP, IMAPS, and POP3
     * SSH
     * DNS

For each of these services, RHCEs must be able to:

     * install the packages needed to provide the service
     * configure the service to start when the system is booted
     * configure the service for basic operation
     * Configure host-based and user-based security for the service

RHCEs must also be able to:

     * configure hands-free installation using Kickstart
     * implement logical volumes at install-time
     * use PAM to implement user-level restrictions
_________________________________________________________________
Pretty cool...

#44 From: "Frederick Noronha (FN)" <fred@...>
Date: Wed Sep 21, 2005 10:17 pm
Subject: Linux Toys: A $10 Linux Answering Machine
fredericknor...
Offline Offline
Send Email Send Email
 
Linux Toys

Linux Toys...  are interesting I/O devices for Linux PCs and are used to
amuse and entertain. Each article on this web site presents a short
tutorial and application note on an I/O device.

The Code...  You won't find RPMs, ./configure, or even Makefiles. We
strive to expose the device protocol in as few lines of code as
possible. To do this, we sacrifice some functionality and some error
checking. Most programs fit in a single file and are built using just
gcc -o.

The articles usually describe things which are available at your local
electronics store, but some articles describe do-it-yourself
construction projects. (Be ready with a wire-wrap tool!)

These are just toys ....  they are 'for the fun of it' and are not
always meant to solve real-world problems. If you do find a business use
for any of these projects please let us know.

A $10 Linux Answering Machine:

The LinuxToys.Org website has a new article on how to
use a popular, low cost winmodem as a Linux based
telephone answering machine.  The article is at:

http://www.linuxtoys.org/answer/answering_machine.html

--
----------------------------------------------------------
Frederick 'FN' Noronha  | fred@...
Independent Journalist  | http://fn.swiki.net
Goa, India              | +91(832)2409490 Cell 9822122436
----------------------------------------------------------

#43 From: "Frederick Noronha (FN)" <fred@...>
Date: Mon Sep 19, 2005 9:41 am
Subject: FN'sEyeOnFLOSS *** F[L]OSS TV gets going *** 091619
fredericknor...
Offline Offline
Send Email Send Email
 
................................................................
FN's Eye on FLOSS (Free/Libre and Open Source Software  ........
................................................................

ONLINE MOVIES RELATED TO FLOSS: FOSS.tv is a website for Podcasting and
Vodacasting news from the world of Free/Libre and Open Source Software
(FLOSS). Navin Dhanuka <dhanukanavin@...> is now announcing  that
besides a 1hr movie on Linux Localization he is planning to have CBTs
(computer-based training) on FOSS.tv And, yes, they will be released in
Creative Commons License.

He is zeroing on the following topics 1. Basic Shell 2. OpenOffice 3.
Networking 4. PHP & MySQL 5. Python ... Your suggestions are welcome.

You can see the video @ vlog http://www.foss.tv/wordpress/?p=6

Also, do long on to http://groups.yahoo.com/group/fosstv/  "so that we
can discuss about the same". If you know about ppl/groups who would be
interested in helping in creation of CBTs, please fwd the message to
them.

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

SFD IN UGANDA: From Wire Lunghabo James <lunghabo@...>
http://maitri.ubuntu.com/softwarefreedomday/wiki/index.php/Uganda

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

CREATING LEARNING OBJECTS... IN TRINIDAD AND TOBAGO: Burrokeet is an
open source software project that is building an electronic system for
creating Learning Objects. Funded by IBM, Burrokeet's development
resides at the University of the West Indies in Trinidad and Tobago.

The Commonwealth of Learning is dedicated to promoting educational and
academic improvement throughout the Commonwealth of Nations, especially
in the English-speaking developing world. They sponsor a variety of
interesting and useful face-to-face conferences and online resources.
Their report on a "Virtual University for Small States" is of
particular interest.

UNESCO's International Institute for Educational Planning has a set of
Virtual University resources.

http://www.freecurricula.org/links.php

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

FROM CAPE TOWN: Centre for Educational Technology, University of Cape
Town is online at http://www.cet.uct.ac.za Stephen Marquard
<marquard@...> says, "My portfolio is learning technologies,
which includes online learning environments. We use (free/libre and)
open source software extensively for web-based applications. UCT built
an inhouse learning environment (connect) from open source components,
including the w-agora discussion engine. Last year we adapted this
platform to host an online conference http://emerge2004.net, and
released the resulting package under the GPL
http://eduforge.org/projects/emergecolab/ We also have a multi-year
project to migrate to the open source Sakai Project learning
environment http://www.sakaiproject.org, which we're excited about for
many reasons, including the Sakai community, interesting tools and
applications emerging for Sakai, and of course the cool technology. On
the social software side, we have recently started a blog service for a
staff development programme (though we expect its application to be
much wider) using plog http://www.plogworld.net , and are at various
stages of using 4 different wikis for different purposes - swiki,
Wikka, mediawiki and a Sakai wiki. We're also interested in eXe for
offline content editing.

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

Copyleft -- verbatim copying, with credits -- allowed/encouraged.
--
----------------------------------------------------------
Frederick 'FN' Noronha  | fred@...
Independent Journalist  | http://fn.swiki.net
Goa, India              | +91(832)2409490 Cell 9822122436
----------------------------------------------------------

#42 From: anuj_su_linux
Date: Fri Sep 16, 2005 2:14 pm
Subject: Re: INDIA: Useful GNU/Linux links... [Courtesy: http://ilug-cochin.org/cool_link
anuj_su_linux
Offline Offline
 
Yes good links!
Feel  free to add such links in the "Links " Section so that anyone
can access them by directly going to links section.
cheers


--- In lucknow-lug@yahoogroups.com, prachee agarwal
<agarwal_prachee@y...> wrote:
> hi,
> thanks for all the nice links .. here are some more useful links
>
> www.indlinux.org
>
> www.gentoo.org
>
> www.linuxiso.org
>
> www.linuxquestions.org
>
> ftp://ftp.funet.fi
>
>
>
> "Frederick Noronha (FN)" <fred@b...> wrote:
>
**************************************************
***********************
> Chennai LUG has a great wiki going there!
> http://www.chennailug.org/wiki/Main_Page
>
**************************************************
***********************
>
> 1. The GNU Homepage.
> http://www.gnu.org/
>
> 2. The GNU philosophy.
> http://www.gnu.org/philosophy/
>
> 3. What is free software ? Know it more
> http://www.gnu.org/philosophy/free-sw.html
>
> 4. kernal.org Linux kernel archives
> http://www.kernel.org/
>
> 5. Linux.org: The official linux page.
> http://www.linux.org/
>
> 6. Linux.com: The flagship Linux site.
> http://www.linux.com/
>
> 7. Linuxlinks.com A Linux portal
> http://www.linuxlinks.com/
>
> 8. Linuxberg.com Download Linux s/w
> http://www.linuxberg.com/
>
> 9. Linuxmall.com Linux mall on the net
> http://www.linuxmall.com/
>
> 10. Linuxworld.com  Linux news
> http://www.linuxworld.com/
>
> 11. Linuxjournal.com Linux Magazine
> http://www.linuxjournal.com/
>
> 12. li.org Linux international
> http://www.li.org/
>
> Indian Linux Users Group
> Cochin Chapter
> The Cochin chapter of Linux India is run by GNU/Linux
> enthusiasts in and around Cochin.
>
> 13. Slashdot.org:  News for nerds.
> http://www.slashdot.org/
>
> 14. Freshmeat.net
> http://www.freshmeat.net/
>
> 15. xfree86.org
> http://www.xfree86.org/
>
> 16. The Linux Documentation Project.
> http://www.linuxdoc.org/
>
> 17. The GNU General Public License (GNU GPL).
> http://www.gnu.org/copyleft/gpl.html
>
> 18. ANSI Escape Sequences.
>
http://www.evergreen.edu/user/serv_res/research/bs
i/people/dawn/program/ansi_esc.htm
>
> 19. The Linuxbox Network: Free hosting for your free software
projects.
> http://www.linuxave.net/
>
> 20. Linux Weekly News.
> http://www.lwn.net/
>
> Dr Krishnan C N <cnkrish at au-kbc.org> iheading the National
Resource
> Center on FLOSS housed in MIT, Anna University. This is a joint
venture
> between Anna University and C-DAC. This group has been studying
FLOSSt
> training aspect.
>
>
**************************************************
***********************
> ILUG-Goa's links * We welcome your participation!
>
**************************************************
***********************
> http://groups.yahoo.com/group/ilug-goa ILUG-Goa's main friendly
list
> http://groups.yahoo.com/group/ilug-goa-announce ANNOUNCE LIST
> http://groups.yahoo.com/group/teach-yourself-linux FOR NEWBIES
> http://groups.yahoo.com/group/linuxgoahelp TECH HELP LIST
> WEBSITES: http://ilug-goa.swiki.net http://www.ilug-margao.org
>
**************************************************
***********************
>
>
>
> SPONSORED LINKS
> Linux operating system Unix operating system Unix
>
> ---------------------------------
> YAHOO! GROUPS LINKS
>
>
>     Visit your group "lucknow-lug" on the web.
>
>     To unsubscribe from this group, send an email to:
>  lucknow-lug-unsubscribe@yahoogroups.com
>
>     Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
> ---------------------------------
>
>
>
>
> ---------------------------------
>  Yahoo! India Matrimony: Find your partner now.

#41 From: "Frederick Noronha (FN)" <fred@...>
Date: Thu Sep 15, 2005 8:43 pm
Subject: FN'sEyeOnFLOSS *** Freedel on Sept 17/18 at New Delhi *** 09162005
fredericknor...
Offline Offline
Send Email Send Email
 
................................................................
FN's Eye on FLOSS (Free/Libre and Open Source Software  ........
................................................................

IOSN COMES OUT WITH A PRIMER ON OPEN STANDARDS

IOSN's open standards primer.
* Download the primer: Open Document format (111KB)
http://www.iosn.net/open-standards/foss-open-standards-primer/foss-openstds-v01-\
1.odt
* PDF format (485KB)
http://www.iosn.net/open-standards/foss-open-standards-primer/foss-openstds-v01-\
1.pdf

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

MORE USEFUL URLs AND SOME CORRECTIONS TOO

Thanks to Komal <agencies_ad1@...> for pointing out that the
correct link for xfree86 is www.x.org and for the Linux documentation
project is www.tldp.org (and not as rendered earlier).

And thank you Prachee Agarwal <agarwal_prachee@...> of the
Lucknow LUG lucknow-lug@yahoogroups.com for responding with *your*
favourite links: www.indlinux.org  www.gentoo.org  www.linuxiso.org
www.linuxquestions.org ftp://ftp.funet.fi

Just shows how *everyone* benefits when something (information, code) is
shared!

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

           HOW-TO, ON TALKING THIS TIME... COURTESY PUNE

           Kanti Jadia <j_kanti@...> sent across this
           useful tip from PLUG, the Pune GNU/Linux Users Group,
           which explains *how to talk*
           http://plug.org.in/articles/articles.php?howtotalk

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

NOVELL COMES OUT WITH SOLUTIONS FOR INDIAN TONGUES

AD (Andi) Marshall, out there in Vietnam, admarshall@... draws
attention to this link, which says: "Novell is introducing Indian
language versions of its Suse Linux distribution, according to an
executive of the company..." COMPLETE STORY:
http://nl.internet.com/ct.html?rtr=on&s=1,1ur7,1,dvc6,kevq,9a65,aayy

IndLinux guru Guntupalli Karunakar <karunakar@...> responds,
to say: "Surprisingly, it doesnt mention Punjabi as supported, when
Punjabi is most well supported language on any distribution, while
Malayalam where l10n effort is slow pending resolution of Malayalam
Unicode issues finds place. Maybe they were trying to be different ;)"

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

DELHI PLANS AN AMBITIOUS FREEDEL MEET, WITH LOCAL CHAMBERS OF COMMERCE

Raj "Raju" Mathur <raju@...> of ILUG-Delhi announces Freedel
to be held on September 17/18 2005, 10:00AM to 6:00PM at PHD House, Hauz
Khas, New Delhi. Two full days of demystifying [GNU]Linux. PHDCCI and
India Linux Users Group - Delhi (ILUG-D) are behind the event.

Says Mathur: "ILUG-D in the past has conducted very successful events
where over 450 participants attended. This year we are expecting much
greater numbers. People from all walks of life are expected to attend;
students, professionals, corporates, all will be there. What's more,
ILUG-D will have something to show for everyone. Technical talks
covering issues from installation, to desktop usage to wireless
[GNU]Linux, it will all be there. We will even have young school kids
showing how they use [GNU]Linux. Its an event you don't want to miss!"

Several stalls showcasing various aspects of Linux from gaming, to
audio/video editing to development, servers, databases and applications.

The event is organised by ILUG-D and co-hosted by PHD Chamber of
Commerce and Industry. It is completely volunteer-driven and supported
by several organisations. The event is primarily driven by volunteers
of ILUG-D and a committed group of computer professionals from PHDCCI.

Apart from all the technical stuff happening, there will also be
T-shirts, Linux distributions on CDs, tea, snacks and all the elements
of fun available at low or no cost.  Be there, be counted!

Contact: Raj Mathur raju@...  http://kandalaya.org/

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

THOSE FREE CDs IN YOUR HAND, THEY'RE ACTUALLY WORTH MILLIONS

Value of Debian GNU/Linux. The paper Measuring Libre Software
studying the size of the source packages in Debian 3.1 calculates the
size of sarge (close to 230 million lines of source code), the use of
the various programming languages in which the software has been
written, and the size of the packages included in the distribution. It
also estimates cost to create something on the scale of Debian from
scratch with a classical and well-known cost method (COCOMO) to be
over 8 billion US dollar.
http://www.upgrade-cepis.org/issues/2005/3/up6-3Amor.pdf
Source: Debian Weekly News http://www.debian.org/News/weekly/2005/37/

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

IT'S NEW: A WIKI FOR THE FLOSS COMMUNITY IN INDIA

Praveen A <pravi.a@...> has launched a new wiki for the Free/Libre
and Open Source Software community in India. See
http://fci.wikicities.com

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

AN EXPAT WHO CAN, AND PLANS TO, BUILD BRIDGES

Adi Alurkar <adi@...> is an Indian expat who could be one of those to
build useful bridges. He announced on ILUG-Goa --
http://groups.yahoo.com/group/ilug-goa -- recently that he manages all
the database related responsibilities for SourceForge.net and will be
visiting India shortly.

Aditya (Adi) is India between Oct 21 and Dec 9 and says that "during
this visit I'd like to meet and chat with like minded folks and see how
SF.net could help the F[L]OSS community in india better".

He will be visiting family in South Maharashtra and South Gujarat, looks
forward to getting feedback on how FLOSS is "taking hold in the Indian
subcontinent" and wants an "excuse" to come to Goa, the place where he
was raised and graduated (from Chowgule College). You're welcome mate!

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

FOSS.TV, WHAT'S THAT? JUST TAKE A PEEP

Navin Dhanuka <dhanukanavin@...> has meanwhile gone ahead with
FOSS.tv Says Navin, "Feedback about FOSS.tv is good as of now. Let's see
if I can set it rolling soon." If you want to help him, just go for it.
Hint: you need software of the video kind.
To find out more about Navin, go to http://www.navin.ind.in

[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]o[</>]

Copyleft -- verbatim copying, with credits -- allowed/encouraged.

#40 From: prachee agarwal <agarwal_prachee@...>
Date: Wed Sep 14, 2005 8:46 am
Subject: OT: anyone lining in Vigyanpuri Mahanagar area - EOM
agarwal_prachee
Offline Offline
Send Email Send Email
 
Prachee


Yahoo! India Matrimony: Find your partner now.

#39 From: prachee agarwal <agarwal_prachee@...>
Date: Wed Sep 14, 2005 7:42 am
Subject: Re: INDIA: Useful GNU/Linux links... [Courtesy: http://ilug-cochin.org/cool_links.htm]
agarwal_prachee
Offline Offline
Send Email Send Email
 
hi,
thanks for all the nice links .. here are some more useful links
 
 
 
 
 
 

"Frederick Noronha (FN)" <fred@...> wrote:
*************************************************************************
Chennai LUG has a great wiki going there!
http://www.chennailug.org/wiki/Main_Page
*************************************************************************

1. The GNU Homepage.
http://www.gnu.org/

2. The GNU philosophy.
http://www.gnu.org/philosophy/
               
3. What is free software ? Know it more
http://www.gnu.org/philosophy/free-sw.html
                 
4. kernal.org Linux kernel archives
http://www.kernel.org/
               
5. Linux.org: The official linux page. 
http://www.linux.org/
            
6. Linux.com: The flagship Linux site. 
http://www.linux.com/

7. Linuxlinks.com A Linux portal
http://www.linuxlinks.com/
               
8. Linuxberg.com Download Linux s/w
http://www.linuxberg.com/
               
9. Linuxmall.com Linux mall on the net
http://www.linuxmall.com/ 
                 
10. Linuxworld.com  Linux news
http://www.linuxworld.com/
                 
11. Linuxjournal.com Linux Magazine
http://www.linuxjournal.com/
                   
12. li.org Linux international
http://www.li.org/
       
Indian Linux Users Group
Cochin Chapter
The Cochin chapter of Linux India is run by GNU/Linux
enthusiasts in and around Cochin.
       
13. Slashdot.org:  News for nerds.
http://www.slashdot.org/

14. Freshmeat.net
http://www.freshmeat.net/

15. xfree86.org
http://www.xfree86.org/

16. The Linux Documentation Project.
http://www.linuxdoc.org/

17. The GNU General Public License (GNU GPL).
http://www.gnu.org/copyleft/gpl.html

18. ANSI Escape Sequences.
http://www.evergreen.edu/user/serv_res/research/bsi/people/dawn/program/ansi_esc.htm

19. The Linuxbox Network: Free hosting for your free software projects.
http://www.linuxave.net/

20. Linux Weekly News.
http://www.lwn.net/    

Dr Krishnan C N <cnkrish at au-kbc.org> iheading the National Resource
Center on FLOSS housed in MIT, Anna University. This is a joint venture
between Anna University and C-DAC. This group has been studying FLOSSt
training aspect.

*************************************************************************
ILUG-Goa's links * We welcome your participation!
*************************************************************************
http://groups.yahoo.com/group/ilug-goa ILUG-Goa's main friendly list
http://groups.yahoo.com/group/ilug-goa-announce ANNOUNCE LIST
http://groups.yahoo.com/group/teach-yourself-linux FOR NEWBIES
http://groups.yahoo.com/group/linuxgoahelp TECH HELP LIST
WEBSITES: http://ilug-goa.swiki.net http://www.ilug-margao.org
*************************************************************************


Yahoo! India Matrimony: Find your partner now.

#38 From: "Frederick Noronha (FN)" <fred@...>
Date: Tue Sep 13, 2005 6:23 am
Subject: INDIA: Useful GNU/Linux links... [Courtesy: http://ilug-cochin.org/cool_links.htm]
fredericknor...
Offline Offline
Send Email Send Email
 
*************************************************************************
Chennai LUG has a great wiki going there!
http://www.chennailug.org/wiki/Main_Page
*************************************************************************

1. The GNU Homepage.
http://www.gnu.org/

2. The GNU philosophy.
http://www.gnu.org/philosophy/

3. What is free software ? Know it more
http://www.gnu.org/philosophy/free-sw.html

4. kernal.org Linux kernel archives
http://www.kernel.org/

5. Linux.org: The official linux page.
http://www.linux.org/

6. Linux.com: The flagship Linux site.
http://www.linux.com/

7. Linuxlinks.com A Linux portal
http://www.linuxlinks.com/

8. Linuxberg.com Download Linux s/w
http://www.linuxberg.com/

9. Linuxmall.com Linux mall on the net
http://www.linuxmall.com/

10. Linuxworld.com  Linux news
http://www.linuxworld.com/

11. Linuxjournal.com Linux Magazine
http://www.linuxjournal.com/

12. li.org Linux international
http://www.li.org/

Indian Linux Users Group
Cochin Chapter
The Cochin chapter of Linux India is run by GNU/Linux
enthusiasts in and around Cochin.

13. Slashdot.org:  News for nerds.
http://www.slashdot.org/

14. Freshmeat.net
http://www.freshmeat.net/

15. xfree86.org
http://www.xfree86.org/

16. The Linux Documentation Project.
http://www.linuxdoc.org/

17. The GNU General Public License (GNU GPL).
http://www.gnu.org/copyleft/gpl.html

18. ANSI Escape Sequences.
http://www.evergreen.edu/user/serv_res/research/bsi/people/dawn/program/ansi_esc\
.htm

19. The Linuxbox Network: Free hosting for your free software projects.
http://www.linuxave.net/

20. Linux Weekly News.
http://www.lwn.net/

Dr Krishnan C N <cnkrish at au-kbc.org> iheading the National Resource
Center on FLOSS housed in MIT, Anna University. This is a joint venture
between Anna University and C-DAC. This group has been studying FLOSSt
training aspect.

*************************************************************************
ILUG-Goa's links * We welcome your participation!
*************************************************************************
http://groups.yahoo.com/group/ilug-goa ILUG-Goa's main friendly list
http://groups.yahoo.com/group/ilug-goa-announce ANNOUNCE LIST
http://groups.yahoo.com/group/teach-yourself-linux FOR NEWBIES
http://groups.yahoo.com/group/linuxgoahelp TECH HELP LIST
WEBSITES: http://ilug-goa.swiki.net http://www.ilug-margao.org
*************************************************************************

#37 From: rajni kant <rajnikant12345@...>
Date: Wed Aug 31, 2005 4:39 am
Subject: Re: Let me know how can I contribute to LUG Lucknow
rajnikant12345
Online Now Online Now
Send Email Send Email
 
plzz help how learn parl
 
genrally socket programming
 
i also want to know how i can learn ip spoofing

 


Start your day with Yahoo! - make it your home page

#36 From: rajni kant <rajnikant12345@...>
Date: Sun Aug 14, 2005 8:30 am
Subject: Re: Let me know how can I contribute to LUG Lucknow
rajnikant12345
Online Now Online Now
Send Email Send Email
 

you can go to linux group and register your self there

and thanks for showing your interest

 

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com


#35 From: nasim_ansari
Date: Thu Aug 11, 2005 3:47 am
Subject: Let me know how can I contribute to LUG Lucknow
nasim_ansari
Offline Offline
 
I am Nasimuddin Ansari working with CMC Limited at Lucknow office from
last 8 years as unix /linux sys admin.
I write a book on ThinClinet and few articles in LFY magz.
I wish to contribute to LUG Lucknoe and participate actively.
Let me know how I can contribute.
I may be contacted on 9415342755

Home: goecities.com/nasim_ansari/
nasim.ansari@...

#34 From: anuj_su_linux
Date: Wed Aug 10, 2005 3:54 pm
Subject: Firewall For Linux
anuj_su_linux
Offline Offline
 
Hello friends!
How many of you use firewall with linux?
Though it has a inbuilt firewall..i tried shorewall as an experiment
and it is just too great to use.

http://shorewall.net

If you know some other and feel it is good then share!

Now you might be thinking as how to check your firewall..well you can
check your firewall on this cool site "shields up"
http://grc.com/

linux is cool:x

#33 From: anuj_su_linux
Date: Sun Jul 17, 2005 7:34 am
Subject: Re: Fedora core 4 installation cd's
anuj_su_linux
Offline Offline
 
Hello Ranjan!
If you are from the same city (Lucknow) then you can take it from
me...I have it in DVD(this months LFY) as well as in cds. You can take
it from me and return it after burning (making a copy) for yourself.
Fedora Core 4 has many great features...cool ...everyone should try
it.
regards
anuj


--- In lucknow-lug@yahoogroups.com, Rajan Singh
<rajanraghuvanshi@y...> wrote:
> Hi I tried fedora core 3 installation from DVD provided with LFY but
its corrupt anuj do u have a a standard distribution from redhat as
other distros have few probs in kernel header when u go for kernel
hacks . files like sched.h are corrupt how to get fedora 4 from you
> thanks and regards
>
> Rajan Singh
>
>
> anuj_su_linux <no_reply@yahoogroups.com> wrote:
> Hello everyone!
> If anyone wants cd's of Fedora Core4 feel free to contact me here.
> Happy Linux!
>
>
>
>
>
> SPONSORED LINKS
> Linux operating system Unix operating system Unix
>
> ---------------------------------
> YAHOO! GROUPS LINKS
>
>
>     Visit your group "lucknow-lug" on the web.
>
>     To unsubscribe from this group, send an email to:
>  lucknow-lug-unsubscribe@yahoogroups.com
>
>     Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
> ---------------------------------
>
>
>
>
> ---------------------------------
>  Start your day with Yahoo! - make it your home page

#32 From: Rajan Singh <rajanraghuvanshi@...>
Date: Thu Jul 14, 2005 3:31 am
Subject: Re: Fedora core 4 installation cd's
rajanraghuva...
Offline Offline
Send Email Send Email
 
Hi I tried fedora core 3 installation from DVD provided with LFY but its corrupt anuj do u have a a standard distribution from redhat as other distros have few probs in kernel header when u go for kernel hacks . files like sched.h are corrupt how to get fedora 4 from you
thanks and regards
 
Rajan Singh


anuj_su_linux <no_reply@yahoogroups.com> wrote:
Hello everyone!
If anyone wants cd's of Fedora Core4 feel free to contact me here.
Happy Linux!





SPONSORED LINKS
Linux operating system Unix operating system Unix


Start your day with Yahoo! - make it your home page

#31 From: anuj_su_linux
Date: Wed Jul 13, 2005 1:17 pm
Subject: Fedora core 4 installation cd's
anuj_su_linux
Offline Offline
 
Hello everyone!
If anyone wants cd's of Fedora Core4 feel free to contact me here.
Happy Linux!

#30 From: "M.ZEESHAN" <thegodlover@...>
Date: Mon Apr 25, 2005 5:12 am
Subject: Re: HI
zeeshan_lko13
Offline Offline
Send Email Send Email
 

 
hi abhi..
this is zeeshan from lucknow..
welcome to our group..


On Mon, 25 Apr 2005 amitabhmca wrote :
>HI All,
>Myself is AMitabh Pandey.I am working in Linux.You can fire your all
>linux query to me.I am happy to join this group.
>I am in Bangalore right away.
>Thanks
>Amitabh PAndey
>Yahoo! Groups Links
>To visit your group on the web, go to:
>http://groups.yahoo.com/group/lucknow-lug/

>
>To unsubscribe from this group, send an email to:
>lucknow-lug-unsubscribe@yahoogroups.com

>
>Your use of Yahoo! Groups is subject to the
>Yahoo! Terms of Service
>.
>

Regards..
Zeeshan
(+919839560106)


#29 From: "amitabhmca" <amitabhmca@...>
Date: Mon Apr 25, 2005 3:46 am
Subject: HI
amitabhmca
Offline Offline
Send Email Send Email
 
HI All,

Myself is AMitabh Pandey.I am working in Linux.You can fire your all
linux query to me.I am happy to join this group.

I am in Bangalore right away.

Thanks
Amitabh PAndey

#26 From: "zeeshan_lko13" <thegodlover@...>
Date: Fri Mar 11, 2005 3:44 am
Subject: introduction
zeeshan_lko13
Offline Offline
Send Email Send Email
 
it is requested by all the group members to kindly introduce
themselves on the group..as we see we have a lot many members but
none of us are aware who is who..
this wud help us interact better and also help us to serve our groups
needs..and share our experinces and doubts ..about linux ..
even other related queries are welcome..
for which it has been created..

also its seen that the group is dormant from a long time..
kindly participate and interact..
and come up with some ideas..and bring the group to life..

Regards and cheers..:)
zee..

#25 From: "zeeshan_lko13" <thegodlover@...>
Date: Fri Mar 11, 2005 3:36 am
Subject: mount ntfs on linux
zeeshan_lko13
Offline Offline
Send Email Send Email
 
hi guys..
rpms to mount ntfs on red hat linux EL is now available in the files
section..
try now..

#21 From: anuj_su_linux
Date: Wed Feb 16, 2005 8:25 am
Subject: RHCE Certification
anuj_su_linux
Offline Offline
 
Hello javed bro!
What is ur plan? RHCE? I think lko is a fcked place for it.
izn't it. lol
c ya @u....c me bz at the moment(gotit)
byeee
tc

Messages 1 - 60 of 247   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help