|
Dimensione: 4075
Commento:
|
Dimensione: 4580
Commento:
|
| Le cancellazioni sono segnalate in questo modo. | Le aggiunte sono segnalate in questo modo. |
| Linea 1: | Linea 1: |
| ## page was renamed from NaldiniPaoloProve [[BR]] ||<tablestyle="font-size: 18px; text-align: center; width:100%; background:red; margin: 0 0 0 0;" style="padding:0.5em;">'''ATTENZIONE: Questa è una pagina di prove, le seguenti informazioni possono essere inesatte, si sconsiglia la visione'''|| [[BR]][[BR]][[BR]][[BR]][[BR]] |
* [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/Fstab?action=fullsearch&value=linkto%3A%22Fstab%22&context=180&prev=/language_tools Fstab] |
| Linea 6: | Linea 3: |
| = UtenteRoot = | |
| Linea 8: | Linea 4: |
| Nei sistemi operativi di tipo Unix si indica con root l'utente dotato di massimi privilegi, ossia l'amministratore di sistema, detto anche super utente o superuser. [[BR]] L'account root su sistemi Unix è paragonabile a quello di administrator su sistemi Windows NT/XP/Vista. [[BR]] L'utente root può fare tutto ciò che si desidera sul sistema: questo che apparentemente sembra essere un vantaggio, in realtà in parte è uno svantaggio. È di fatto ritenuto pericoloso compiere le normali sessioni di lavoro come ad esmpio lanciare X in qualità di root. Infatti un qualsiasi programma lanciato in esecuzione da root ha potenzialmente la possibilità di effettuare qualunque operazione sulla macchina sulla quale viene eseguito. Se lo stesso programma viene lanciato in esecuzione da un utente con privilegi non amministrativi, non potrà effettuare operazioni pericolose come cancellare file essenziali per il sistema operativo. [[BR]] E' buona norma pertanto avere almeno due utenti sulla macchina di cui uno root ed un altro a scelta con privilegi non amministrativi e quest'ultimo sarà quello che verrà utilizzato per svolgere qualsiasi cosa col computer. [[BR]] Qualora occorresse eseguire programmi con privilegi di root, basta dare da shell {{{ sudo [applicazione] }}} ed inserire la password di root richiesta. Tuttavia quando è necessario avviare da terminale un'applicazione grafica usando i privilegi di root, bisogna usare il comando: [[BR]] per Gnome {{{ gksudo [applicazione] }}} o per KDE: {{{ kdesu [applicazione] }}} È sconsigliato usare sudo per avviare un'applicazione grafica, in quanto sudo non imposterà le variabili d'ambiente correttamente, in modo particolare in KDE. |
||<tablestyle="margin: 0pt 0pt 1em 1em; background: rgb(241, 241, 237) none repeat scroll 0% 50%; float: right; font-size: 0.9em; width: 25%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"style="padding: 0.5em;">'''Index''' || |
| Linea 30: | Linea 7: |
| = fstab (File System Table) = Nei sistemi GNU/Linux fstab è un file di configurazione che si trova all'interno della directory /etc/ ed il cui proprietario è l'utente [:root]. |
|
| Linea 33: | Linea 8: |
| Il fstab indica i dispositivi che devono essere montati durante l'avvio con le rispettive opzioni. | Introduction The rows of {{{/etc/fstab}}} configuration contain the necessary information to the ''assembly'' of the peripheral ones of memorization of the system. Such rows come read to the start of the system and can be modified solo from the customer [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/Sudo&prev=/language_tools root]. |
| Linea 35: | Linea 11: |
| Per visualizzare il proprio fstab andare da shell e dare{{{ cat /etc/fstab }}} ottenendo una cosa simile: |
Contained of the rows It is possible to visualize such rows with the being followed commando: |
| Linea 41: | Linea 15: |
| # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> |
cat /etc/fstab }}} |
| Linea 45: | Linea 17: |
| proc /proc proc defaults 0 0 | The result of the previous commando will be similar to following: |
| Linea 47: | Linea 19: |
| # /dev/hda4 UUID=0aa86c61-0df9-4f1a-8b0b-34abbee6b769 / ext3 nouser,defaults,errors=remount-ro,atime,auto,rw,dev,exec,suid 0 0 |
{{{ # /etc/fstab: static rows system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/hda1 UUID=12102C02102CEB83 /media/windows ntfs silent, umask=0, locale=it_IT.utf8 0 0 # /dev/hda2 UUID=cee15eca-5b2e-48ad-9735-eae5ac14bc90 ninth swap sw 0 0 # /dev/hda3 UUID=98E0-6D24 /media/dati vfat defaults, utf8, umask=007, uid=0, gid=46, car, rw, nouser 0 0 # /dev/hda4 UUID=0aa86c61-0df9-4f1a-8b0b-34abbee6b769/ext3 nouser, defaults, errors=remount-ro, atime, car, rw, dev, exec, suid 0 0 /dev/hdc /media/cdrom0 udf, iso9660 user, atime, noauto, rw, dev, exec, suid 0 0 }}} |
| Linea 50: | Linea 22: |
| # /dev/hda3 UUID=98E0-6D24 /media/dati vfat defaults,utf8,umask=007,uid=0,gid=46,auto,rw,nouser 0 0 |
Every commented line is not composed from six lives: |
| Linea 53: | Linea 24: |
| # /dev/hda1 UUID=12102C02102CEB83 /media/windows ntfs silent,umask=0,locale=it_IT.utf8 0 0 |
||<style="background-color: rgb(254, 183, 109); text-align: center;">'''Field''' ||<style="background-color: rgb(254, 183, 109); text-align: center;">'''Description''' || || rows system || it indicates the containing device the rows system || || mount point || it indicates the directory (or mount point) from which it will be possible to approach the content of the device (for the swap is not demanded the mount point) || || type || type of rows system || || options || options of access to the device (commando [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/ComandiBase&prev=/language_tools#mount mount]) || || dump || disattiva assets/the backup of filesystem (the commando '''dump'''). This option is obsolete. || || pass || disattiva assets/the control of coherence of the disc (commando '''fsck''') || |
| Linea 56: | Linea 32: |
| # /dev/hda2 UUID=cee15eca-5b2e-48ad-9735-eae5ac14bc90 none swap sw 0 0 |
|
| Linea 59: | Linea 33: |
| /dev/hdc /media/cdrom0 udf,iso9660 user,atime,noauto,rw,dev,exec,suid 0 0 }}} |
UUID UUID “Universally Unique Identifier” is used in the field of the software, translate in Italian language is not other that “Universal Only Identificatore”. Draft of a product realized from the Open Software Foundation (OSF) as it leave of system DCE. A UUID is essentially a 16-byte number (128-bit). |
| Linea 62: | Linea 36: |
| Si noti che ogni linea è composta da sei campi: | In the relative esadecimale shape a UUID can be similar this: 0aa86c61-0df9-4f1a-8c0b-34abbee6b769 |
| Linea 64: | Linea 38: |
| * <file system> indica il dispositivo che contiene un file system (tra cui il file system virtuale ''proc'' che permette di riassumere le informazioni generali del sistema) | Although the UUID does not guarantee a effective oneness, the possible number of combinations so is elevated to avoid one possible coincidence between two codes. The possible number of combination of the UUID is 2128 = 25616 = approximately 3.4 x 1038. That means that 1 trillion of UUID must be generates every nanosecond to you so that between 10 billions of years the UUID number is get exaustedded and to return to regenerate the same UUID. |
| Linea 66: | Linea 40: |
| * <mount point> indica la directory, o mount point, in cui sarà possibile accedere al contenuto dei dispositivi (da notare che per la swap non è richiesto il mount point) | Inside of the {{{/etc/fstab}}} rows the peripheral ones come identified referenziate from just the '''Universally Unified IDentifier''', a particular identificativo number univoco. |
| Linea 68: | Linea 42: |
| * <type> indica il tipo di file system (i file system supportati si possono vedere da shell attraverso {{{man fstab}}}) | An example of line of {{{fstab}}}: |
| Linea 70: | Linea 44: |
| * <options> indica le opzioni che regolano l'accesso al dispositivo (le opzioni si possono vedere da shell attraverso {{{man mount}}}) | {{{ # /dev/sda1 UUID=98E0-6D24 /media/dati vfat defaults, utf8, umask=007, uid=0, gid=46, car, rw, nouser 0 0 }}} |
| Linea 72: | Linea 47: |
| * <dump> indica se il dispositivo deve essere usato dal comando dump per farne dei backup (0 disattivato, 1 attivato) | In order to visualize the UUID of a disc to inside digitare the following commando of a window of they finishes: |
| Linea 74: | Linea 49: |
| * <pass> indica se il dispositivo deve essere controllato dal comando fsck, nell'ordine da 1 in poi (0 disattivato) | {{{ sudo vol_id - u /dev/xxxx }}} To the dicitura “/dev/xxxx” it goes replaced the reference to the peripheral one of which it is desired to know the UUID (i.e. “/dev/sda1”, “/dev/hda3” etc). Ulterior resources * [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/Hardware/DispositiviPartizioni&prev=/language_tools DispositiviPartizioni] |
| Linea 77: | Linea 58: |
| CategoryHomepage | [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/CategoryAmministrazione&prev=/language_tools CategoryAmministrazione] |
||<tablestyle="margin: 0pt 0pt 1em 1em; background: rgb(241, 241, 237) none repeat scroll 0% 50%; float: right; font-size: 0.9em; width: 25%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"style="padding: 0.5em;">Index ||
- Introduction
The rows of /etc/fstab configuration contain the necessary information to the assembly of the peripheral ones of memorization of the system. Such rows come read to the start of the system and can be modified solo from the customer [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/Sudo&prev=/language_tools root].
- Contained of the rows
It is possible to visualize such rows with the being followed commando:
cat /etc/fstab
The result of the previous commando will be similar to following:
# /etc/fstab: static rows system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/hda1 UUID=12102C02102CEB83 /media/windows ntfs silent, umask=0, locale=it_IT.utf8 0 0 # /dev/hda2 UUID=cee15eca-5b2e-48ad-9735-eae5ac14bc90 ninth swap sw 0 0 # /dev/hda3 UUID=98E0-6D24 /media/dati vfat defaults, utf8, umask=007, uid=0, gid=46, car, rw, nouser 0 0 # /dev/hda4 UUID=0aa86c61-0df9-4f1a-8b0b-34abbee6b769/ext3 nouser, defaults, errors=remount-ro, atime, car, rw, dev, exec, suid 0 0 /dev/hdc /media/cdrom0 udf, iso9660 user, atime, noauto, rw, dev, exec, suid 0 0
Every commented line is not composed from six lives:
Field |
Description |
rows system |
it indicates the containing device the rows system |
mount point |
it indicates the directory (or mount point) from which it will be possible to approach the content of the device (for the swap is not demanded the mount point) |
type |
type of rows system |
options |
options of access to the device (commando [http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/ComandiBase&prev=/language_tools#mount mount]) |
dump |
disattiva assets/the backup of filesystem (the commando dump). This option is obsolete. |
pass |
disattiva assets/the control of coherence of the disc (commando fsck) |
- UUID
UUID “Universally Unique Identifier” is used in the field of the software, translate in Italian language is not other that “Universal Only Identificatore”. Draft of a product realized from the Open Software Foundation (OSF) as it leave of system DCE. A UUID is essentially a 16-byte number (128-bit).
In the relative esadecimale shape a UUID can be similar this: 0aa86c61-0df9-4f1a-8c0b-34abbee6b769
Although the UUID does not guarantee a effective oneness, the possible number of combinations so is elevated to avoid one possible coincidence between two codes. The possible number of combination of the UUID is 2128 = 25616 = approximately 3.4 x 1038. That means that 1 trillion of UUID must be generates every nanosecond to you so that between 10 billions of years the UUID number is get exaustedded and to return to regenerate the same UUID.
Inside of the /etc/fstab rows the peripheral ones come identified referenziate from just the Universally Unified IDentifier, a particular identificativo number univoco.
An example of line of fstab:
# /dev/sda1 UUID=98E0-6D24 /media/dati vfat defaults, utf8, umask=007, uid=0, gid=46, car, rw, nouser 0 0
In order to visualize the UUID of a disc to inside digitare the following commando of a window of they finishes:
sudo vol_id - u /dev/xxxx
To the dicitura “/dev/xxxx” it goes replaced the reference to the peripheral one of which it is desired to know the UUID (i.e. “/dev/sda1”, “/dev/hda3” etc).
- Ulterior resources
[http://66.249.91.104/translate_c?hl=it&ie=UTF-8&oe=UTF-8&langpair=it|en&u=http://wiki.ubuntu-it.org/Hardware/DispositiviPartizioni&prev=/language_tools DispositiviPartizioni]
