Sponsored Content
Full Discussion: Solaris installation
Operating Systems Solaris Solaris installation Post 302483168 by R0H0N on Friday 24th of December 2010 05:37:15 AM
Old 12-24-2010
U can search under Solaris forum link. U will find many more answers in that. However this link will help u.
R0H0N
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Solaris Installation

Each and every time I tried to install Solaris 8 on my Dell Dimension (Intel P II - 400 MHz processor) the system hangs up. I am not able to load the Operating System at all. The same software works on other PC(different make). If anyone has a solution, please let me know. (6 Replies)
Discussion started by: vpedditi
6 Replies

2. Solaris

Solaris installation

Hi All, Can I install solaris 9 on my desktop P3(750 MHz) machine at home? I have 256MB of RAM and 80Gb hasd disk. Can anyone tell me a proper document/link for installation? Thanks in advance. Malay Maru (1 Reply)
Discussion started by: malaymaru
1 Replies

3. Solaris

installation of Solaris: installation bypasses network config.

hello solaris friends, I've tried installing Sun Solaris 10.0, but everytime it seems to bypass the network config. screen that looks similar to this...here's the url: http://www.hup.hu/old/images/hup/Solaris/Sol10beta7/9.png I'm able to install it all the way through but I get no... (2 Replies)
Discussion started by: cadmiumgreen
2 Replies

4. Solaris

Solaris 10 Installation

Firstly, I'm still new to all the technical of OS. But I'm learning. Hence I am starting to explore Unix via Solaris 10. Today, I backed up all my files and formatted my computer. I only have one physical hard drive of about 250GB. So unpartitioned all my exisiting drives and start my... (5 Replies)
Discussion started by: Xannen
5 Replies

5. Solaris

Solaris Installation

Hi, I want to know as we can install Sun Solaris through hyperterminal,Wheather any other software is coming through which we can install sun solaris (1 Reply)
Discussion started by: manoj.solaris
1 Replies

6. Solaris

new installation Solaris

hi guys im totally new to Solaris - i can use it for some functions (like at work) but installing is a first for me - please dont flame if there are any stupid questions; allright, my set up is a gigabyte motherboard which is supposed to work (BigAdmin - HCL: Gigabyte GA-MA790GP-DS4H ) 4... (5 Replies)
Discussion started by: Landser
5 Replies

7. Solaris

Solaris Installation

Hi all, I have a question.... Where can we find the default log locations and can identify the number of CD's installed in the system on Sparc and Intel Machines???? Thanks (4 Replies)
Discussion started by: tirupathiraju_t
4 Replies

8. Solaris

Solaris 10 flash installation - fatal error. Solaris installation program exited.

Not very helpful to say the least. Seems to read the flar file and go through the upgrade and then come up with this error. Any ideas? (1 Reply)
Discussion started by: psychocandy
1 Replies

9. Solaris

Installation of Solaris 10 1/13

Hi, I am doing a fresh installation of Solaris 10 1/13 on an IBM x3550 M3 server (x86). When I begin the installation it shows me failed to mount zfs, I was advised by oracle to ignore that. After the installation has finished and I reboot,I get a host of random errors after that it displays... (1 Reply)
Discussion started by: spirited67
1 Replies
RAWURLENCODE(3) 							 1							   RAWURLENCODE(3)

rawurlencode - URL-encode according to RFC 3986

SYNOPSIS
string rawurlencode (string $str) DESCRIPTION
Encodes the given string according to RFC 3986. PARAMETERS
o $str - The URL to be encoded. RETURN VALUES
Returns a string in which all non-alphanumeric characters except -_.~ have been replaced with a percent ( %) sign followed by two hex dig- its. This is the encoding described in RFC 3986 for protecting literal characters from being interpreted as special URL delimiters, and for protecting URLs from being mangled by transmission media with character conversions (like some email systems). Note Prior to PHP 5.3.0, rawurlencode encoded tildes ( ~) as per RFC 1738. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.4 | | | | | | | Tilde characters are no longer encoded when | | | rawurlencode(3) is used with EBCDIC strings. | | | | | 5.3.0 | | | | | | | Now conforms to RFC 3986. | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 including a password in an FTP URL <?php echo '<a href="ftp://user:', rawurlencode('foo @+%/'), '@ftp.example.com/x.txt">'; ?> The above example will output: <a href="ftp://user:foo%20%40%2B%25%2F@ftp.example.com/x.txt"> Or, if you pass information in a PATH_INFO component of the URL: Example #2 rawurlencode(3) example 2 <?php echo '<a href="http://example.com/department_list_script/', rawurlencode('sales and marketing/Miami'), '">'; ?> The above example will output: <a href="http://example.com/department_list_script/sales%20and%20marketing%2FMiami"> SEE ALSO
rawurldecode(3), urldecode(3), urlencode(3), RFC 3986. PHP Documentation Group RAWURLENCODE(3)
All times are GMT -4. The time now is 04:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy