Basic Requirements
Posted by hemlet at 5:02 PM
Labels: Linux Ubuntu
Artigos Relacionados:
Find out where to get more help on using Ubuntu. Forums, Wikis, IRC chat rooms, and a built-in help system stand at the ready.
Everybody needs a place to turn to when he gets stuck. One of the nice things about Ubuntu Linux is the amount of help you can receive, if you know where to look. The development team at Canonical has put together an excellent support infrastructure that includes both free and nonfree support solutions.
Your first stop on the support train should be the Ubuntu Support page at http://www.ubuntulinux.org/support. This page contains links for all the currently possible support methods, both official and unofficial, paid-for and free.
Of course, Ubuntu has excellent documentation. The official documentation effort at http://help.ubuntu.com has both a Quick Tour section and a comprehensive Start Guide. The Quick Tour page is a great flyer that advertises the high points of Ubuntu and shows off some screenshots, while the Start Guide is more of an overall how-to document.
The next place to visit if you're stuck should be the Ubuntu Wiki (https://wiki.ubuntu.com). The Wiki is extremely comprehensive and is constantly updated by Ubuntu users and developers. As a result, it's typically more up-to-date than the official documentation. One of the side benefits to the Ubuntu Wiki is the Laptop Testing area at https://wiki.ubuntu.com/LaptopTestingTeam. If you're about to install Ubuntu on a laptop, you might want to see if your model is on that page, since the Laptop Testing Team puts all its installation notes and tweaks on that area of the Wiki. It might save you a lot of work and could very well help you get a troublesome feature like wireless or power management working correctly under Ubuntu Linux.
If you have a question that you can't find the answer to, you can ask it in either the Ubuntu Forums or the Ubuntu IRC chat room. The Ubuntu Forums at http://www.ubuntuforums.org provide a nearly real-time support venue that you can also search. Odds are, if you're having a problem, someone else has already had that problem and asked for help on the forums. If you have a more urgent issue, or just want instant gratification, you can ask for help in the IRC chat room. The IRC room is located on the freenode network (irc.freenode.net), and it's called #ubuntu. If you've never used IRC before, just click on the Applications menu, select Internet, and launch Xchat. (If you don't see Xchat on the menu, go to System
Administration
Synaptic Package Manager [Hack #55] and install xchat-gnome.) Log in to irc.freenode.net and join the #ubuntu channel. Once you're online, ask your question, but be sure to provide as much detail as possible for the people in the room. Please note that most of the people there are volunteers who are contributing to the Ubuntu effort by trying to offer support, so be friendly and be prepared to answer questions that anyone in the room may ask in return, since they may need more information to figure out your issue. You might want to lurk in the channel for a while and read the messages that scroll by to get a feel for the tone and flow before you ask your question.
A lot of the work that makes Ubuntu what it is happens on mailing lists. There's a comprehensive list of mailing lists at https://lists.ubuntu.com/mailman/listinfo; you can either search the archives of these lists, or you can add yourself to them and post your question there. If you choose to post a question to one of these lists, please show proper etiquette and ensure your question is targeted at the correct mailing list. As with IRC, it's worth spending some time to get familiar with the mailing lists: read some older posts and responses, and pay attention to which questions get answers and which ones don't.
If you can't get a solution to your problem through the aforementioned free methods, there's always paid-for support through Canonical and other organizations. The page at http://www.ubuntu.com/support/supportoptions/paidsupport details the various options open to you for paid support. If you're considering using Ubuntu in a corporate environment, you should become familiar with this page.
|
Posted by hemlet at 2:41 AM
Artigos Relacionados:
Operator (Visual Basic)Visual Studio 2008
Returns the difference between two numeric expressions or the negative value of a numeric expression.
expression1
Required. Any numeric expression.
expression2
Required unless the – operator is calculating a negative value. Any numeric expression.
The result is the difference between expression1 and expression2, or the negated value of expression1.
The result data type is a numeric type appropriate for the data types of expression1 and expression2. See the "Integer Arithmetic" tables in Data Types of Operator Results.
All numeric types. This includes the unsigned and floating-point types and Decimal.
In the first usage shown in the syntax shown previously, the – operator is the binary arithmetic subtraction operator for the difference between two numeric expressions.
In the second usage shown in the syntax shown previously, the – operator is the unary negation operator for the negative value of an expression. In this sense, the negation consists of reversing the sign of expression1 so that the result is positive if expression1 is negative.
If either expression evaluates to Nothing, the – operator treats it as zero.
The following example uses the – operator to calculate and return the difference between two numbers, and then to negate a number.
Visual Basic
Dim binaryResult as Double = 459.35 – 334.9
Dim unaryResult as Double = -334.9
Following the execution of these statements, binaryResult contains 124.45 and unaryResult contains –334.90.
Reference :
Operator(Visual Basic)-MSDN Library-Visual Studio 2008-Microsoft Document Explorer.
Posted by hemlet at 11:12 PM
Artigos Relacionados:
Exploring Sources Code © 2008 Template by Dicas Blogger.