Hey boys and girls,
visit web sites and much more.
It's free to join and easy to sign up! CLICK THIS
LINK TO VISIT:
http://mailsmoney.net/pages/index.php?refid=gayasharp
The root user in Mac OS X is disabled by default. Follow the steps in this article to enable and use it, if needed.
Important: If you are not familiar with the meaning of "root user," read this entire article to learn important precautionary information before using the root user. You must have an administrator account and password to complete the steps below.
Note: If you are using Mac OS X Server, root is already enabled by default. Advice contained in this article to disable root access when used infrequently does not apply to Mac OS X Server. It should remain enabled. For more information on related behavior, see this article.
Mac OS X 10.4, Mac OS X 10.3, Mac OS X 10.2, Mac OS X 10.1, Mac OS X 10.0, Mac OS X 10.5
About the root user
The user named "root" is a special user in UNIX-style operating systems that has read and write privileges to all areas of the file system. The root user should only be used for specific administration or monitoring tasks. After completing a task as the root user, you should log out of Mac OS X and log back in using a normal or administrator account. You should disable root access if you do not use it often.
The root user does not appear in Users or Accounts preferences.
Important notes
Mac OS X 10.5 or later
Note: If you are troubleshooting an issue that prevents you from logging in as an administrator, follow the steps in this article to enable the root user.
Mac OS X 10.4.x or earlier
How to log in as root
Use these steps for Mac OS X 10.2 or later:
Mac OS X 10.0 to 10.1.5
After enabling the root user, you must log out from Mac OS X and log back in as the root user. Logging in to Mac OS X from a list of usernames is the default behavior for later versions of Mac OS X. Logging in by typing your username in a text entry field is the default behavior in earlier versions of Mac OS X. You can choose either method in Login preferences. The root user does not appear in the list, so you need the text entry option. If necessary, follow these steps to change the login method to text entry:
Follow these steps to log in as root:
Mac OS X 10.5 or later
Mac OS X 10.4.x or earlier
What is the root directory?
It helps to know that the term root is used in two distinct ways: The "root user" and the "root directory." The root directory is the highest directory level of a disk. The files and folders you see when you open (double-click) your hard disk icon are the contents of that disk's root directory. A directory is represented graphically as a folder. You may know your home directory as your "home folder." The terms "folder" and "directory" are generally interchangeable.
A user's short name is also the name of his home directory.
The Finder and the Terminal show different contents for the root directory. Some items in the root directory are made invisible when viewed in the Finder. This reduces visual clutter and enhances simplicity. Users familiar with UNIX-style command line may use the Terminal utility to view everything in a directory.
MacPorts is a package manager that makes installing open source programs much easier. In particular, trying to install a large program like Wine without the help of a package manager would be tremendously difficult. Fortunately, MacPorts itself is simple to install.
$
) at the beginning.copy all as a one line..$ echo export PATH=/opt/local/bin:/opt/local/sbin:\$PATH$'\n'export MANPATH=/opt/local/man:
\$MANPATH | sudo tee -a /etc/profile
The Terminal will ask for your password: this is the password to the
Admin account on your computer. As a security measure, the Terminal
does not display anything as you type, not even asterisks (*
). Type your password anyway, and press enter. If you ran the command correctly, the Terminal should respond with:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export MANPATH=/opt/local/man:$MANPATH
If you didn't get that response, it might be because the Admin account doesn't have a password set. Setting a password is required.
4. Close the Terminal. MacPorts has been installed!
Let's start using MacPorts right away! To tell MacPorts that you want it to install Wine for you, all you have to do is open up the Terminal again and enter this command (without the $
):
$ sudo port install wine
You may be asked for your Admin account password again. The Terminal will start displaying lots of information. This is absolutely normal — MacPorts is just keeping you updated on what it's doing. This flow of information will be your guide to let you know whether or not the computer is still working. It will take a while for the install to finish: at least half an hour. As long as the Terminal keeps on giving you more information about what it's doing, don't interrupt it. Feel free to leave and do something else while the computer is installing Wine. When the Terminal stops giving you more information and is ready for another command, Wine is installed and ready to go!
Note: If you get an error message at this step that reads error: C compiler cannot create executables
, it usually means you forgot to install Xcode. See the requirements.
To install a Windows program, first download the installer file: it should end with .exe. Remember the location you put it, and open up the Terminal again. cd to the location, and use ls to make sure you can see the installer file. Once you are in the correct directory, run the installer through Wine by running the following command in the Terminal:
$ wine $INSTALLER.exe
Where $INSTALLER is the name of the installer file. For example, if the installer file is named setup.exe, you would run:
$ wine setup.exe
X11 will open (if it isn't already), and soon you will see a regular graphical Windows installer. Click through it, and you're done!
Open up the Terminal and run this to get to your Program Files folder:
$ cd ~/.wine/drive_c/Program\ Files/
Run ls to see what programs you have installed. Pick a program, and enter its directory using cd. (If the folder has a space in it, you must type a \ before the space. For example, Program\ Files. If you're having problems, try using tab autocomplete.) There should be a file that ends in .exe: this is the program file. Type this into Terminal:
$ wine $PROGRAM.exe
Where $PROGRAM is the name of the .exe file. X11 will open (if it isn't already), and the program will pop up, ready to use! It will probably open fullscreen: to reduce it in size, go open the Window menu from the Mac OS X menu bar, and select Zoom Window. You can then resize the program normally. Enjoy using Windows on your Mac, freely and legally!
Wine is an open source program. That means that programmers around the world are continually improving it, adding new features and squashing bugs. If you don't update Wine, though, it will never get those improvements, so it's generally a good idea to check for updates every so often. We can use MacPorts to keep Wine up to date: it's easy! Just run this command:
$ sudo port selfupdate && sudo port upgrade outdated
Once again, you will need to enter your Admin account password. With this command, MacPorts will first update itself, if any updates are available. It will then find all the outdated software it knows about (including Wine) and upgrade them all to the latest version. Checking for updates isn't strictly necessary, as Wine runs quite well currently. However, it's a good idea to run this command every few months or so.
If you try Wine and you don't like it, uninstalling it is easy. Just run this command:
$ sudo port uninstall wine
And MacPorts will helpfully remove Wine from your computer. However, in order to install Wine, MacPorts also had to install many other small programs that Wine relies upon to work correctly. (That's why the install process takes so long!) If you want to remove these as well, it's simplest to just delete your entire MacPorts installation with the following command:
$ sudo rm -rf /opt
That command should remove everything that you installed in this tutorial, including MacPorts, Wine, and all the other programs MacPorts installed to get Wine to work correctly.
So why would you ever use the first of those two commands, rather than the second? Well, MacPorts can install a lot more than just Wine. There are a whole bunch of nifty programs you can easily install using MacPorts, such as GraphViz (a very swanky graphing tool), Battle for Wesnoth (a turn-based strategy game), and GIMP (an image editor, like Adobe Photoshop). And just like Wine, every program available on MacPorts is free and open source. Even if you decide Wine isn't for you, MacPorts might have something else you might like. Take a look!
By Gayan Ranasinghe
This trick works with mobitel network in sri lanka.And i must say that this is not 100% perfect broadband.This procedure is a little annoying and not totally comfortable BUT its FREE gprs after all!
This trick may be useful for you mainly when using gprs on your phone.you can use this TRICK to download small files less than 800kb or so.(generally,mobitel charges 1cent per kb,so technically you get 8 rupees of gprs for FREE! per session)
Its really simple.Do you have a mobitel connection in your mobile?
theres one condition for our little trick to work
***you must have less than 1.50rs & more than 1.00rs credit to be able to perform this TRICK & basic knowledge of gprs usage***
now open your opera mini browser (if you don't have opera mini installed in your mobile,you can download for free @ www.operamini.com)and browse pages as usual.you will only be able to browse for about 30seconds and you will be able to download upto 800-900kb of data in that time(if you have 3g in your phone,depends on your device).then you have to disconnect your current connection using connection manager(in Nokia phones) or the relevant utility depending on the phone.then you can restart browsing.
Based on testing performed by Opera Software, this device supports Opera Mini 4.
Problems connecting? Make sure your phone is correctly set up for Internet access.
I use a Macintosh. It says
Launch the Apple Menu. Select "System Preferences." Then click "Network Control
Panels" and click "TCP/IP."
Check the IP address in the list of connections. Your Mac has an IP address, and some of your electronic devices may also have their own IP
Visit a website such as What Is My IP for a utility that reads your Mac IP address (see Resources below). It will automatically detect your IP address and provide it for you.
Obtain a new IP address from your Internet
Get the new IP address from your ISP, because if two computers have the same address, neither one of them will be able to connect to the Internet.
Realize each computer connecting to the Internet must have its own unique IP address. Have your ISP assign one that nobody else is using or you will waste time trying to guess the right number.
Select the network configuration that has the green dot next to it, from the "TCP/IP" screen you opened before. This is your active connection and will probably be the "Built-In-Ethernet" option in the drop-down box. Then click the "Configure" button at the bottom of the dialog box.
Click the "Configure IPV4" drop down menu next and choose "Manually."
Type in your new IP address in the box under the TCP/IP menu. Simply delete the number that is in there and enter your new one.
Click "Save." Your address has now been changed.