<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>nexenta &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/nexenta/</link>
	<description>Feed of posts on WordPress.com tagged "nexenta"</description>
	<pubDate>Wed, 08 Oct 2008 01:19:44 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[* Nexenta : Ubuntu Server with ZFS goodness *]]></title>
<link>http://osysnews.wordpress.com/2008/09/11/nexenta-ubuntu-server-with-zfs-goodness/</link>
<pubDate>Thu, 11 Sep 2008 21:29:59 +0000</pubDate>
<dc:creator>osysnews</dc:creator>
<guid>http://osysnews.it.wordpress.com/2008/09/11/nexenta-ubuntu-server-with-zfs-goodness/</guid>
<description><![CDATA[


OSNews has been reporting on the Debian/Ubuntu/GNU/Opensolaris hybrid for several years. But for ]]></description>
<content:encoded><![CDATA[<p>
<p><img src="http://osnews.com/images/icons/45.gif" alt="Ubuntu Server with ZFS goodness *" title="Ubuntu Server with ZFS goodness *" /></p>
</p>
<p>OSNews has been reporting on the Debian/Ubuntu/GNU/Opensolaris hybrid for several years. But for those of you who've never looked more closely at this interesting OS, a Nexenta developer has laid out some of its more noteworthy features and advantages.<br /><!--more-->
<p>The Nexenta project, started in 2005, has had 6 releases (NexentaOS and NexentaCore), and is preparing for the upcoming NexentaCore Platform 2 release. If you are a Debian/Ubuntu developer, consider taking a little time to take a look at an emerging platform that provides a feature rich developer environment.</p>
<p>Nexenta has built a small but vibrant community. It has been downloaded over half a million times, and is being used in around 10,000 systems, mostly data-centers.</p>
<p>Nexenta uses Debian's dpkg packaging system, and provides everything provided by Debian/Ubuntu environment. However, these are only a subset of the features in Nexenta's toolchain. We'll take a look at the additional features and tools provided by Nexenta.</p>
<p>The Opensolaris technologies: ZFS</p>
<p>The open source world has gone gaga over the next generation file system from the Opensolaris community. It has been ported to Apple's OSX and FreeBSD. Licensing incompatibilities have held up a Linux port. It is a file system and volume manager built into one. And with lightning fast snapshots and automatic integrity and error checking, this is the filesystem of the future. Lets take a look at how you as a developer can benefit by the use of ZFS:</p>
<p><u>Never have to worry about data loss, or the system and packaging system going into a mangled state</u></p>
<p>ZFS's quick and painless snapshot feature allows you to take incremental backups of your entire filesystem or the packaging related data. So if the last kernel upgrade botches up the system or renders it unbootable, easily revert back to the earlier working state :)</p>
<p>Nexenta provide a tool called apt-clone which is a wrapper over apt-get. Roughly translated</p>
<p><i> apt-clone = system clone + apt-get</i></p>
<p>so a command apt-get install apache2 is equivalent to</p>
<p> zfs clone beforeapache2 rootfs<br />  #add grub lines to boot to 'beforeapache2'<br />  apt-get install apache2
<p>If things go wrong and apache2 isn't installed right, you can revert back to the snapshot "beforeapache2" and the system reverts to the original configuration. Further information in the apt-clone manpage [0].</p>
<p><u>Use snapshot capabilities to create <i>restore points</i></u></p>
<p>..all along your development/build cycle allowing for easy reversion to an earlier state</p>
<p>Another use of ZFS for package maintainers is the capability to easily take a snapshot of the environment (like the current working directory) and make those deadly changes. There no longer a need to worry or limit your changes for the fear of "ruining this working state" or "losing all these changes I've made". Use ZFS like a quick and dirty versioning system for those short development sessions.</p>
<p><u>Increase build environment storage as and when required</u></p>
<p>If you've run into situations where you had dedicated space for a certain need, but later found yourself out of space. This could be for your package development needs or for the music you play when you develop. With ZFS, you no longer have to decide between removing package A or sources B. You can have both the Rock and the Blues collection. A new hard disk or a partition plus a simple command will take care of all your space needs.</p>
<p><u>ZFS pools and RAID-Z</u></p>
<p>..for superior volume and data redundancy management</p>
<p>ZFS filesystems are laid out on 'pools' which are storage spaces. This is a different from the traditional 'disks' and 'partitions' way of thinking about laying out filesystems. You can now add any type of storage (disk, network attached storage, a file) to the pool, and everything in the pool is made available to the filesystems that are created from the pool. This allows us to very easily increase the size of a pool by simply giving it more storage.</p>
<p>To create a pool from a disk</p>
<p>zpool create <br />  zpool create diskpool c1d0p0
<p>To increase the size of the pool, simply add another disk to it</p>
<p> zpool add <br />  zpool add diskpool c2d0p0
<p>ZFS supports various raid configurations out of the box, including RAID-Z, which is a better implementation of RAID5 [1]. It implements features into the filesystem that previously required specialized hardware. A comparison of ZFS with Linux LVMs can be seen at [2].</p>
<p>This allows you to setup your storage in mirrored disks by simply (eg)</p>
<p> zpool create mypool mirror c1d0p2 c2d0p2
<p>Creating a zfs filesystem on our newly created pool is done via</p>
<p> zfs create mypool/myroot  zfs create mypool/john
<p>Both myroot and john will use the mypool storage space created by zpool. Set the mount points for these via</p>
<p> zfs set mountpoint=/space/john mypool/john<br />  zfs set mountpoint=
<p>A complete documentation of the zpool and zfs commands can be found at docs.sun.com [3][4].</p>
<p>ZFS supports quotas and reservations for each dataset. You can thus allocate varying amounts of space for various purposes. The built in checksumming of everything does away within the filesystem allows you to breathe easy while ZFS does everything that can be done to keep your data error free. ZFS also supports compression and encryption (currently under review by the ZFS community and to be added to the Opensolaris kernel shortly)</p>
<p>The Opensolaris technologies: Zones</p>
<p>(..and ZFS zones with Debian environment)</p>
<p>Zones are lightweight virtual instances of the operating system. The main (or parent) instance is known as the global zone. A Â global zone can have as many local zones as resources like memory and disk space allow for.</p>
<p>Zones are a boon to package maintainers. they allow for quick and easy setup and generation of development environment. Once the tasks are done, the zone can be done away with, until required later. Thus you do not have to allocate a specific amount of your resources towards a build setup.</p>
<p>Nexenta provides a set of tools in a package called devzone, which allow for easy creation of development zones for package maintainers. These can be easily tuned to other specific needs. A typical zone takes less than a minute to setup and use.</p>
<p>As each zone is self-contained, you can provide root access to them to those you may not fully trust. This setup can be used in build machines where "potential" developers to a project can be given access to their own development zone to play around with. This setup is used by the Nexenta Project during its hackathon events. further information at [links].</p>
<p>A zone can be created using</p>
<p> devzone_create
<p>Now, enter the zone using</p>
<p>devzone_enter
<p>and poof!.. you are now root in the new virtual instance of the machine. you would now typically setup your /etc/apt/sources.lst and start installing and building packages.</p>
<p>You can reconnect and disconnect the zone as many times as you like. Once you're done with using a zone, simply run the following command in the global zone</p>
<p> devzone_free
<p>to kill the zone, and free up it's resources.</p>
<p>Devzones provide the following advantages to developers</p>
<p>Better share resources: As development zones can be created on the fly, you can easily share resources. Developers in different parts of the world can access the machine at different times.Peace of mind: If you have a dedicated build machine, easily allow multiple developers access to it, without worrying about interfering with each other, or one's mistake bringing down the system.</p>
<p>To see how you can build Debian/Ubuntu packages in a devzone, take a look at the screencast at [5].</p>
<p>Table of contentsNexenta, Page 1Nexenta, Page 2</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Guida per principianti a GNU/Linux: ecco come Ã¨ fatto il nostro sistema operativo preferito]]></title>
<link>http://guiodic.wordpress.com/?p=170</link>
<pubDate>Thu, 24 Jul 2008 07:30:26 +0000</pubDate>
<dc:creator>guiodic</dc:creator>
<guid>http://guiodic.it.wordpress.com/2008/07/24/guida-per-principianti-a-gnulinux-ecco-come-e-fatto-il-nostro-sistema-operativo-preferito/</guid>
<description><![CDATA[Lo gnu Ã¨ un bovino africano, il pinguino Ã¨ un uccello polare... eppure vanno d&#39;accordo
Abbiamo]]></description>
<content:encoded><![CDATA[[caption id="attachment_171" align="aligncenter" width="485" caption="Lo gnu Ã¨ un bovino africano, il pinguino Ã¨ un uccello polare... eppure vanno d&#39;accordo"]<a href="http://guiodic.files.wordpress.com/2008/07/gnu_tux-1600x1200.jpg"><img class="size-full wp-image-171" src="http://guiodic.wordpress.com/files/2008/07/gnu_tux-1600x1200.jpg" alt="Lo gnu Ã¨ un bovino africano, il pinguino Ã¨ un uccello polare... eppure vanno d'accordo" width="485" height="364" /></a>[/caption]
<p>Abbiamo visto <a href="http://guiodic.wordpress.com/2008/07/18/guida-per-principianti-a-gnulinux-cose-e-a-cosa-serve-un-sistema-operativo/" target="_blank">cosa fa un sistema operativo</a>. Abbiamo accennato anche a qualche suo componente. Ora vediamo, in concreto, come Ã¨ fatto "dentro" un sistema operativo e in particolare GNU/Linux.<!--more--></p>
<p>Abbiamo detto che il sistema operativo gestisce il nostro hardware. In particolare i dispositivi di Input/Output (tastiera, schermo, mouse, webcam, ecc.) e le memorie di massa. Per ciascuno di questi dispositivi il sistema operativo ha bisogno di un programma, chiamato <strong>driver</strong>. Driver in inglese vuol dire "pilota" e in effetti il driver "pilota" il dispositivo.</p>
<p>Abbiamo anche bisogno, come accennato nella <a href="http://guiodic.wordpress.com/2008/07/22/guida-per-principianti-a-gnulinux-come-fa-il-computer-ad-eseguire-piu-programmi-contemporaneamente-dal-multitasking-al-dma/" target="_blank">puntata precedente</a>, di qualcosa che permetta l'esecuzione di piÃ¹ programmi "contemporaneamente", o meglio attraverso il <strong>multitasking</strong>. Questo componente Ã¨ il <strong>kernel (nucleo)</strong>. In sostanza il kernel Ã¨ quella parte del sistema operativo che si occupa di gestire i processi (programmi) assegnando loro delle risorse (un po' di tempo di esecuzione e un po' di memoria) nonchÃ© di gestire il passaggio da un programma a un altro tantissime volte al secondo. Ma il kernel contiene anche i driver, perchÃ© deve permettere ai programmi di accedere a risorse aggiuntive (la tastiera, il mouse, lo schermo, ecc.). Per svolgere le sue funzioni il kernel mette inoltre a disposizione dei programmi delle <strong>"chiamate di sistema"</strong>.</p>
<p>Vediamo un po' come funziona.</p>
<p>Poniamo questo caso: stiamo usando OpenOffice e a un certo punto vogliamo <strong>salvare la nostra lettera</strong>. Clickiamo sull'icona "salva". OpenOffice a questo punto "chiama" i sistema operativo e gli dice:</p>
<blockquote><p><strong>Ehi, tu, crea un nuovo file e scrivici dentro i dati che adesso ti mando, poi chiudilo</strong></p></blockquote>
<p>Detta cosÃ¬ sembra una battuta, ma Ã¨ davvero ciÃ² che fa il programma. In particolare farÃ  almeno tre richieste:</p>
<ol>
<li>crea un file</li>
<li>scrivi i dati</li>
<li>chiudi il file</li>
</ol>
<p>In termini tecnici queste si chiamano davvero "<strong>chiamate al sistema operativo</strong>" o, in inglese, "<strong>system calls</strong>".</p>
<p>Si potrebbe pensare quindi che i programmi parlano con il kernel e chiedono queste funzioni. E invece no. <strong>I programmi, di norma, non accedono direttamente al kernel. Essi si servono invece delle <a href="http://guiodic.wordpress.com/2008/07/21/guida-gnu-linux-utility-librerie-sviluppo/" target="_blank">librerie</a>.</strong></p>
<p>C'Ã¨ una libreria particolare che si occupa di svolgere la funzione di interfaccia tra i programmi e il kernel. Nei sistemi operativi di tipo Unix, come GNU/Linux, essa Ã¨ chiamata "<strong>libreria standard del C</strong>" e in particolare in GNU/Linux essa Ã¨ la <strong>GNU C Library</strong> (<strong>glibc</strong>). E' attraverso di essa che tutti i programmi dialogano con il resto del sistema operativo.</p>
<p>Per rendersi conto dell'importanza delle librerie in un sistema operativo, facciamo un esempio che molti conoscono: <strong>Wine</strong>.</p>
<p>Wine fa credere ai programmi per Windows di essere in esecuzione su un sistema Windows, mentre invece stanno girando su un sistema GNU/Linux. Come fa? Esso <strong>intercetta le chiamate dei programmi al sistema operativo</strong> (i programmi credono di girare sotto Windows) e le <strong>dirotta</strong> alle proprie librerie e poi da queste alle librerie del sistema operativo. Il tutto Ã¨ talmente perfetto che Wine riesce a passare persino il test Windows Genuine Advantage!</p>
<p>Un esempio simile Ã¨ la possibilitÃ  di eseguire programmi per GNU/Linux su un altro sistema operativo simile, ma diverso: <strong>FreeBSD</strong>. Attraverso l'aggiunta in FreeBSD della libreria C di GNU, possiamo eseguire praticamente qualsiasi programma GNU/Linux su di esso, anche se non Ã¨ GNU/Linux. Ma esso possiede una delle sue parti fondamentali, ovvero la GNU C Library (oltre, chiaramente, alla libreria C di FreeBSD stesso).</p>
<p>A questo punto qualcuno chiederÃ </p>
<blockquote><p>Ok, a quanto ho capito i programmi scritti con il linguaggio C usano la libreria C. Ma gli altri? So che esistono altri linguaggi come Java....</p></blockquote>
<p>In realtÃ , tutti i programmi, a prescindere dal linguaggio in cui sono scritti, dovranno ad un certo punto interagire con il sistema operativo. E lo faranno sempre attraverso la libreria C. Questo perchÃ© GNU/Linux Ã¨ scritto con tale linguaggio. Ma lo stesso vale anche per Windows, le cui librerie fondamentali sono scritte in C (o nella sua variante C++).</p>
<p><strong>Vediamo di spiegare con un esempio questo concetto.</strong> Supponiamo che andiate a spedire una raccomandata alle poste. Vi recherete allo sportello e compilerete la richiesta. Tale richiesta verrÃ  poi "lavorata" <strong>in parte davanti a voi, in parte "dietro" lo sportello</strong>. Lo stesso accade per la comunicazione tra programmi e kernel. La Libreria C si occupa di fornire certe funzioni non comprese nel kernel (come la <em>printf</em> che abbiamo visto), funzioni di livello piÃ¹ alto, ma anche di rendere facile, uniforme e rispondente allo standard di Unix (chiamato POSIX) l'accesso alle funzioni stesse del kernel, cioÃ¨ le chiamate di sistema.</p>
<p>Un'immagine vale piÃ¹ di mille parole.</p>
[caption id="attachment_172" align="aligncenter" width="490" caption="La comunicazione tra programma e kernel"]<a href="http://guiodic.files.wordpress.com/2008/07/screenshot11.png"><img class="size-full wp-image-172" src="http://guiodic.wordpress.com/files/2008/07/screenshot11.png" alt="la comunicazione tra programma e kernel" width="490" height="158" /></a>[/caption]
<p>Ecco, il disegno spiega anche un'altra cosa. <strong>Il kernel di GNU/Linux Ã¨ Linux.</strong> "Linux", difatti, <strong>non Ã¨ il nome dell'intero sistema operativo</strong>, ma del nucleo, il kernel appunto.</p>
<p><strong>Facciamo un esperimento: proviamo a togliere Glibc</strong>. Per farlo, se usiamo Debian o Ubuntu, andiamo su Synaptic e cerchiamo "libc6". Proviamo a disinstallarla. <strong>Come potrete notare, viene giÃ¹ tutto il sistema operativo. Difatti tutti i programmi chiedono la presenza di Glibc. </strong>Ovviamente, <span style="text-decoration:underline;">annulliamo l'operazione</span>.</p>
<p>Riassumendo, in sostanza, <strong>i programmi di norma non "vedono" nÃ© "parlano" con il kernel Linux, ma con GNU</strong>. E lo stesso facciamo noi utenti. Vediamo perchÃ©.</p>
<p>Abbiamo detto che il sistema operativo deve in qualche modo comunicare con l'utente. Il programma che si occupa di questo si chiama <strong>shell</strong>. In sostanza quando apriamo il terminale, oppure accediamo alla console testuale con ctrl+alt+f1, e vediamo qualcosa che alcuni erroneamente chiamano "dos" perchÃ© somiglia al vecchio MS Dos, stiamo usando la shell. La shell dei sistemi GNU/Linux Ã¨ <strong>GNU Bash</strong>. Essa ci permette di lanciare i programmi, di vedere il loro output, di fornire degli input al programma (ad esempio la password che ci viene richiesta da <em>sudo</em>).</p>
<p>Infine, abbiamo detto che per poter usare il sistema operativo abbiamo anche bisogno di programmi di utilitÃ , ad esempio per sposare o cancellare i file. Nel caso di GNU/Linux tali programmi sono le<strong> utility GNU</strong>.</p>
<blockquote><p>Ok, bello, ma non hai spiegato cosa cavolo Ã¨ questo GNU!</p></blockquote>
<p>Eh giÃ , devi scusarmi :) In estrema sintesi, <strong>GNU</strong> (che sta per "<strong>G</strong>NU is <strong>N</strong>ot <strong>U</strong>nix) Ã¨ il nome del sistema operativo iniziato da <a href="http://it.wikipedia.org/wiki/Richard_Stallman" target="_blank"><strong>Richard Stallman</strong></a> nel 1984. Esso nasce con il preciso intento di creare un "clone" di Unix, il sistema operativo usato da universitÃ , banche, esercito, per gestire i grandi computer e su cui Ã¨ nata Internet. All'epoca non esisteva nessun sistema operativo libero (o come si disse in seguito "open source") e Stallman voleva colmare questa lacuna prendendo a modello il sistema operativo per eccellenza: Unix. Unix Ã¨ stato il primo sistema operativo moderno. La nascita risale al 1970. Tutti i libri di informatica, quando cercano di definire un sistema operativo, partono sempre da ciÃ² che c'Ã¨ in Unix. E' un sistema talmente importante che Ã¨ stato standardizzato internazionalmente dall'ISO, ma il nome dello standard (POSIX) lo ha dato Stallman. Questo fa capire quanto Ã¨ importante GNU nella storia dell'informatica.</p>
<p>Agli inizi degli anni '90 GNU era quasi pronto. Mancava all'appello solo il kernel. Il progetto GNU ci stava lavorando (il loro kernel si chiamava Hurd) ma qualcuno arrivÃ² prima. Questo qualcuno era <a href="http://it.wikipedia.org/wiki/Linus_Torvalds" target="_blank"><strong>Linus Torvalds</strong></a>, all'epoca uno studente. Linus aveva un problema: all'universitÃ  usava Unix (precisamente lo Unix della SUN, che adesso si chiama Solaris), ma a casa non poteva lavorarci perchÃ© il suo computer (un allora nuovo 386) non supportava tale sistema. PensÃ² quindi che ne dovesse creare uno, per divertimento e per studio, e prese a modello una versione didattica di Unix chiamata Minix, scritta da un professore come supporto al suo libro di testo (ancora oggi in uso nelle universitÃ : il famoso <strong>Tanenbaum</strong>). Torvalds creÃ² il suo mini-sistema, usando il compilatore GNU, la shell GNU e altri pezzi di GNU e scrivendo un kernel da zero per il processore Intel 386. ChiamÃ² il sistema <strong>Linux</strong>. In quel periodo all'universitÃ  di Helsinki ascoltÃ² una conferenza sul software libero e GNU e decise che il suo sistema operativo ancora in embrione doveva essere libero. <strong>CosÃ¬ rilasciÃ² Linux sotto la stessa licenza di GNU (la General Public License, GPL).</strong></p>
<p>Da quel momento la storia dell'informatica ha avuto una grande accelerazione. <strong>Il kernel di Linux, la parte "nuova" che Torvalds aveva creato, venne fusa a GNU, creando un sistema operativo libero, GNU/Linux</strong>, che poteva girare sui pc piÃ¹ diffusi dell'epoca, i 386 e 486.</p>
<p>La storia non finisce qui, perchÃ© ci sono anche tanti altri pezzi in un sistema operativo GNU/Linux. <strong>Ma i pezzi fondamentali sono due: GNU e il kernel Linux. </strong>Qualsiasi distribuzione li contiene perchÃ© sono la base di tutto. <strong>Per questo, che tu stia usando Ubuntu, Debian, Slackware, Red Hat, Suse, o qualsiasi delle centinaia di distribuzioni esistenti, stai sempre usando un sistema GNU con il kernel Linux. GNU/Linux, appunto.</strong></p>
<p>Nei prossimi post parleremo di alcune importanti aggiunte a questo sistema di base: <strong>Xorg</strong> e gli <strong>ambienti desktop</strong> come <strong>Gnome, kde e xfce</strong>.</p>
<p>Domande?</p>
<blockquote><p>Posso usare GNU senza Linux?</p></blockquote>
<p>Puoi usare GNU con il kernel Hurd e avrai GNU/Hurd (o semplicemente GNU). Puoi usare GNU con il kernel del sistema Solaris, e avrai GNU/Solaris. Puoi usare GNU con il kernel di FreeBSD e avrai GNU/kFreeBSD. Puoi usare GNU con il kernel di NetBSD e avrai GNU/Netbsd. Il progetto <a href="http://www.debian.org/ports/" target="_blank"><strong>Debian</strong></a> distribuisce alcune versioni di questi sistemi operativi. A parte GNU/Solaris, che Ã¨ giÃ  abbastanza stabile (<a href="http://opensolaris.org" target="_blank">OpenSolaris</a> e <a href="http://www.nexenta.org" target="_blank">Nexenta</a> sono due esempi), gli altri sono ancora instabili, ma comunque funzionanti, a condizione di aver un hardware compatibile (questi kernel difatti non hanno tutti i driver di cui dispone Linux). Esiste anche GNU/Darwin, una fusione tra GNU e il kernel di Mac Os X, ma Ã¨ fermo.</p>
<blockquote><p>E Linux senza GNU?</p></blockquote>
<p>Anche, ma avrai bisogno di qualcosa che sostituisca GNU. Di solito questo qualcosa Ã¨ una libreria C ridotta e una shell semplificata con all'interno i comandi basilari. Se hai un router sicuramente esso possiede un sistema del genere.</p>
<blockquote><p>E se volessi provare Unix?</p></blockquote>
<p style="text-align:left;">Ormai da molto tempo non esiste piÃ¹ un solo Unix, ma tanti. Ad esempio Solaris Ã¨ uno Unix. Non ti accorgeresti di grandi differenze rispetto a GNU/Linux. Difatti i comandi sono gli stessi e a volte anche l'interfaccia grafica Ã¨ la stessa. Ad esempio Solaris usa una versione modificata di Gnome chiamata Java Desktop Enviroment. Ma la versione Open Source (OpenSolaris) usa proprio Gnome. Nexenta, di cui ho parlato prima, Ã¨ in sostanza Ubuntu ma con il kernel di Solaris invece che con il Kernel Linux.</p>
<blockquote>
<p style="text-align:left;">Ma come Ã¨ possibile tutto ciÃ²? Ad esempio mica posso mischiare insieme Windows con il Mac... come si fanno a mischiare sistemi operativi diversi?</p>
</blockquote>
<p style="text-align:left;">Ci sono due motivi, uno tecnico l'altro legale. Il motivo tecnico Ã¨ che tutti questi sistemi sono compatibili tra loro, in quanto appartengono alla famiglia di Unix. Mentre Windows Ã¨ un sistema a parte, molto diverso. Quindi tecnicamente non Ã¨ difficile - anzi, in molti casi proprio banale - portare un programma da un sistema all'altro, ed anche interi pezzi del sistema operativo. Il secondo motivo Ã¨ legale: con il software libero puoi fare quello che vuoi. Prendi un programma e lo metti su un altro sistema operativo. Prendi la shell di GNU e la metti su Solaris, ad esempio. Non ci sono grandi limiti come nel caso delle licenze proprietarie.</p>
<blockquote>
<p style="text-align:left;">Quindi mi stai dicendo che in un certo senso GNU/Linux Ã¨ Unix anche se GNU vuol dire "Gnu non Ã¨ Unix"?</p>
</blockquote>
<p>SÃ¬, esatto. Il nome Ã¨ scherzoso: GNU non Ã¨ Unix ma Ã¨ comunque un sistema che rispetta lo standard POSIX. I programmi scritti seguendo le regole devinite dallo standard gireranno su tutti i sistemi operativi di tipo Unix. C'Ã¨ da dire perÃ² che UNIX (scritto con le lettere maiuscole) Ã¨ un marchio registrato, gestito da un consorzio chiamato Opengroup. Per diventare uno UNIX "ufficiale" bisogna pagare la certificazione. Ma questo Ã¨ davvero poco importante. GNU/Linux, pur senza tale certificazione, Ã¨ il sistema di tipo Unix di gran lunga piÃ¹ usato di tutti.</p>
<blockquote><p>Ho sentito dire che Linux Ã¨ un kernel monolitico, cosa vuol dire?</p></blockquote>
<p>E' un argomento un po' complesso, ma ne parlerÃ² prima o poi. Per ora basta sapere che un kernel monolitico Ã¨ fatto da un programma unico, mentre altri tipi di kernel (detti "a microkernel") sono costruiti "a pezzi" ognuno dei quali si occupa di un problema specifico.<br />
E' piÃ¹ semplice capire invece perchÃ© <strong>Linux Ã¨ un kernel modulare</strong>: in pratica, mentre il sistema funziona, possiamo caricare dei "moduli". I moduli sono pezzi del kernel che possono essere inseriti mentre il sistema Ã¨ in esecuzione. Un modulo puÃ² essere un driver per una periferica, oppure ad esempio un pezzo che aggiunge una funzione particolare al kernel. Nonostante questo perÃ² il kernel rimane un unico programma perchÃ© questi moduli vanno ad inserirsi nel kernel mentre Ã¨ in esecuzione e non sono programmi separati. Un po' come dire che mentre guidi puoi aggiungere un cilindro al motore, ma il motore Ã¨ sempre uno solo.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Pogo Linux y Nexenta anuncian nuevas de soluciones de almacenamiento, con NexentaStor]]></title>
<link>http://nexenta.wordpress.com/?p=159</link>
<pubDate>Wed, 23 Jul 2008 21:03:12 +0000</pubDate>
<dc:creator>artubuntu</dc:creator>
<guid>http://nexenta.it.wordpress.com/2008/07/23/pogo-linux-y-nexenta-anuncian-nuevas-de-soluciones-de-almacenamiento-con-nexentastor/</guid>
<description><![CDATA[Pogo Linux, Inc fue fundada en 1999, presenta soluciones en estaciones de trabajo, servidores, siste]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><strong>Pogo Linux, Inc</strong> fue fundada en 1999, presenta soluciones en estaciones de trabajo, servidores, sistemas de almacenamiento y proveedor con sede en Seattle, Washington. Presenta soluciones en diferentes sitemas operativos y la empresa estÃ¡ dedicada a proveer asequibles, fiables y de alto rendimiento energÃ©tico sistemas basados en Linux, <strong>Solaris</strong>, Windows. <strong>Nexenta Systems, Inc,</strong> ha desarrollado <strong>NexentaStor (TM)</strong>, la principal empresa en soluciones de almacenamiento abiertoy patrocinador de <strong>NexentaCore</strong>, un sistema operativo de fuente abierta que combina el alto rendimiento y la fiabilidad de<strong> OpenSolaris</strong> con la facilidad de el uso y la amplitud de aplicaciones de Linux.<br />
<a href="http://nexenta.files.wordpress.com/2008/07/home_4_square.jpg"><img class="size-full wp-image-160 aligncenter" src="http://nexenta.wordpress.com/files/2008/07/home_4_square.jpg" alt="" width="524" height="314" /></a><strong>Pogo Linux</strong> anunciÃ³ la disponibilidad inmediata de una nueva serie de aparatos de almacenamiento de <strong>NexentaStor</strong> en esta semana durante la OSCON 2008. Estos aparatos de almacenamiento, llamado el StorageDirector Z-Series es lo que los clientes estÃ¡n buscando: la escalabilidad sin complejidad, y el anuncio de hoy significa<strong> Nexenta</strong> y <strong>Pogo Linux</strong> estÃ¡n muy bien posicionadas para satisfacer estas demandas de manera eficaz y econÃ³mica. Los aparatos tambiÃ©n incluyen capacidades de bÃºsqueda para gestionar copias de seguridad segÃºn las polÃ­ticas, y elimina el riesgo de corrupciÃ³n de datos silenciosa que afecta a muchas soluciones basadas en SATA.<a href="http://www.foxbusiness.com/story/pogo-linux-nexenta-announce-new-storagedirector--series-storage-solutions/" target="_blank"> Fuente</a>.</p>
<p>Tres configuraciones estÃ¡n disponibles actualmente:<br />
StorageDirector Z100 NAS Appliance: 1 TB de almacenamiento, a partir de $ 3555<br />
StorageDirector Z300 NAS Appliance: 5TB de almacenamiento, ampliable a travÃ©s de SAS, a partir de $ 6999<br />
StorageDirector Z400 NAS Appliance: 10 TB de almacenamiento, ampliable a travÃ©s de SAS, a partir de $ 8999</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenSolaris 2008.05 Indiana]]></title>
<link>http://gorneman.wordpress.com/?p=86</link>
<pubDate>Sat, 12 Jul 2008 09:52:10 +0000</pubDate>
<dc:creator>gorneman</dc:creator>
<guid>http://gorneman.it.wordpress.com/2008/07/12/opensolaris-200805-indiana/</guid>
<description><![CDATA[Tempo fa ho ricevuto, tramite un servizio praticamente uguale a ShipIt di Ubuntu, il LiveCd di OpenS]]></description>
<content:encoded><![CDATA[<p>Tempo fa ho ricevuto, tramite un servizio praticamente uguale a <a href="https://shipit.ubuntu.com/">ShipIt</a> di <a href="http://www.ubuntu.com/">Ubuntu</a>, il <a href="https://www2.sun.de/dct/forms/reg_us_2307_228_0.jsp">LiveCd</a> di <a href="http://opensolaris.org/index.html">OpenSolaris 2008.05</a>, meglio conosciuto come <a href="http://opensolaris.org/os/project/indiana/">Progetto Indiana</a>.</p>
<p>Il Progetto Indiana, guidato da <a href="http://it.wikipedia.org/wiki/Ian_Murdock">Ian Murdock</a>, uno dei fondatori del progetto <a href="http://www.debian.org/index.it.html">Debian</a>, ha come scopo quello di rendere OpenSolaris un sistema ideale anche per il desktop.</p>
<p>Ma, stando alle mie impressioni, la strada Ã¨ ancora lunga.</p>
<p>Il problema piÃ¹ evidente ( ma anche quello piÃ¹ prevedibile) Ã¨ il supporto hardware un pÃ² limitato: funzionano discretamente bene i processori <a href="http://it.wikipedia.org/wiki/Athlon_64">AMD serie athlon64</a>/Opteron ( la Sun commercializza(va) workstation con questa cpu), mentre per le altre piattaforme, soprattutto quelle in uso sui portatili, ci sono problemi nel riconoscimento delle politiche per il risparmio energetico. Da questo punto di vista, una mancanza secondo me "imperdonabile" Ã¨ il mancato supporto per i processori <a href="http://it.wikipedia.org/wiki/SPARC">SPARC</a> prodotti dalla Sun stessa.</p>
<p>Altro problema Ã¨ dal punto del software, o meglio dalla licenza con cui il sistema viene distribuito: la <a href="http://it.wikipedia.org/wiki/Common_Development_and_Distribution_License">Common Development and Distribution License (CDDL)</a> la stessa versione che adottava<a href="http://it.wikipedia.org/wiki/Java_(linguaggio)"> java</a> prima del passaggio alla GPL, e per chi conosce la storia di questo passaggio, sa quanto la CDDL non sia ben vista.</p>
<p>E poi l'ubuntizzazione "forzata" (e lo dice uno che ubuntu la usa): la Sun rincorre (giustamente) il successo di ubuntu (la chiamata di Ian "papÃ  della ubuntu-mamma" ne Ã¨ forse la dimostrazione), ma il progetto sembra non avere una propria identitÃ .E non basta l'adozione del mitico (nel senso letterale e letterario del termine) <a href="http://it.wikipedia.org/wiki/ZFS_(file_system)">file system ZFS</a> a dargliene.</p>
<p>Devo dire che la strada per creare una distribuzione Desktop-oriented di OpenSolaris la stanno percorrendo meglio Ã¨ piÃ¹ speditamente gli altri progetti basati su OpenSolaris, soprattutto <a href="http://www.belenix.org/">Belenix,</a> che non il progetto Indiana. Forse la Sun avrebbe fatto meglio a dare supporto ad uno di questi due progetti giÃ  avviati, piÃ¹ttosto che crearne uno da zero.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Liberado NexentaCore 2.0 Alpha1 (Inestable)]]></title>
<link>http://nexenta.wordpress.com/?p=148</link>
<pubDate>Sat, 21 Jun 2008 09:35:14 +0000</pubDate>
<dc:creator>artubuntu</dc:creator>
<guid>http://nexenta.it.wordpress.com/2008/06/21/liberado-nexentacore-20-alpha1-inestable/</guid>
<description><![CDATA[Nexenta Systems, Inc., ha liberado la primera Alpha de la versiÃ³n NexentaCore 2.0, del proyecto de ]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://nexenta.files.wordpress.com/2008/06/giraffe1.png"><img class="size-full wp-image-149 alignleft" style="float:left;" src="http://nexenta.wordpress.com/files/2008/06/giraffe1.png" alt="" width="138" height="284" /></a><strong>Nexenta Systems, Inc.</strong>, ha liberado la primera Alpha de la versiÃ³n <strong>NexentaCore 2.0</strong>, del proyecto de sistema operativo que une el kernel <strong>Opensolaris</strong> con las herramientas GNU tales como el escritorio Gnome, APT, etc. Con ello los desarrolladores cuentan con una base solida en la cual trabajar y los usuarios cuentan con un escritorio con el que pueden realizar las tareas bÃ¡sicas con facilidad. En el <a href="http://www.mail-archive.com/opensolaris-discuss%40opensolaris.org/msg34541.html" target="_blank">anuncio de su liberaciÃ³n</a>, cuenta con:</p>
<p style="padding-left:120px;">- 3392 paquetes que incluyen las ultimas versiones de dpkg/apt, gcc, binutils, coreutils, perl, python, ruby, Qt libs, GTK libs, etc<br />
- Basado en <strong>Ubuntu </strong>8.04 LTS (Hardy Heron).<br />
- Ambiente 100% nativo Debian, fÃ¡cil de usar y de actualizar.<br />
- Basado en <strong>OpenSolaris </strong>b85+ (x86 32-bit y 64-bit).</p>
<p style="text-align:justify;"><strong>Nexenta Systems, Inc.</strong> fue fundada en 2005, y entre sus productos ha desarrollado <strong>NexentaStor(TM)</strong>, conocida soluciÃ³n de almacenamiento de tipo empresarial, y patrocina <strong>NexentaCore</strong>, un sistema operativo que combina el alto rendimiento y fiabilidad de O<strong>penSolaris </strong>con la facilidad de uso y la variedad de aplicaciones de Linux. Ambas soluciones fomentan el uso del revolucionario sistema de archivos ZFS. Puede obtener mÃ¡s informaciÃ³n acerca de <strong>Nexenta Systems, Inc. </strong>y descargar las versiones del sistema operativo en su sitio web:</p>
<p style="text-align:center;"><a href="http://www.nexenta.com" target="_blank"><strong>http://www.nexenta.com</strong></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenSolaris 2008.05]]></title>
<link>http://administratosphere.wordpress.com/?p=207</link>
<pubDate>Wed, 28 May 2008 10:00:05 +0000</pubDate>
<dc:creator>ddouthitt</dc:creator>
<guid>http://administratosphere.it.wordpress.com/2008/05/28/opensolaris-200805/</guid>
<description><![CDATA[OpenSolaris 2008.05 (for x86) was released earlier this month, along with a new OpenSolaris web site]]></description>
<content:encoded><![CDATA[<p><a href="http://www.opensolaris.com/get/">OpenSolaris 2008.05</a> (for x86) was released earlier this month, along with a new <a href="http://www.opensolaris.com/">OpenSolaris web site</a> (which to me bears more than a passing resemblence to the <a href="http://www.opensuse.org/">OpenSUSE web site</a>).  I don't know the difference between that web site and <a href="http://www.opensolaris.org/index.html">OpenSolaris.org</a>, but somebody must think its worth it.</p>
<p>I've already ordered my CD of OpenSolaris 2008.05; now to find something to run it on.  Alright already, so that's backwards - but I'm always trying the new UNIX versions.  And why not?  This is an excellent way to find out what is likely to be in Solaris 11.</p>
<p>The CD of OpenSolaris 2008.05 is also a live CD, which means you can try it out anywhere the operating system can run: just reboot with the CDROM in the drive.</p>
<p>Jason Perlow of ZDNet wrote a nice review article titled <a href="http://blogs.zdnet.com/BTL/?p=8703">OpenSolaris: What Ubuntu wants to be when it grows up</a> on May 5, 2008.  It isn't a step by step technical review, but it is good nonetheless.  Another <a href="http://ashwinbhatks.wordpress.com/2008/05/26/open-solaris-200805-review/">review</a> was recently written by Ashwin Bhat K S about his experiences with OpenSolaris 2008.05.  He used a laptop, so this review is doubly interesting.  There is another <a href="http://milindchoudhary.wordpress.com/2008/05/24/open-solaris-nexenta-on-virtualbox-macbook-os-x-tiger/">review</a> by Milind Arun Choudhary which talks about installing OpenSolaris (<a href="http://www.nexenta.org/os">Nexenta</a>, actually) into a <a href="http://www.virtualbox.org/">VirtualBox</a> virtual machine under MacOS X.</p>
<p>I can only hope that OpenSolaris driver support will improve; last time I installed it onto a current laptop it had no wifi connectivity and no network connectivity because of missing drivers.  Is it any surprise then that Ashwin's first recommendation is more network drivers and more wifi drivers?</p>
<p>Update: Another person has done up a nice <a href="http://andrnils.wordpress.com/2008/05/29/opensolaris-200805/">article</a> about installing OpenSolaris 2008.05 - their <em>first and only</em> post apparently!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nexenta GNU/OpenSolaris is here!]]></title>
<link>http://virtualbox.wordpress.com/?p=75</link>
<pubDate>Tue, 29 Apr 2008 10:13:31 +0000</pubDate>
<dc:creator>fripp</dc:creator>
<guid>http://virtualbox.it.wordpress.com/2008/04/29/nexenta-gnuopensolaris-is-here/</guid>
<description><![CDATA[I just uploaded Nexenta 1.0!
You can download it here.
I splitted the image in three different segme]]></description>
<content:encoded><![CDATA[<p>I just uploaded Nexenta 1.0!</p>
<p>You can download it <a href="/images/nexenta/">here</a>.</p>
<p>I splitted the image in three different segments: <em>nexenta-1.0.x86__a</em>, <em>nexenta-1.0.x86__b</em> and <em>nexenta-1.0.x86__c</em>.</p>
<p>To use this image you have to download all the segments in which the image was splitted and concatenate the files into a single .7z file.</p>
<p>If you are under a UNIX-like system, you have to use the <em>cat</em> command:</p>
<p><code>cat nexenta-1.0.x86__a nexenta-1.0.x86__b nexenta-1.0.x86__c &#62; nexenta-1.0.x86.7z</code></p>
<p>If you are under Windows, you can use the <em>copy</em> command from the command prompt (MS-DOS prompt in all Windows versions up to Windows Millennium Edition), as such:</p>
<p><code>verify on<br />
copy /b nexenta-1.0.x86__a + nexenta-1.0.x86__b + nexenta-1.0.x86__c nexenta-1.0.x86.7z</code></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nuove immagini per il nostro progetto!]]></title>
<link>http://fripp.wordpress.com/?p=145</link>
<pubDate>Mon, 28 Apr 2008 07:37:00 +0000</pubDate>
<dc:creator>fripp</dc:creator>
<guid>http://fripp.it.wordpress.com/2008/04/28/nuove-immagini-per-il-nostro-progetto/</guid>
<description><![CDATA[In questi ultimi giorni ho aggiunto un bel poco di immagini per VirtualBox al nostro progetto Virtua]]></description>
<content:encoded><![CDATA[<p>In questi ultimi giorni ho aggiunto un bel poco di immagini per VirtualBox al nostro progetto <a href="http://virtualbox.wordpress.com" target="_blank">VirtualBox images</a>.</p>
<p>Approfittando dell'uscita della Ubuntu 8.04 codename <em>Hardy Heron</em> ho creato le immagini della <a href="virtualbox.wordpress.com/images/kubuntu/" target="_blank">Kubuntu</a> con KDE4, della <a href="virtualbox.wordpress.com/images/xubuntu/" target="_blank">Xubuntu</a>, di Ubuntu Studio; pure la <a href="http://virtualbox.wordpress.com/images/mandriva/" target="_blank">Mandriva</a> One 2008 e <a href="http://virtualbox.wordpress.com/images/mandriva/" target="_blank">CentOS</a> 5.1.</p>
<p>Per la Ubuntu occorrerÃ  aspettare Scotty, un altro contributore del progetto.</p>
<p>In lista d'attesa c'Ã¨ la <a href="http://www.nexenta.org/os" target="_blank">Nexenta</a> 1.0, un sistema basato su <a href="http://opensolaris.org/os/" target="_blank">OpenSolaris</a> in puro Ubuntu/Debian style.</p>
<p>Scaricate, gente, scaricate.............</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[On OpenSolaris]]></title>
<link>http://gnuromancer.org/?p=105</link>
<pubDate>Sat, 26 Apr 2008 02:03:17 +0000</pubDate>
<dc:creator>Anuradha Weeraman</dc:creator>
<guid>http://gnuromancer.org/2008/04/26/on-opensolaris/</guid>
<description><![CDATA[In a recent article, Ted T&#8217;so makes some interesting points on Sun&#8217;s motives behind Open]]></description>
<content:encoded><![CDATA[<p>In a <a href="http://thunk.org/tytso/blog/2008/04/19/what-sun-was-trying-to-do-with-open-solaris/">recent article</a>, Ted T'so makes some interesting points on Sun's motives behind OpenSolaris, and how it fares today in the FOSS ecosystem as a result.</p>
<blockquote><p>"Fundamentally, Open Solaris has been released under a Open Source license, but it is not an Open Source development community."</p></blockquote>
<p>It's quite sad that this is the case simply considering the enormous potential that OpenSolaris had back in 2005, and the opportunities for cross pollination with Linux had the licenses been compatible. Given some of <a href="http://www.opensolaris.org/os/community/dtrace/">killer</a> <a href="http://opensolaris.org/os/community/zfs/">features</a> of the operating system, it's quite a shame that it has not been able to rally the developer community that it deserves.</p>
<p>At this point, I think the only hope for OpenSolaris is GPLv3 and a truly open development process. Then for once, Linus' kernel will have a strong contender and a raised bar on licensing grounds.</p>
<p><a href="http://www.nexenta.org/">Nexenta</a> (a project unaffiliated with Sun), and essentially a Debian distribution with an OpenSolaris kernel, has been a strong attempt at attracting developers. Debian is by far is the most developer friendly GNU/Linux distribution out there, with a mature and proven development model, and to build an OpenSolaris distribution with user land tools of Debian makes the most sense.</p>
<p>I've been a Solaris user since version 6, which I attempted to run (quite foolishly) on a 333MHz Pentium. The user experience was anything but smooth, but still ended up gaining a lot of respect for the platform. Only time can say whether the tide changes for OpenSolaris or whether it ends up relegating to the Minix boat.</p>
<p>Updated: 03 May - Corrections on Nexenta<strong><br />
</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[GNU/OpenSolaris Nexenta]]></title>
<link>http://gigablogs.wordpress.com/?p=307</link>
<pubDate>Thu, 24 Apr 2008 12:15:38 +0000</pubDate>
<dc:creator>Trivelt</dc:creator>
<guid>http://gigablogs.it.wordpress.com/2008/04/24/gnuopensolaris-nexenta/</guid>
<description><![CDATA[Ostatnio, z roznych to powodow mialem kilka dni wolnego. Nie moglem sie wiec powstrzymac przed insta]]></description>
<content:encoded><![CDATA[<p>Ostatnio, z roznych to powodow mialem kilka dni wolnego. Nie moglem sie wiec powstrzymac przed instalacja jakiegos ciekawego systemu. Na poczatku myslalem o czyms z rodziny BSD, jednak najszybciej znalazlem plytke DVD z eleganckiego zestawu OpenSolaris Starter Kit, otrzymanego niegdys od Suna (cos jak ubuntowy Shipit, wspominalem juz kiedys o tym). Dystrybucja ta, to Nexenta. System zawierajacy oprogramowanie GNU, jednak z jadrem OpenSolarisa. Jak mozemy dowiedziec sie z Wikipedii, bazuje na Debianie. Pozytywnie zaskoczyl mnie juz sam instalator - przelaczajac sie miedzy wirtualnymi konsolami, mozemy obserwowac postep instalacji, korzystac z shella, analizowac na biezaco logi i grac w <strong>Tetrisa</strong> (w ciagu kilkunastominutowego procesu instalacyjnego, moj rekord wyniosl troche ponad 400 ;)). Jednym slowem instalacja nie jest skomplikowana, chociaz odbywa sie ona w trybie semigraficznym poradzi sobie z nia kazdy umiejacy czytac ze zrozumieniem poczatkujacy.</p>
<p>Pierwsze uruchomienie Nexenty - srodowisko GNOME i pulpit ludzaco podobny do tego, ktory domyslnie dostepny jest w Ubuntu. Motyw Human, tapeta w podobnej, brazowej kolorystyce. Domyslnie zainstalowane w systemie aplikacje nikogo raczej nie zaskocza - do dyspozycji mamy Firefoksa, Gaima, GIMPA, Inkscape, a nawet menedzer pakietow Synaptic. W systemie <strong>Suna</strong> nie moglo oczywiscie zabraknac pakietu OpenOffice.org. Chociaz w zamierzeniu, Nexenta ma byc prostym w obsludze, sprawnie dzialajacym systemem, niektore elementy nie sa jeszcze nalezycie dobracowane. Po standardowej instalacji nie mialem wiec np. dzwieku, dystrybucja miala rowniez problemy z pobranie indeksow repozytoriow. Domyslnie, w systemie nie znajdziemy niestety polskiego ukladu klawiatury Qwerty (a jedynie Qwertz i Dvorak PL). Reasumujac, Nexenta, chociaz nie jest zla i w zupelnosci wystarcza do biurowych zastosowan i przegladania Internetu, nie zaspokaja w pelni moich potrzeb, co oznacza iz w najblizszym czasie na moim dysku prawdopodobnie zagosci najnowsza wersja FreeBSD.</p>
<p><a href="http://gigablogs.files.wordpress.com/2008/04/nexenta.png"><img src="http://gigablogs.files.wordpress.com/2008/04/nexenta.png" alt="" width="387" height="300" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nexenta Systems libera NexentaStor 1.0]]></title>
<link>http://nexenta.wordpress.com/?p=49</link>
<pubDate>Thu, 03 Apr 2008 21:25:33 +0000</pubDate>
<dc:creator>artubuntu</dc:creator>
<guid>http://nexenta.it.wordpress.com/2008/04/03/nexenta-systems-libera-nexentastor-10/</guid>
<description><![CDATA[Nexenta Systems, Inc, anunciÃ³ la disponibilidad de la versiÃ³n 1.0 de la ediciÃ³n para desarrollado]]></description>
<content:encoded><![CDATA[<p align="justify"><b>Nexenta Systems, Inc</b>, anunciÃ³ la disponibilidad de la versiÃ³n 1.0 de la ediciÃ³n para desarrolladores de <b>NexentaStor</b>, la Ãºnica empresa de cÃ³digo abierto que presenta soluciones para el almacenamiento<b> NAS / SAN / iSCSI</b>, sin costo alguno. <a href="http://nexenta.wordpress.com/files/2008/04/69102460_aebc638f10_o.png" title="69102460_aebc638f10_o.png"></a></p>
<div style="text-align:center;"><a href="http://nexenta.wordpress.com/files/2008/04/69102460_aebc638f10_o.png" title="69102460_aebc638f10_o.png"><img src="http://nexenta.wordpress.com/files/2008/04/69102460_aebc638f10_o.png" alt="69102460_aebc638f10_o.png" /></a></div>
<p align="justify">Una red de Ã¡rea de almacenamiento, en inglÃ©s <b>SAN</b> (Storage Area Network), es una red concebida para conectar servidores, matrices (arrays) de discos y librerÃ­as de respaldo principalmente, estÃ¡ basada en tecnologÃ­a fibre channel y mÃ¡s recientemente en <b>iSCSI</b>. Su funciÃ³n es la de conectar de manera rÃ¡pida, segura y confiable los distintos elementos que la conforman. La tecnologÃ­a Network-Attached Storage (<b>NAS</b>), donde las aplicaciones hacen las peticiones de datos a los sistemas de ficheros de manera remota mediante protocolos CIFS y Network File System (NFS).</p>
<div align="justify"></div>
<p align="justify">Internet SCSI (<b>iSCSI</b>) es un estÃ¡ndar que permite el uso del protocolo SCSI sobre redes TCP/IP.<b> iSCSI</b> es un protocolo de la capa de transporte definido en las especificaciones SCSI-3. La adopciÃ³n del <b>iSCSI</b> en entornos de producciÃ³n corporativos se ha acelerado en estos momentos gracias al aumento del Gigabit Ethernet. La fabricaciÃ³n de almacenamientos basados en <b>iSCSI</b> (red de Ã¡rea de almacenamiento) es menos costosa y estÃ¡ resultando una alternativa a las soluciones <b>SAN </b>basadas en Canal de fibra. El protocolo<b> iSCSI</b> utiliza TCP/IP para sus transferencias de datos y solamente requiere un simple y una sencilla interfaz Ethernet (o cualquier otra red compatible TCP/IP) para funcionar. Esto permite una soluciÃ³n de almacenamiento centralizada de bajo coste sin la necesidad de realizar inversiones costosas.</p>
<div align="justify"></div>
<p align="justify">Aunque la necesidad de almacenamiento es evidente, no siempre estÃ¡ claro cuÃ¡l es la soluciÃ³n adecuada en una determinada organizaciÃ³n. Elegir la soluciÃ³n correcta puede ser una decisiÃ³n con notables implicaciones, aunque no hay una respuesta correcta Ãºnica, es necesario centrarse en las necesidades y objetivos finales especÃ­ficos de cada usuario u organizaciÃ³n. Por ejemplo, en el caso concreto de las empresas, el tamaÃ±o de la compaÃ±Ã­a es un parÃ¡metro a tener en cuenta. Para grandes volÃºmenes de informaciÃ³n, una soluciÃ³n <b>SAN</b> serÃ­a mÃ¡s acertada. En cambio, pequeÃ±as compaÃ±Ã­as utilizan una soluciÃ³n <b>NAS</b>. Sin embargo, ambas tecnologÃ­as no son excluyentes y pueden convivir en una misma soluciÃ³n.</p>
<div align="justify"></div>
<p align="justify">EL CEO de <b>Nexenta</b>, Evan Powell dijo: "Nos gustarÃ­a dar las gracias a cada uno de los mÃ¡s de 1300 usuarios de la versiÃ³n beta. Desde nuestro lanzamiento de la versiÃ³n beta de NexentaStor, en noviembre de 2007, hemos recibido miles de mensajes de correo electrÃ³nico y llamadas de telÃ©fono, con peticiones de caracterÃ­sticas e informes de errores. Con el anuncio de hoy invitamos a todos a apoderarse de la ediciÃ³n para desarrolladores de <b>NexentaStor 1,0</b> y para instalarlo en su plataforma favorita de hardware.<a href="http://news.websitegear.com/view/50993&#38;sa=X&#38;oi=translate&#38;resnum=2&#38;ct=result&#38;prev=/search%3Fq%3DNexentaStor%2B1.0%26hl%3Des%26sa%3DG" target="_blank"> Fuente.</a></p>
<p>Puedes descargarlo desde la web de Nexenta:</p>
<div align="center"><b><a href="http://www.nexenta.com/corp/index.php?option=com_content&#38;task=blogsection&#38;id=4&#38;Itemid=67">http://www.nexenta.com/corp/index.php?option=com_content&#38;task=blogsection&#38;id=4&#38;Itemid=67</a></b></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[NTFS e EXT2 no Solaris]]></title>
<link>http://itbereich.wordpress.com/?p=11</link>
<pubDate>Tue, 19 Feb 2008 00:17:32 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/ntfs-e-ext2-no-solaris/</guid>
<description><![CDATA[com base nesse tutorial foi possivel montar unidades ext2 e ntfs, mas nao ao pe da letra, da uma olh]]></description>
<content:encoded><![CDATA[<p>com base nesse tutorial foi possivel montar unidades ext2 e ntfs, mas nao ao pe da letra, da uma olhada no artigo e depois compara com o que aconteceu.</p>
<p>http://vfernandezg.blogspot.com/2007/12/ext2-y-ntfs-en-opensolaris.html</p>
<p>a descompactacao nao aconteceu, tive de descompactar com ambiente grafico, clicar com o botao direito do mause no arquivo e em seguida clicar em extrair aqui.</p>
<p>mas numa outra maquina funcionou tudo certinho.</p>
<p>repare no que vem descrito abaixo, o pkgadd nao funcionou com -d tive de usar -i</p>
<p># pwd<br />
/Documents<br />
# pkgadd -i FSWpart<br />
pkgadd: ERROR: no se encontraron paquetes en &#60;/var/spool/pkg&#62;<br />
# cp -r FSWpart /var/spool/pkg<br />
# pkgadd -i FSWpart</p>
<p>Procesando versiÃ³n del software &#60;FSWpart&#62; desde &#60;/var/spool/pkg&#62;</p>
<p>x86 Partition Table Dumper(i386) 0.1<br />
#<br />
# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.<br />
# Use is subject to license terms.<br />
#<br />
# Author Moinak Ghosh<br />
#<br />
Usando &#60;/&#62; como directorio base del paquete.<br />
## Procesando informaciÃ³n del paquete.<br />
## Procesando informaciÃ³n de sistema.<br />
## Verificando el espacio de disco requerido.<br />
## Comprobando posibles conflictos con paquetes que ya estÃ¡n instalados.<br />
## Comprobando programas setuid/setgid.</p>
<p>Instalando x86 Partition Table Dumper como &#60;FSWpart&#62;</p>
<p>## Instalando parte 1 de 1.<br />
/usr/bin/prtpart<br />
/usr/bin/prtpart.bin<br />
/usr/share/src/prtpart.c<br />
[ verificando clase &#60;none&#62; ]</p>
<p>La instalaciÃ³n de &#60;FSWpart&#62; fue satisfactoria.</p>
<p>fiz o mesmo com o outro pacote e tambem foi possivel instalar</p>
<p>-----</p>
<p>depois isso</p>
<p># mount -F ext2fs /dev/dsk/c0d0s4 /mnt<br />
mount_ext2fs: No such device or address while trying to open /dev/dsk/c0d0s4</p>
<p>tentei novemante assim e</p>
<p># mount -F ext3fs /dev/dsk/c0d0s2 /mnt<br />
mount: OperaciÃ³n no aplicable a tipoFS ext3fs<br />
# mount -F ext2fs /dev/dsk/c0d0s3 /mnt<br />
mount_ext2fs: No such device or address while trying to open /dev/dsk/c0d0s3<br />
# mount -f ext2fs /dev/dsk/c0d0s5 /mnt<br />
mount_ext2fs: No such device or address while trying to open /dev/dsk/c0d0s5<br />
# mount -f ext2fs /dev/dsk/c0d0s6 /mnt<br />
mount_ext2fs: No such device or address while trying to open /dev/dsk/c0d0s6<br />
#  mount -F ext2fs /dev/dsk/c0d0s2 /mnt<br />
mount_ext2fs: Unknown code ext2 19 while trying to open /dev/dsk/c0d0s2<br />
#</p>
<p>o erro Ã© simples de saber, mas antes disso execute:<br />
# /usr/bin/prtpart</p>
<p>na verdade Ã© um erro apenas de sintaxe:<br />
isso escrevi no inicio # mount -f ext2fs /dev/dsk/c0d0s6 /mnt<br />
o correro Ã© isso # mount -f ext2fs /dev/dsk/c0d0p2 /mnt</p>
<p>o detalhe esta na letra referente a qual particao esta nossa unidade original, a sintaxe Ã© c0d0p2 e nao c0d0s2</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[atualizando nexenta]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/atualizando-nexenta/</link>
<pubDate>Tue, 19 Feb 2008 00:15:21 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/atualizando-nexenta/</guid>
<description><![CDATA[desarrollo@nexentax86myhost:~$ sudo udatedb
Password:
sudo: udatedb: command not found
desarrollo@ne]]></description>
<content:encoded><![CDATA[<p>desarrollo@nexentax86myhost:~$ sudo udatedb<br />
Password:<br />
sudo: udatedb: command not found<br />
desarrollo@nexentax86myhost:~$ sudo updatedb<br />
/usr/bin/find: /rmdisk/unnamed_rmdisk/magento Tara/magento/skin/install: No suchÂ  file or directory<br />
desarrollo@nexentax86myhost:~$ sudo gedit /etc/apt/sources.list<br />
ImportError: could not import gtksourceview<br />
Traceback (most recent call last):<br />
File "/usr/lib/gedit-2/plugins/modelines.py", line 24, in ?<br />
class ModelinePlugin(gedit.Plugin):<br />
AttributeError: 'module' object has no attribute 'Plugin'</p>
<p>** (gedit:664): WARNING **: Could not load python module modelines</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed</p>
<p>** (gedit:664): CRITICAL **: gedit_plugin_update_ui: assertion `GEDIT_IS_PLUGIN (plugin)' failed<br />
desarrollo@nexentax86myhost:~$ sudo apt-get update<br />
Get:1 http://security.debian.org etch/updates Release.gpg [189B]<br />
Get:2 http://security.debian.org etch/updates Release [37.6kB]<br />
Ign http://security.debian.org etch/updates Release<br />
Ign http://security.debian.org etch/updates/main Packages<br />
Ign http://security.debian.org etch/updates/contrib Packages<br />
Ign http://security.debian.org etch/updates/non-free Packages<br />
Err http://security.debian.org etch/updates/main Packages<br />
404 Not Found [IP: 212.211.132.32 80]<br />
Err http://security.debian.org etch/updates/contrib Packages<br />
404 Not Found [IP: 212.211.132.32 80]<br />
Err http://security.debian.org etch/updates/non-free Packages<br />
404 Not Found [IP: 212.211.132.32 80]<br />
Get:3 http://apt.nexenta.org elatte-unstable Release.gpg [187B]<br />
Ign http://apt.gnusolaris.org elatte-testing Release.gpg<br />
Get:4 http://apt.nexenta.org elatte-unstable Release [7697B]<br />
Ign http://apt.gnusolaris.org elatte-testing Release<br />
Ign http://apt.gnusolaris.org elatte-testing/main Packages<br />
Ign http://apt.gnusolaris.org elatte-testing/contrib Packages<br />
Ign http://apt.gnusolaris.org elatte-testing/non-free Packages<br />
Ign http://apt.gnusolaris.org elatte-testing/main Sources<br />
Ign http://apt.gnusolaris.org elatte-testing/contrib Sources<br />
Ign http://apt.gnusolaris.org elatte-testing/non-free Sources<br />
Get:5 http://apt.nexenta.org elatte-unstable/main Packages [535kB]<br />
Err http://apt.gnusolaris.org elatte-testing/main Packages<br />
302 Found<br />
Err http://apt.gnusolaris.org elatte-testing/contrib Packages<br />
302 Found<br />
Err http://apt.gnusolaris.org elatte-testing/non-free Packages<br />
302 Found<br />
Err http://apt.gnusolaris.org elatte-testing/main Sources<br />
302 Found<br />
Err http://apt.gnusolaris.org elatte-testing/contrib Sources<br />
302 Found<br />
Err http://apt.gnusolaris.org elatte-testing/non-free Sources<br />
302 Found<br />
Get:6 http://apt.nexenta.org elatte-unstable/contrib Packages [14B]<br />
Get:7 http://apt.nexenta.org elatte-unstable/non-free Packages [3088B]<br />
Get:8 http://apt.nexenta.org elatte-unstable/main Packages [535kB]<br />
Get:9 http://apt.nexenta.org elatte-unstable/contrib Packages [14B]<br />
Get:10 http://apt.nexenta.org elatte-unstable/non-free Packages [3088B]<br />
Ign http://apt.nexenta.org elatte-unstable/csw Packages<br />
Get:11 http://apt.nexenta.org elatte-unstable/csw Packages [157kB]<br />
95% [8 Packages bzip2 0] [11 Packages 98776/157kB 62%]Â Â Â Â Â Â Â Â Â Â Â Â Â Â  195kB/s 0s<br />
bzip2: Compressed file ends unexpectedly;<br />
perhaps it is corrupted?Â  *Possible* reason follows.<br />
bzip2: Resource temporarily unavailable<br />
Input file = (stdin), output file = (stdout)</p>
<p>It is possible that the compressed file(s) have become corrupted.<br />
You can use the -tvv option to test integrity of such files.</p>
<p>You can use the `bzip2recover' program to attempt to recover<br />
data from undamaged sections of corrupted files.</p>
<p>Err http://apt.nexenta.org elatte-unstable/main Packages<br />
Could not open file /var/lib/apt/lists/partial/apt.nexenta.org_dists_elatte-un stable_main_binary-solaris-i386_Packages - open (2 No such file or directory)<br />
95% [9 Packages bzip2 0] [11 Packages 98776/157kB 62%]Â Â Â Â Â Â Â Â Â Â Â Â Â Â  195kB/s 0s<br />
bzip2: Compressed file ends unexpectedly;<br />
perhaps it is corrupted?Â  *Possible* reason follows.<br />
bzip2: Resource temporarily unavailable<br />
Input file = (stdin), output file = (stdout)</p>
<p>It is possible that the compressed file(s) have become corrupted.<br />
You can use the -tvv option to test integrity of such files.</p>
<p>You can use the `bzip2recover' program to attempt to recover<br />
data from undamaged sections of corrupted files.</p>
<p>Err http://apt.nexenta.org elatte-unstable/contrib Packages<br />
Could not open file /var/lib/apt/lists/partial/apt.nexenta.org_dists_elatte-un stable_contrib_binary-solaris-i386_Packages - open (2 No such file or directory)<br />
95% [10 Packages bzip2 0] [11 Packages 98776/157kB 62%]Â Â Â Â Â Â Â Â Â Â Â Â Â  195kB/s 0s<br />
bzip2: Compressed file ends unexpectedly;<br />
perhaps it is corrupted?Â  *Possible* reason follows.<br />
bzip2: Resource temporarily unavailable<br />
Input file = (stdin), output file = (stdout)</p>
<p>It is possible that the compressed file(s) have become corrupted.<br />
You can use the -tvv option to test integrity of such files.</p>
<p>You can use the `bzip2recover' program to attempt to recover<br />
data from undamaged sections of corrupted files.</p>
<p>Err http://apt.nexenta.org elatte-unstable/non-free Packages<br />
Could not open file /var/lib/apt/lists/partial/apt.nexenta.org_dists_elatte-un stable_non-free_binary-solaris-i386_Packages - open (2 No such file or directory )<br />
Fetched 744kB in 6s (111kB/s)<br />
Failed to fetch http://security.debian.org/dists/etch/updates/main/binary-solari s-i386/Packages.gzÂ  404 Not Found [IP: 212.211.132.32 80]<br />
Failed to fetch http://security.debian.org/dists/etch/updates/contrib/binary-sol aris-i386/Packages.gzÂ  404 Not Found [IP: 212.211.132.32 80]<br />
Failed to fetch http://security.debian.org/dists/etch/updates/non-free/binary-so laris-i386/Packages.gzÂ  404 Not Found [IP: 212.211.132.32 80]<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/main/binary-solar is-i386/Packages.gzÂ  302 Found<br />
Failed to fetch http://apt.nexenta.org/dists/elatte-unstable/main/binary-solaris -i386/Packages.bz2Â  Could not open file /var/lib/apt/lists/partial/apt.nexenta.o rg_dists_elatte-unstable_main_binary-solaris-i386_Packages - open (2 No such fil e or directory)<br />
Failed to fetch http://apt.nexenta.org/dists/elatte-unstable/contrib/binary-sola ris-i386/Packages.bz2Â  Could not open file /var/lib/apt/lists/partial/apt.nexent a.org_dists_elatte-unstable_contrib_binary-solaris-i386_Packages - open (2 No su ch file or directory)<br />
Failed to fetch http://apt.nexenta.org/dists/elatte-unstable/non-free/binary-sol aris-i386/Packages.bz2Â  Could not open file /var/lib/apt/lists/partial/apt.nexen ta.org_dists_elatte-unstable_non-free_binary-solaris-i386_Packages - open (2 No such file or directory)<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/contrib/binary-so laris-i386/Packages.gzÂ  302 Found<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/non-free/binary-s olaris-i386/Packages.gzÂ  302 Found<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/main/source/Sourc es.gzÂ  302 Found<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/contrib/source/So urces.gzÂ  302 Found<br />
Failed to fetch http://apt.gnusolaris.org/dists/elatte-testing/non-free/source/S ources.gzÂ  302 Found<br />
Reading package lists... Done<br />
W: GPG error: http://security.debian.org etch/updates Release: The following sig natures couldn't be verified because the public key is not available: NO_PUBKEY A70DAF536070D3A1<br />
W: Duplicate sources.list entry http://apt.nexenta.org elatte-unstable/main Pack ages (/var/lib/apt/lists/apt.nexenta.org_dists_elatte-unstable_main_binary-solar is-i386_Packages)<br />
W: Duplicate sources.list entry http://apt.nexenta.org elatte-unstable/contrib P ackages (/var/lib/apt/lists/apt.nexenta.org_dists_elatte-unstable_contrib_binary -solaris-i386_Packages)<br />
W: Duplicate sources.list entry http://apt.nexenta.org elatte-unstable/non-free Packages (/var/lib/apt/lists/apt.nexenta.org_dists_elatte-unstable_non-free_bina ry-solaris-i386_Packages)<br />
W: You may want to run apt-get update to correct these problems<br />
E: Some index files failed to download, they have been ignored, or old ones usedÂ  instead.<br />
desarrollo@nexentax86myhost:~$ sudo apt-get upgrade<br />
Reading package lists... Done<br />
Building dependency tree... Done<br />
The following packages have been kept back:<br />
alien apt apt-utils aptitude bsdutils cupsys dbus dbus-1-utils fontconfig<br />
grub-data hal libavahi-client3 libavahi-compat-howl0 libc libdbus-1-2<br />
libdbus-glib-1-2 libfontconfig1 libhal1 libnotify1 libpam-modules<br />
libpam-runtime libpam0g lsb-base net-tools netbase nexenta-lu nexenta-pkgcmd<br />
python2.4-apt samba samba-common smbclient sunw1394 sunwaac sunwad810<br />
sunwadixp sunwadpu320 sunwagp sunwamr sunwatfsr sunwatfsu sunwatheros<br />
sunwaudd sunwaudiohd sunwav1394 sunwbge sunwbip sunwcakr sunwcar sunwcdrw<br />
sunwcfcl sunwcfclr sunwcfpl sunwcfplr sunwchxge sunwckr sunwcnetr sunwcpc<br />
sunwcsd sunwcsl sunwcslr sunwcsr sunwcsu sunwdcaf sunwdcar sunwdrmr sunwdtrc<br />
sunwdtrp sunwesu sunwfchba sunwfchbar sunwfcip sunwfcp sunwfcprt sunwfcsm<br />
sunwfctl sunwfmd sunwfmdr sunwfss sunwgrub sunwgss sunwgssc sunwib sunwibhca<br />
sunwima sunwimac sunwimacr sunwimar sunwintgige sunwipc sunwipfr sunwipfu<br />
sunwipw sunwiscsir sunwiscsiu sunwiwi sunwixgb sunwkey sunwkrbr sunwkrbu<br />
sunwkvm sunwlibsasl sunwloc sunwlsimega sunwluxop sunwlxr sunwlxu sunwmdb<br />
sunwmdbr sunwmdr sunwmdu sunwmpapi sunwmpapir sunwmpsvplr sunwmv88sx<br />
sunwnfsckr sunwnfscr sunwnfscu sunwnfsskr sunwnfssr sunwnfssu sunwnge<br />
sunwopenssl-libraries sunwos86r sunwpcan sunwpcelx sunwpcmci sunwpcmcu<br />
sunwpcmem sunwpcser sunwpcwl sunwpd sunwpiclr sunwpiclu sunwpkgcmdsu sunwpmr<br />
sunwpmu sunwpool sunwpoolr sunwpppd sunwpppdr sunwpppdt sunwpppdu sunwpppg<br />
sunwpppgs sunwpsdcr sunwpsdir sunwpsdpr sunwrcmdc sunwrcmds sunwrge<br />
sunwrmodr sunwrmodu sunwroute sunwrtls sunwrtw sunwsbp2 sunwscpr sunwscpu<br />
sunwscsa1394 sunwses sunwsi3124 sunwsmapi sunwsn1rint sunwsn1uint sunwsndmr<br />
sunwsndmu sunwsshcu sunwsshdr sunwsshdu sunwsshr sunwsshu sunwtecla sunwtftp<br />
sunwtnetc sunwtnetd sunwtnetr sunwtoo sunwuedg sunwugen sunwuksp sunwukspfw<br />
sunwuprl sunwusb sunwusbs sunwwbsup sunwwlanr sunwwlanu sunwxge sunwxwdv<br />
sunwzfskr sunwzfsr sunwzfsu sunwzoner sunwzoneu sysv-rc sysvinit whiptail<br />
The following packages will be upgraded:<br />
alsa-utils app-install-data-commercial appres aspell-en base-files<br />
beforelight bitmap bittorrent cron debconf debconf-i18n debconf-utils<br />
debhelper defoma dialog discover1-data docbook-xml dpkg dpkg-dev dselect<br />
editres eject fstobdf gamin gconf2 gconf2-common gnome-icon-theme<br />
gnome-keyring gs gs-common gs-gpl gsfonts gtk2-engines-pixbuf<br />
hicolor-icon-theme iceauth ico info jkaudio-toolsahlp jkaudio-toolsbpci<br />
jkaudio-toolsemu jkaudio-toolsi810 jkaudio-toolsva686 laptop-detect libacl1<br />
libatk1.0-0 libattr1 libaudiofile0 libavahi-common-data libavahi-common3<br />
libavahi-glib1 libbonobo2-0 libbonobo2-common libcairo2 libcap1 libcdio6<br />
libcupsimage2 libcupsys2 libdmx1 libdvdread3 libexif12 libfreetype6 libfs6<br />
libgamin0 libgconf2-4 libgdbm3 libglib-perl libglib2.0-0 libglibmm-2.4-1c2a<br />
libgnome-keyring0 libgnomevfs2-0 libgnomevfs2-common libgpg-error0<br />
libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libidl0 libkrb53 liblcms1<br />
libmusicbrainz4c2a libncurses5 libncursesw5 libneon25 libogg0 liborbit2<br />
libpango1.0-0 libpango1.0-common libpaper1 libperl5.8 libpopt0 libslang2<br />
libsmbclient libsoup2.2-8 libsunw-perl libusb-0.1-4 libvorbis0a<br />
libvorbisenc2 libx11-6 libxdamage1 libxft2 libxinerama1 libxkbfile1 libxmu6<br />
libxmuu1 libxrandr2 libxres1 libxss1 libxtrap6 libxtst6 libxv1 libxxf86dga1<br />
libxxf86misc1 libxxf86vm1 listres login man-db manpages mcpp menu<br />
mime-support myamanet-alta myamanet-axf myamanet-gani myamanet-nfo<br />
myamanet-ni myamanet-sfe myamanet-tne myamanet-tu myamanet-urf myamanet-vel<br />
ncurses-base ncurses-bin nevada-compat nexenta-sunw nexenta-zones oclock<br />
passwd perl perl-base perl-modules pkg-config psmisc python<br />
python-gnupginterface python-minimal python-xdg screen sgml-base sgml-data<br />
shared-mime-info smproxy sunwlibm ttf-bitstream-vera ucf udev<br />
unattended-upgrades unzip usbutils viewres x-window-system-core x11-common<br />
x11perf xauth xbase-clients xbiff xcalc xclipboard xconsole xcursor-themes<br />
xditview xdpyinfo xev xeyes xf86dga xfonts-100dpi xfonts-75dpi xfonts-base<br />
xfonts-scalable xfonts-utils xfontsel xgamma xgc xhost xinit xkbutils<br />
xkeyboard-config xkill xload xlsatoms xlsclients xlsfonts xmag xman xmessage<br />
xml-core xmodmap xmore xprop xrandr xrdb xrefresh xrgb xserver-xorg<br />
xserver-xorg-driver-all xserver-xorg-input-all xset xsetmode xsetpointer<br />
xsetroot xsm xstdcmap xtrap xutils xvidtune xvinfo xwd xwininfo xwud zip<br />
218 upgraded, 0 newly installed, 0 to remove and 197 not upgraded.<br />
Need to get 78.9MB of archives.<br />
After unpacking 13.5MB disk space will be freed.<br />
Do you want to continue [Y/n]? Y<br />
Get:1 http://apt.nexenta.org elatte-unstable/main dpkg 1.13.22nexenta10 [1564kB]<br />
Get:2 http://apt.nexenta.org elatte-unstable/main login 1:4.0.13-7nexenta4 [493k B]<br />
Get:3 http://apt.nexenta.org elatte-unstable/main ncurses-bin 5.5-1nexenta5 [208 kB]<br />
Get:4 http://apt.nexenta.org elatte-unstable/main perl-modules 5.8.7-10nexenta4 [2347kB]<br />
Get:5 http://apt.nexenta.org elatte-unstable/main libgdbm3 1.8.3-2nexenta1 [21.2 kB]<br />
Get:6 http://apt.nexenta.org elatte-unstable/main sunwlibm 1.00-2 [358kB]<br />
Get:7 http://apt.nexenta.org elatte-unstable/main perl 5.8.7-10nexenta4 [3285kB]<br />
Get:8 http://apt.nexenta.org elatte-unstable/main libperl5.8 5.8.7-10nexenta4 [4 45kB]<br />
Get:9 http://apt.nexenta.org elatte-unstable/main perl-base 5.8.7-10nexenta4 [67 8kB]<br />
Get:10 http://apt.nexenta.org elatte-unstable/main base-files 3.1.9nexenta33 [51 .3kB]<br />
Get:11 http://apt.nexenta.org elatte-unstable/main libncurses5 5.5-1nexenta5 [28 7kB]<br />
Get:12 http://apt.nexenta.org elatte-unstable/main ncurses-base 5.5-1nexenta5 [1 3.6kB]<br />
Get:13 http://apt.nexenta.org elatte-unstable/main python-minimal 2.4.3-11nexent a5 [12.4kB]<br />
Get:14 http://apt.nexenta.org elatte-unstable/main debconf-i18n 1.5.13nexenta2 [ 151kB]<br />
Get:15 http://apt.nexenta.org elatte-unstable/main debconf 1.5.13nexenta2 [151kB ]<br />
Get:16 http://apt.nexenta.org elatte-unstable/main laptop-detect 0.12.1-nexenta3Â  [2920B]<br />
Get:17 http://apt.nexenta.org elatte-unstable/main x11-common 7.0.0-0nexenta46 [ 35.2kB]<br />
Get:18 http://apt.nexenta.org elatte-unstable/main libx11-6 2:1.0.0-0nexenta10.1Â  [1264kB]<br />
13% [18 libx11-6 613208/1264kB 48%]Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  245kB/ Get:19 http://apt.nexenta.org elatte-unstable/main libncursesw5 5.5-1nexenta5 [303kB]<br />
Get:20 http://apt.nexenta.org elatte-unstable/main passwd 1:4.0.13-7nexenta4 [335kB]<br />
Get:21 http://apt.nexenta.org elatte-unstable/main screen 4.0.2-4.1nexenta8 [590kB]<br />
Get:22 http://apt.nexenta.org elatte-unstable/main libfreetype6 2.2.1-5 [556kB]<br />
Get:23 http://apt.nexenta.org elatte-unstable/main xfonts-utils 6.8.2.1-5nexenta1 [47.3kB]<br />
Get:24 http://apt.nexenta.org elatte-unstable/main xfonts-100dpi 6.8.2.1-5nexenta1 [4422kB]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[basido de dispositivos de almazenamiento]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/basido-de-dispositivos-de-almazenamiento/</link>
<pubDate>Tue, 19 Feb 2008 00:14:13 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/basido-de-dispositivos-de-almazenamiento/</guid>
<description><![CDATA[umna coisa importante antes de mais nada
se no hay noticias son buenas noticias.
# bash
bash-3.00# i]]></description>
<content:encoded><![CDATA[<p>umna coisa importante antes de mais nada</p>
<p>se no hay noticias son buenas noticias.</p>
<p># bash<br />
bash-3.00# ifconfig<br />
usage: ifconfig &#60;interface&#62; &#124; -a[ 4 &#124; 6 &#124; D ][ u &#124; d ][ Z ]<br />
[ &#60;addr_family&#62; ]<br />
[ &#60;address&#62;[/&#60;prefix_length&#62;] [ &#60;dest_address&#62; ] ]<br />
[ set [ &#60;address&#62;][/&#60;prefix_length&#62;] ] [ &#60;address&#62;/&#60;prefix_length&#62;] ]<br />
[ destination &#60;dest_address&#62; ]<br />
[ addif &#60;address&#62;[/&#60;prefix_length&#62;]Â  [ &#60;dest_address&#62; ] ]<br />
[ removeif &#60;address&#62;[/&#60;prefix_length&#62;] ]<br />
[ arp &#124; -arp ]<br />
[ auto-revarp ]<br />
[ broadcast &#60;broad_addr&#62; ]<br />
[ index &#60;if_index&#62; ]<br />
[ metric &#60;n&#62; ] [ mtu &#60;n&#62; ]<br />
[ netmask &#60;mask&#62; ]<br />
[ plumb ] [ unplumb ]<br />
[ preferred &#124; -preferred ]<br />
[ private &#124; -private ]<br />
[ local &#124; -local ]<br />
[ router &#124; -router ]<br />
[ subnet &#60;subnet_address&#62;]<br />
[ trailers &#124; -trailers ]<br />
[ token &#60;address&#62;/&#60;prefix_length&#62; ]<br />
[ tsrc &#60;tunnel_src_address&#62; ]<br />
[ tdst &#60;tunnel_dest_address&#62; ]<br />
[ auth_algs &#60;tunnel_AH_authentication_algorithm&#62; ]<br />
[ encr_algs &#60;tunnel_ESP_encryption_algorithm&#62; ]<br />
[ encr_auth_algs &#60;tunnel_ESP_authentication_algorithm&#62; ]<br />
[ up ] [ down ]<br />
[ xmit &#124; -xmit ]<br />
[ modlist ]<br />
[ modinsert &#60;module_name@position&#62; ]<br />
[ modremove &#60;module_name@position&#62; ]<br />
[ group &#60;groupname&#62;] &#124; [ group ""]<br />
[ deprecated &#124; -deprecated ]<br />
[ standby &#124; -standby ]<br />
[ failover &#124; -failover ]<br />
[ zone &#60;zonename&#62; &#124; -zone ]<br />
[ usesrc &#60;interface&#62; ]<br />
[ all-zones ]<br />
or<br />
ifconfig &#60;interface&#62; &#124;Â  -a[ 4 &#124; 6 &#124; D ] [ u &#124; d ]<br />
auto-dhcp &#124; dhcp<br />
[ wait &#60;time&#62; &#124; forever ]<br />
[ primary ]<br />
start &#124; drop &#124; ping &#124; release &#124; status &#124; inform<br />
bash-3.00# ifconfig -a<br />
lo0: flags=2001000849&#60;UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL&#62; mtu 8232 index 1<br />
inet 127.0.0.1 netmask ff000000<br />
iprb0: flags=1004843&#60;UP,BROADCAST,RUNNING,MULTICAST,DHCP,IPv4&#62; mtu 1500 index 2<br />
inet 192.168.1.4 netmask ffffff00 broadcast 192.168.1.255<br />
ether 0:2:b3:bc:a9:65<br />
bash-3.00# cd /dev/dsk<br />
bash-3.00# ls -l<br />
total 126<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@0,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @0,0:j<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmd k@1,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk @1,0:j<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/s d@0,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd @0,0:j<br />
bash-3.00# ls -l<br />
total 126<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:j<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  51 agoÂ  7 00:20 c0d1s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:j<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:q<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:r<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:s<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:t<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:u<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:a<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:b<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:k<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:l<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:m<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:n<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:o<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:p<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:c<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:d<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:e<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:f<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:g<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:h<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:i<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  49 agoÂ  7 00:20 c1t0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:j<br />
bash-3.00# devfsadm<br />
bash-3.00# devfsadn -c disk<br />
bash: devfsadn: command not found<br />
bash-3.00# devfsadm -c disk<br />
bash-3.00# prtconf<br />
System Configuration:Â  Sun MicrosystemsÂ  i86pc<br />
Memory size: 1024 Megabytes<br />
System Peripherals (Software Nodes):</p>
<p>i86pc<br />
scsi_vhci, instance #0<br />
isa, instance #0<br />
fdc, instance #0<br />
fd, instance #0<br />
asy, instance #0<br />
lp (driver not attached)<br />
joyst (driver not attached)<br />
i8042, instance #0<br />
mouse, instance #0<br />
keyboard, instance #0<br />
pci, instance #0<br />
pci1849,3099 (driver not attached)<br />
pci1106,b099, instance #0<br />
display, instance #0<br />
pci1106,3044, instance #0<br />
pci1106,3038, instance #0<br />
pci1106,3038, instance #1<br />
pci1106,3104 (driver not attached)<br />
pci1106,e8e9, instance #1<br />
pci8086,40, instance #0<br />
pci1106,3038, instance #2<br />
pci1106,3038, instance #3<br />
pci1106,3038, instance #4<br />
pci1106,3104, instance #1<br />
pci1849,3177 (driver not attached)<br />
pci-ide, instance #0<br />
ide, instance #0<br />
cmdk, instance #0<br />
cmdk, instance #1<br />
ide, instance #1<br />
sd, instance #0<br />
pci1106,4161, instance #0<br />
pci1849,3065 (driver not attached)<br />
iscsi, instance #0<br />
pseudo, instance #0<br />
options, instance #0<br />
agpgart, instance #0<br />
xsvc, instance #0<br />
objmgr, instance #0<br />
used-resources (driver not attached)<br />
cpus (driver not attached)<br />
cpu, instance #0 (driver not attached)<br />
bash-3.00#<br />
bash-3.00# devfsadm<br />
bash-3.00# devfsadn -c disk<br />
bash: devfsadn: command not found<br />
bash-3.00# devfsadm -c disk<br />
bash-3.00# prtconf<br />
System Configuration:Â  Sun MicrosystemsÂ  i86pc<br />
Memory size: 1024 Megabytes<br />
System Peripherals (Software Nodes):</p>
<p>i86pc<br />
scsi_vhci, instance #0<br />
isa, instance #0<br />
fdc, instance #0<br />
fd, instance #0<br />
asy, instance #0<br />
lp (driver not attached)<br />
joyst (driver not attached)<br />
i8042, instance #0<br />
mouse, instance #0<br />
keyboard, instance #0<br />
pci, instance #0<br />
pci1849,3099 (driver not attached)<br />
pci1106,b099, instance #0<br />
display, instance #0<br />
pci1106,3044, instance #0<br />
pci1106,3038, instance #0<br />
pci1106,3038, instance #1<br />
pci1106,3104 (driver not attached)<br />
pci1106,e8e9, instance #1<br />
pci8086,40, instance #0<br />
pci1106,3038, instance #2<br />
pci1106,3038, instance #3<br />
pci1106,3038, instance #4<br />
pci1106,3104, instance #1<br />
pci1849,3177 (driver not attached)<br />
pci-ide, instance #0<br />
ide, instance #0<br />
cmdk, instance #0<br />
cmdk, instance #1<br />
ide, instance #1<br />
sd, instance #0<br />
pci1106,4161, instance #0<br />
pci1849,3065 (driver not attached)<br />
iscsi, instance #0<br />
pseudo, instance #0<br />
options, instance #0<br />
agpgart, instance #0<br />
xsvc, instance #0<br />
objmgr, instance #0<br />
used-resources (driver not attached)<br />
cpus (driver not attached)<br />
cpu, instance #0 (driver not attached)<br />
bash-3.00# format<br />
Searching for disks...done</p>
<p>AVAILABLE DISK SELECTIONS:<br />
0. c0d0 &#60;drive type unknown&#62;<br />
/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0<br />
1. c0d1 &#60;DEFAULT cyl 9961 alt 2 hd 255 sec 63&#62;Â  SolarTec<br />
/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0<br />
Specify disk (enter its number): ^C<br />
bash-3.00# prtvtoc<br />
Usage:Â  prtvtoc [ -fhs ] [ -t fstab ] [ -m mnttab ] rawdisk ...<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1p0<br />
* /dev/rdsk/c0d1p0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c1t0d0p0<br />
prtvtoc: /dev/rdsk/c1t0d0p0: Device busy<br />
bash-3.00# prtvtoc /dev/rdsk/c1t0d0p1<br />
prtvtoc: /dev/rdsk/c1t0d0p1: Device busy<br />
bash-3.00# prtvtoc /dev/rdsk/c1t0d0p1<br />
prtvtoc: /dev/rdsk/c1t0d0p1: Device busy<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s9<br />
* /dev/rdsk/c0d1s9 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c0d0s0<br />
prtvtoc: /dev/rdsk/c0d0s0: Unable to read Disk geometry errno = 0x5<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c0d2s0<br />
prtvtoc: /dev/rdsk/c0d2s0: No such file or directory<br />
bash-3.00# prtvtoc /dev/rdsk/c0d0s0<br />
prtvtoc: /dev/rdsk/c0d0s0: Unable to read Disk geometry errno = 0x5<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c1d1s0<br />
prtvtoc: /dev/rdsk/c1d1s0: No such file or directory<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s1<br />
* /dev/rdsk/c0d1s1 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194</p>
<p>bash-3.00# pwd<br />
/dev/dsk<br />
bash-3.00# cd ..<br />
bash-3.00# cd rdsk<br />
bash-3.00# ls -l<br />
total 126<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:q,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:r,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:s,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:t,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:u,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:a,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:b,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:k,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:l,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:m,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:n,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:o,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:p,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:c,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:d,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:e,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:f,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:g,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:h,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:i,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@0,0:j,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:q,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:r,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:s,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:t,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:u,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:a,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:b,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:k,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:l,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:m,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:n,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:o,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:p,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:c,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:d,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:e,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:f,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:g,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:h,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:i,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  55 agoÂ  7 00:20 c0d1s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@0/cmdk@1,0:j,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0p0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:q,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0p1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:r,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0p2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:s,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0p3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:t,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0p4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:u,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s0 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:a,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s1 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:b,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s10 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:k,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s11 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:l,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s12 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:m,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s13 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:n,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s14 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:o,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s15 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:p,rawlrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s2 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:c,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s3 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:d,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s4 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:e,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s5 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:f,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s6 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:g,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s7 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:h,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s8 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:i,raw<br />
lrwxrwxrwxÂ Â  1 rootÂ Â Â Â  rootÂ Â Â Â Â Â Â Â Â  53 agoÂ  7 00:20 c1t0d0s9 -&#62; ../../devices/pci@0,0/pci-ide@11,1/ide@1/sd@0,0:j,raw<br />
bash-3.00# cd c0d1s0<br />
bash: cd: c0d1s0: NingÃºn directorio<br />
bash-3.00# cd c0d1p1<br />
bash: cd: c0d1p1: NingÃºn directorio<br />
bash-3.00# cd c0d0p0<br />
bash: cd: c0d0p0: NingÃºn directorio<br />
bash-3.00# cd c0d0s2<br />
bash: cd: c0d0s2: NingÃºn directorio<br />
bash-3.00# prtvtoc /dev/rdsk/c0d1s0<br />
* /dev/rdsk/c0d1s0 (volume "SolarTec") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â  61448625Â  63601334<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â  106655535Â  53367930 160023464Â Â  /<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  63601335Â  43054200 106655534Â Â  /export/home<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â  9Â Â Â  01Â Â Â Â Â  16065Â Â Â Â  32130Â Â Â Â  48194<br />
bash-3.00#</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[usuarios e grupos de uma escola]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/usuarios-e-grupos-de-uma-escola/</link>
<pubDate>Tue, 19 Feb 2008 00:12:04 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/?p=18</guid>
<description><![CDATA[configurando perfis de usuÃ¡rios, grupos e administrando permissÃµes de acesso a dados de uma escola]]></description>
<content:encoded><![CDATA[<p>configurando perfis de usuÃ¡rios, grupos e administrando permissÃµes de acesso a dados de uma escola</p>
<p>um exemplo hipotÃ©tico, um estudo de caso</p>
<p>100% pratico</p>
<p>nesse tutorial voce vai aprender a:</p>
<p>administrar usuarios e grupos<br />
administrar permissÃµes em arquivos e diretoria</p>
<p>compartilhar e configurar servidores ntf e samba [zfs, vpn, nas, nis+]</p>
<p>controlar acesso via atravÃ©s dos logos</p>
<p>criar scrpits em shell bash</p>
<p>---</p>
<p>construir uma comunidade virtual com xoops</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[\boot\grub\menu.list]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/bootgrubmenulist/</link>
<pubDate>Tue, 19 Feb 2008 00:10:22 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/bootgrubmenulist/</guid>
<description><![CDATA[# menu.lst - See: grub(8), info grub, update-grub(8)
#Â Â Â Â Â Â Â Â Â Â Â  grub-install(8), grub-f]]></description>
<content:encoded><![CDATA[<p># menu.lst - See: grub(8), info grub, update-grub(8)<br />
#Â Â Â Â Â Â Â Â Â Â Â  grub-install(8), grub-floppy(8),<br />
#Â Â Â Â Â Â Â Â Â Â Â  grub-md5-crypt, /usr/share/doc/grub<br />
#Â Â Â Â Â Â Â Â Â Â Â  and /usr/share/doc/grub-doc/.</p>
<p>## default num<br />
# Set the default entry to the entry number NUM. Numbering starts from 0, and<br />
# the entry number 0 is the default if the command is not used.<br />
#<br />
# You can specify 'saved' instead of a number. In this case, the default entry<br />
# is the entry saved with the command 'savedefault'.<br />
# WARNING: If you are using dmraid do not change this entry to 'saved' or your<br />
# array will desync and will not let you boot your system.<br />
defaultÂ Â Â  Â Â Â  0</p>
<p>## timeout sec<br />
# Set a timeout, in SEC seconds, before automatically booting the default entry<br />
# (normally the first entry defined).<br />
timeoutÂ Â Â  Â Â Â  10</p>
<p>## hiddenmenu<br />
# Hides the menu by default (press ESC to see the menu)<br />
#hiddenmenu</p>
<p># Pretty colours<br />
#color cyan/blue white/blue<br />
color red/black gree/blue</p>
<p>## password ['--md5'] passwd<br />
# If used in the first section of a menu file, disable all interactive editing<br />
# control (menu entry editor and command-line)Â  and entries protected by the<br />
# command 'lock'<br />
# e.g. password topsecret<br />
#Â Â Â Â Â  password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/<br />
# password topsecret</p>
<p>#<br />
# examples<br />
#<br />
# titleÂ Â Â  Â Â Â  Windows 95/98/NT/2000<br />
# rootÂ Â Â  Â Â Â  (hd0,0)<br />
# makeactive<br />
# chainloaderÂ Â Â  +1<br />
#<br />
# titleÂ Â Â  Â Â Â  Linux<br />
# rootÂ Â Â  Â Â Â  (hd0,1)<br />
# kernelÂ Â Â  /vmlinuz root=/dev/hda2 ro<br />
#</p>
<p>#<br />
# Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST</p>
<p>### BEGIN AUTOMAGIC KERNELS LIST<br />
## lines between the AUTOMAGIC KERNELS LIST markers will be modified<br />
## by the debian update-grub script except for the default options below</p>
<p>## DO NOT UNCOMMENT THEM, Just edit them to your needs</p>
<p>## ## Start Default Options ##<br />
## default kernel options<br />
## default kernel options for automagic boot options<br />
## If you want special options for specific kernels use kopt_x_y_z<br />
## where x.y.z is kernel version. Minor versions can be omitted.<br />
## e.g. kopt=root=/dev/hda1 ro<br />
##Â Â Â Â Â  kopt_2_6_8=root=/dev/hdc1 ro<br />
##Â Â Â Â Â  kopt_2_6_8_2_686=root=/dev/hdc2 ro<br />
# kopt=root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro</p>
<p>## Setup crashdump menu entries<br />
## e.g. crashdump=1<br />
# crashdump=0</p>
<p>## default grub root device<br />
## e.g. groot=(hd0,0)<br />
# groot=(hd0,1)</p>
<p>## should update-grub create alternative automagic boot options<br />
## e.g. alternative=true<br />
##Â Â Â Â Â  alternative=false<br />
# alternative=true</p>
<p>## should update-grub lock alternative automagic boot options<br />
## e.g. lockalternative=true<br />
##Â Â Â Â Â  lockalternative=false<br />
# lockalternative=false</p>
<p>## additional options to use with the default boot option, but not with the<br />
## alternatives<br />
## e.g. defoptions=vga=791 resume=/dev/hda5<br />
# defoptions=quiet splash</p>
<p>## should update-grub lock old automagic boot options<br />
## e.g. lockold=false<br />
##Â Â Â Â Â  lockold=true<br />
# lockold=false</p>
<p>## Xen hypervisor options to use with the default Xen boot option<br />
# xenhopt=</p>
<p>## Xen Linux kernel options to use with the default Xen boot option<br />
# xenkopt=console=tty0</p>
<p>## altoption boot targets option<br />
## multiple altoptions lines are allowed<br />
## e.g. altoptions=(extra menu suffix) extra boot options<br />
##Â Â Â Â Â  altoptions=(recovery) single<br />
# altoptions=(recovery mode) single</p>
<p>## controls how many kernels should be put into the menu.lst<br />
## only counts the first occurence of a kernel, not the<br />
## alternative kernel options<br />
## e.g. howmany=all<br />
##Â Â Â Â Â  howmany=7<br />
# howmany=all</p>
<p>## should update-grub create memtest86 boot option<br />
## e.g. memtest86=true<br />
##Â Â Â Â Â  memtest86=false<br />
# memtest86=true</p>
<p>## should update-grub adjust the value of the default booted system<br />
## can be true or false<br />
# updatedefaultentry=false</p>
<p>## ## End Default Options ##</p>
<p>titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.20-16-generic<br />
rootÂ Â Â  Â Â Â  (hd0,1)<br />
kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.20-16-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro quiet splash<br />
initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.20-16-generic<br />
quiet<br />
#savedefault</p>
<p>titleÂ Â Â  Â Â Â  Sun Solaris 10<br />
rootÂ Â Â  Â Â Â  (hd0,0)<br />
savedefault<br />
makeactive<br />
chainloaderÂ Â Â  +1<br />
savedefault</p>
<p>titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.20-16-generic (recovery mode)<br />
rootÂ Â Â  Â Â Â  (hd0,1)<br />
kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.20-16-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro single<br />
initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.20-16-generic</p>
<p>titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.20-15-generic<br />
rootÂ Â Â  Â Â Â  (hd0,1)<br />
kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.20-15-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro quiet splash<br />
initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.20-15-generic<br />
quiet<br />
savedefault</p>
<p>titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.20-15-generic (recovery mode)<br />
rootÂ Â Â  Â Â Â  (hd0,1)<br />
kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.20-15-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro single<br />
initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.20-15-generic</p>
<p>#titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.17-11-generic<br />
#rootÂ Â Â  Â Â Â  (hd0,1)<br />
#kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.17-11-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro quiet splash<br />
#initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.17-11-generic<br />
#quiet<br />
#savedefault</p>
<p>#titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.17-11-generic (recovery mode)<br />
#rootÂ Â Â  Â Â Â  (hd0,1)<br />
#kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.17-11-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro single<br />
#initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.17-11-generic</p>
<p>#titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.17-10-generic<br />
#rootÂ Â Â  Â Â Â  (hd0,1)<br />
#kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.17-10-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro quiet splash<br />
#initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.17-10-generic<br />
#quiet<br />
#savedefault</p>
<p>#titleÂ Â Â  Â Â Â  Ubuntu, kernel 2.6.17-10-generic (recovery mode)<br />
#rootÂ Â Â  Â Â Â  (hd0,1)<br />
#kernelÂ Â Â  Â Â Â  /boot/vmlinuz-2.6.17-10-generic root=UUID=caf62d18-b3c8-4d6a-b7a1-32400ea4b8a9 ro single<br />
#initrdÂ Â Â  Â Â Â  /boot/initrd.img-2.6.17-10-generic</p>
<p>#titleÂ Â Â  Â Â Â  Ubuntu, memtest86+<br />
#rootÂ Â Â  Â Â Â  (hd0,1)<br />
#kernelÂ Â Â  Â Â Â  /boot/memtest86+.bin<br />
#quiet</p>
<p>### END DEBIAN AUTOMAGIC KERNELS LIST</p>
<p># This is a divider, added to separate the menu items below from the Debian<br />
# ones.<br />
#titleÂ Â Â  Â Â Â  Other operating systems:<br />
#root</p>
<p># This entry automatically added by the Debian installer for a non-linux OS<br />
# on /dev/sda1<br />
#titleÂ Â Â  Â Â Â  Microsoft Windows XP<br />
#rootÂ Â Â  Â Â Â  (hd0,0)<br />
#savedefault<br />
#makeactive<br />
#chainloaderÂ Â Â  +1<br />
#titleÂ Â Â  Â Â Â  Solaris 10 11/06 s10x_u3wos_10 X86<br />
#rootÂ Â Â  Â Â Â  (hd0,0,a)<br />
#kernelÂ Â Â  Â Â Â  /platform/i86pc/multiboot<br />
#moduleÂ Â Â  Â Â Â  /platform/i86pc/boot_archive</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[monitorando montagens]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/monitorando-montagens/</link>
<pubDate>Tue, 19 Feb 2008 00:08:52 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/monitorando-montagens/</guid>
<description><![CDATA[/etc/mnttab
/etc/vfstab
/etc/default/fs
umount -a [-f] [-V] [-o specific_options] [mount_point...]
m]]></description>
<content:encoded><![CDATA[<p>/etc/mnttab</p>
<p>/etc/vfstab</p>
<p>/etc/default/fs</p>
<p>umount -a [-f] [-V] [-o specific_options] [mount_point...]</p>
<p>mount  [-F FSType]  [generic_options]  [-o specific_options]<br />
[-O] special mount_point</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Open Bravo]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/open-bravo/</link>
<pubDate>Tue, 19 Feb 2008 00:07:43 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/open-bravo/</guid>
<description><![CDATA[se quer saber mais sobre uma ferramente opensource para ERP ou SAP, entÃ£o escolha OpenBravo
 http:/]]></description>
<content:encoded><![CDATA[<p>se quer saber mais sobre uma ferramente opensource para ERP ou SAP, entÃ£o escolha OpenBravo<br />
<a href="http://www.moixo.com/es/instalacion-openbravo-ubuntu-feisty-fawn" target="_blank"> http://www.moixo.com/es/instalacion-openbravo-ubuntu-feisty-fawn</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[patchs]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/patchs/</link>
<pubDate>Tue, 19 Feb 2008 00:06:52 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/patchs/</guid>
<description><![CDATA[depois de reinicializar o sistema apos baixar as atualizoes
um dos patches havia sido apenas baixado]]></description>
<content:encoded><![CDATA[<p>depois de reinicializar o sistema apos baixar as atualizoes</p>
<p>um dos patches havia sido apenas baixado</p>
<p>bash-3.00# patchadd 121443-20<br />
Validating patches...</p>
<p>Loading patches installed on the system...</p>
<p>Done!</p>
<p>Loading patches requested to install.</p>
<p>Cannot locate 121443-20 to install.<br />
bash-3.00#</p>
<p>o problema Ã© que os patches baixados estÃ£o em /var/sadm/spool,</p>
<p>bash-3.00# cd /var/sadm/spool<br />
bash-3.00# patchadd 121431-20<br />
Validating patches...</p>
<p>Loading patches installed on the system...</p>
<p>Done!</p>
<p>Loading patches requested to install.</p>
<p>Done!</p>
<p>Checking patches that you specified for installation.</p>
<p>Done!</p>
<p>Approved patches will be installed in this order:</p>
<p>121431-20</p>
<p>Verificando modificaciÃ³n firmada &#60;121431-20&#62;...<br />
Verifying digital signature for signer &#60;es-signature&#62;<br />
ERROR: Signature verification failed while verifying certificate &#60;subject=Sun Microsystems Inc Root CA, issuer=/C=US/O=VeriSign, Inc./OU=Class 2 Public Primary Certification Authority - G2/O&#62;:&#60;unable to get local issuer certificate&#62;.<br />
ERROR: Unable to verify signature for signer &#60;es-signature&#62;<br />
Firma no vÃ¡lida en modificaciÃ³n firmada &#60;121431-20&#62;.</p>
<p>Patchadd estÃ¡ finalizando su ejecuciÃ³n.<br />
bash-3.00#</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[trabalhando com prtvtoc]]></title>
<link>http://itbereich.wordpress.com/2008/02/19/trabalhando-com-prtvtoc/</link>
<pubDate>Tue, 19 Feb 2008 00:05:21 +0000</pubDate>
<dc:creator>itbereich</dc:creator>
<guid>http://itbereich.it.wordpress.com/2008/02/19/trabalhando-com-prtvtoc/</guid>
<description><![CDATA[Uma mÃ¡quina com:
HD 40Gb Windows Xp [NTFS]
HD 80Gb Solaris 10 [UFS]
HD 80Gb Nexenta [UFS]
CD-ROM
ao]]></description>
<content:encoded><![CDATA[<p>Uma mÃ¡quina com:</p>
<p>HD 40Gb Windows Xp [NTFS]<br />
HD 80Gb Solaris 10 [UFS]<br />
HD 80Gb Nexenta [UFS]<br />
CD-ROM</p>
<p>ao executar:</p>
<p>$ sudo prtvtoc /dev/dsk/c0d1s0</p>
<p>tenho:</p>
<p>* /dev/dsk/c0d1s0 (volume "Solaris") partition map<br />
*<br />
* Dimensions:<br />
*Â Â Â Â  512 bytes/sector<br />
*Â Â Â Â Â  63 sectors/track<br />
*Â Â Â Â  255 tracks/cylinder<br />
*Â Â  16065 sectors/cylinder<br />
*Â Â Â  9963 cylinders<br />
*Â Â Â  9961 accessible cylinders<br />
*<br />
* Flags:<br />
*Â Â  1: unmountable<br />
*Â  10: read-only<br />
*<br />
* Unallocated space:<br />
*Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
*Â Â Â Â Â Â  SectorÂ Â Â Â  CountÂ Â Â  Sector<br />
*Â Â Â Â  2152710Â Â Â Â  16065Â Â  2168774<br />
*<br />
*Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  FirstÂ Â Â Â  SectorÂ Â Â  Last<br />
* PartitionÂ  TagÂ  FlagsÂ Â Â  SectorÂ Â Â Â  CountÂ Â Â  SectorÂ  Mount Directory<br />
0Â Â Â Â Â  2Â Â Â  00Â Â Â  2168775Â  75778605Â  77947379<br />
1Â Â Â Â Â  3Â Â Â  01Â Â Â Â Â  48195Â Â  2104515Â Â  2152709<br />
2Â Â Â Â Â  5Â Â Â  00Â Â Â Â Â Â Â Â Â  0 160023465 160023464<br />
7Â Â Â Â Â  8Â Â Â  00Â Â  77947380Â  82076085 160023464<br />
8Â Â Â Â Â  1Â Â Â  01Â Â Â Â Â Â Â Â Â  0Â Â Â Â  16065Â Â Â Â  16064<br />
9Â Â Â Â Â