Sponsored Content
Full Discussion: Dual Boot Solaris 8
Top Forums UNIX for Dummies Questions & Answers Dual Boot Solaris 8 Post 13874 by TStoddard on Thursday 24th of January 2002 03:12:41 PM
Old 01-24-2002
Computer

I will definately look and read up on it.
Thanks MogFog!
EdgeSmilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

dual boot windows 2000 and solaris 8

Hello I recently purchased solaris 8 and I want to dual boot with windows 2000. What is the easiest way to install the solaris OS with the existing windows 2000? mogfog (4 Replies)
Discussion started by: mogfog
4 Replies

2. UNIX for Dummies Questions & Answers

Installing Dual Boot Xp is in first want Solaris

I'm looking to add a 2nd hard drive to my computer and make one hard drive Solaris and keep the 2nd as my origional Xp home edition. To basically keep them seperated in what they do. Now saying I have the hard drive in installed and everything and it's blank. I work for Sun Microsystems so i know... (2 Replies)
Discussion started by: Cyrix142
2 Replies

3. UNIX for Dummies Questions & Answers

solaris dual boot

Hello friends, On sparc 5 with solaris 8 i like to have dual boot with solaris 9. is this correct that the minimum memmory must be 96 mb for dual boot? do you recommand dual boot on unix? solaris 8 will be the testing environment and solaris 9 the production. does any one has this type... (5 Replies)
Discussion started by: grep
5 Replies

4. UNIX for Dummies Questions & Answers

dual boot solaris off of 2nd HDD

I did a search on the board, but I could not find anything specific to dual booting windows and solaris, with solaris being placed on a second hard drive. I have solaris 8 intel, and I am trying to dual boot, but the Solaris installation process is quite intimidating. I am afraid I am going to do... (3 Replies)
Discussion started by: dangral
3 Replies

5. Solaris

solaris dual boot

hi ;) So I have 2 HDD (SATA and ATA). On the SATA I've installed WindwosXP and now I want to install solaris 10 on the ATA disk. Is it possible if the ATA disk is primary to make dual boot ? thank you very much (0 Replies)
Discussion started by: nocture
0 Replies

6. Solaris

Dual Boot XP Solaris

Does here know how to configure the Windows XP Boot loader to dual boot XP and Solaris 10? I installed Solaris after XP but it did not detect the XP installation, and I really can't reformat right now. (3 Replies)
Discussion started by: Super User
3 Replies

7. Solaris

Solaris and Xp in dual boot

Hello,I've a big problem. On my hd I've Windows Xp and after I've installed Solaris 10. Solaris now run perfectly but I can't boot the Xp partition.I've tried with grub super disk and I receive an error 12 when I try to boot the Windows partition.However with the windows cd the partition is... (2 Replies)
Discussion started by: bgf0
2 Replies

8. Solaris

Solaris/Linux Dual Boot

From googling around, I have found that dual booting isn't so hard... if you are installing both for the first time. However, I couldn't find anything on if I can preserve my Solaris 10 partition that is already installed. Any words of advice? (1 Reply)
Discussion started by: GeekMasterFlash
1 Replies

9. Solaris

dual boot solaris/solaris zfs file system

Hi, I am running into a some problems creating a dual boot system of 2 solaris instances using ZFS file system and I was wondering if someone can help me out. First some back ground. I have been asked to change the file system of our server from UFS to ZFS. Currently we are using Solaris... (3 Replies)
Discussion started by: estammis
3 Replies

10. Solaris

Dual boot Windows10 and Solaris 11.3??? UEFI

I can't get dual boot to work. I have first installed Windows10 on a new SSD, and then I installed Solaris 11.3 on the same disk. When I boot the disk, the GRUB shows Solaris, but no Windows. I can boot into Solaris fine. When I try to boot from a Windows10 partition, it does not work. Windows says... (7 Replies)
Discussion started by: kebabbert
7 Replies
FILTERS(9.1)															      FILTERS(9.1)

NAME
adapt, ahe, crispen, laplace, edge, edge2, edge3, extremum, median, nonoise, smooth, shadepic - image neighborhood operators SYNOPSIS
fb/adapt [ input ] fb/ahe [ input ] fb/crispen [ input ] fb/laplace [ input ] fb/edge [ input ] fb/edge2 [ input ] fb/edge3 [ input ] fb/extremum [ input ] fb/median [ input ] fb/nonoise [ input ] fb/smooth [ input ] fb/shadepic [ -lx y z ] [ input ] DESCRIPTION
Gathered here are descriptions of programs that compute the pixels of an output image by performing some operation on a neighborhood of each pixel of their input image (default standard input). Each program writes the output image on standard output. The programs process multi-channel inputs by treating each channel independently. Adapt performs adaptive contrast enhancement by examining the 7x7 region centered on each input pixel, remapping the center pixel linearly in a way that would send the neighborhood's maximum value to 255 and its minimum to 0. To avoid divide checks, no mapping is done if all pixels in the region have the same value. Ahe performs adaptive histogram equalization by examining the 17x17 region centered on each input pixel, counting the number of pixels whose value is less than the center pixel. (It counts 1/2 for each pixel equal to the center value.) Output pixel values are 255 times the count divided by the window size. Crispen examines the 3x3 region surrounding each input pixel, computing 9 times the center pixel minus the sum of its eight neighbors. This is a fairly extreme high-pass filter and sharpens edges substantially. Laplace computes 5 times the center pixel minus the sum of its four vertical and horizontal neighbors. This adds a 3x3 discrete Laplacian to the original image, and is a less extreme high-pass filter than crispen. Edge, edge2, and edge3 detect edges in various ways. Edge examines the 3x3 region surrounding each input pixel, outputting 8 times the center value minus the sum of its eight neighbors. Edge2 applies a Sobel operator to the input image. It approximates the image's gradient by finite differences on a 3x3 neighborhood, out- putting the vector length of the gradient approximation. Edge3 likewise approximates the gradient of the input image. The output is roughly the phase angle of the gradient approximation, scaled between 0 and 255. Extremum examines the 3x3 region surrounding each input pixel, outputting the value that differs most from the center value. In case of a tie, the larger candidate is chosen. Median does noise reduction by replacing each pixel of the input image by the median of the 3x3 region surrounding it. Nonoise implements the Bayer-Powell noise reduction filter. It computes the average value of the eight neighbors of each pixel of the input image, and substitutes it for the pixel value if the two differ by more than 64. Smooth low-pass filters its input image by convolution with a Bartlett window. Shadepic treats its input image as an array of elevations. At each pixel it approximates the normal vector to the height-field by finite differences on a 3x3 neighborhood and outputs 255 times its dot product with the unit vector in the light-source direction specified by option -l (default 1,-1,1). If the dot product is negative, it is clamped at zero. (This computation is just Lambertian diffuse reflec- tion.) SOURCE
/sys/src/fb SEE ALSO
picfile(9.6) BUGS
There are too many weird wired-in sizes. FILTERS(9.1)
All times are GMT -4. The time now is 12:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy