Probleme de montage des vulumes
Résolu
mableo
Messages postés
38
Date d'inscription
Statut
Membre
Dernière intervention
-
mableo Messages postés 38 Date d'inscription Statut Membre Dernière intervention -
mableo Messages postés 38 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
alors voilamon probleme hier soir j'ai reformater mon pc en installant debian lenny(j'été sous etch et le probleme c'es que je ne pouvais pas changer mes sources liste)du coup j'ai tout remis a zero mon disc dur de 100 giga et partionner en 4
1 pour le swap
2 le systeme
3stockage en ext3
4stockage en fat32
avec etch tout fonctionner tres bien mais maintenant il me dis que c'es impossible de monter les volumes 3 et 4 ca que que j'ai pas les droits necessaire pour le faire du coup si quelqu'un pouvait me donner un coup de main ca serai cool merci demander ce que voulez si vous voulez des information necessaire
alors voilamon probleme hier soir j'ai reformater mon pc en installant debian lenny(j'été sous etch et le probleme c'es que je ne pouvais pas changer mes sources liste)du coup j'ai tout remis a zero mon disc dur de 100 giga et partionner en 4
1 pour le swap
2 le systeme
3stockage en ext3
4stockage en fat32
avec etch tout fonctionner tres bien mais maintenant il me dis que c'es impossible de monter les volumes 3 et 4 ca que que j'ai pas les droits necessaire pour le faire du coup si quelqu'un pouvait me donner un coup de main ca serai cool merci demander ce que voulez si vous voulez des information necessaire
A voir également:
- Probleme de montage des vulumes
- Montage video windows - Guide
- Notice de montage pdf - Guide
- Logiciel photo montage - Télécharger - Montage photo
- Montage photo animaux humain gratuit - Télécharger - Trucages & Effets
- Photo montage gratuit et facile - Télécharger - Montage photo
12 réponses
Deja il faut que tu sois en root, soit en ouvrant un terminal administrateur et en entrant ton mdp root, soit en utilise sudo en prefixe de tes commandes. De plus il faut que tu associe des repertoire physique pour monter tes paritions (idéalement biensur). Donc:
mkdir /mnt/ext3
mkdir /mnt/fat32
Ensuite utilises la commandes suivante pour être sur des volumes a monter :
fdisk -l
Cette dernière liste tous les volumes, il ne te reste plus qu'a reperer lesquel il s'agit via leur capacité et leur système de fichier.
Ensuite tu mount ces derniers :
mount /dev/hdXx /mnt/ext3
mount -t vfat /dev/hdXx /mnt/fat32
(a noté que sil s'agit d'un disque sur SATA le prefixe ne sera plus hd mais sd, de plus penses bien a remplacer 'Xx' par le suffixe que tu as noté auparavant correspondant a ton disque).
mkdir /mnt/ext3
mkdir /mnt/fat32
Ensuite utilises la commandes suivante pour être sur des volumes a monter :
fdisk -l
Cette dernière liste tous les volumes, il ne te reste plus qu'a reperer lesquel il s'agit via leur capacité et leur système de fichier.
Ensuite tu mount ces derniers :
mount /dev/hdXx /mnt/ext3
mount -t vfat /dev/hdXx /mnt/fat32
(a noté que sil s'agit d'un disque sur SATA le prefixe ne sera plus hd mais sd, de plus penses bien a remplacer 'Xx' par le suffixe que tu as noté auparavant correspondant a ton disque).
Ben c'est ce que je dis, faut être root:
Là il ne veut pas:
grunt@eeeGrunt:~$ mount -a
mount: only root can do that
Là il veut bien:
grunt@eeeGrunt:~$ sudo mount -a
grunt@eeeGrunt:~$
Et là aussi:
grunt@eeeGrunt:~$ su
Mot de passe :
eeeGrunt:/home/grunt# mount -a
eeeGrunt:/home/grunt#
Là il ne veut pas:
grunt@eeeGrunt:~$ mount -a
mount: only root can do that
Là il veut bien:
grunt@eeeGrunt:~$ sudo mount -a
grunt@eeeGrunt:~$
Et là aussi:
grunt@eeeGrunt:~$ su
Mot de passe :
eeeGrunt:/home/grunt# mount -a
eeeGrunt:/home/grunt#
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
je me me sui mis en root
j'ai tapernico:/home/alinico# mount-/dev/hda4
mais ca marche toujours pas je comprend pas
merci de m'aider je sui un peu novice sous linux
j'ai tapernico:/home/alinico# mount-/dev/hda4
mais ca marche toujours pas je comprend pas
merci de m'aider je sui un peu novice sous linux
voila ce que me donne man mount
NAME
mount - mount a file system
SYNOPSIS
mount [-lhV]
mount -a [-fFnrsvw] [-t vfstype] [-O optlist]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir
DESCRIPTION
All files accessible in a Unix system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out
over several devices. The mount command serves to attach the file system found on some device to the big file tree. Conversely, the
umount(8) command will detach it again.
The standard form of the mount command, is
mount -t type device dir
This tells the kernel to attach the file system found on device (which is of type type) at the directory dir. The previous contents
(if any) and owner and mode of dir become invisible, and as long as this file system remains mounted, the pathname dir refers to the
root of the file system on device.
Three forms of invocation do not actually mount anything:
mount -h
prints a help message;
mount -V
prints a version string; and just
mount [-l] [-t type]
lists all mounted file systems (of type type). The option -l adds the (ext2, ext3 and XFS) labels in this listing. See below.
Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is
mount --bind olddir newdir
After this call the same contents is accessible in two places. One can also remount a single file (on a single file).
This call attaches only (part of) a single filesystem, not possible submounts. The entire file hierarchy including submounts is
attached a second place using
mount --rbind olddir newdir
Note that the filesystem mount options will remain the same as those on the original mount point, and cannot be changed by passing
the -o option along with --bind/--rbind.
Since Linux 2.5.1 it is possible to atomically move a mounted tree to another place. The call is
Manual page mount(8) line 1
NAME
mount - mount a file system
SYNOPSIS
mount [-lhV]
mount -a [-fFnrsvw] [-t vfstype] [-O optlist]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir
DESCRIPTION
All files accessible in a Unix system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out
over several devices. The mount command serves to attach the file system found on some device to the big file tree. Conversely, the
umount(8) command will detach it again.
The standard form of the mount command, is
mount -t type device dir
This tells the kernel to attach the file system found on device (which is of type type) at the directory dir. The previous contents
(if any) and owner and mode of dir become invisible, and as long as this file system remains mounted, the pathname dir refers to the
root of the file system on device.
Three forms of invocation do not actually mount anything:
mount -h
prints a help message;
mount -V
prints a version string; and just
mount [-l] [-t type]
lists all mounted file systems (of type type). The option -l adds the (ext2, ext3 and XFS) labels in this listing. See below.
Since Linux 2.4.0 it is possible to remount part of the file hierarchy somewhere else. The call is
mount --bind olddir newdir
After this call the same contents is accessible in two places. One can also remount a single file (on a single file).
This call attaches only (part of) a single filesystem, not possible submounts. The entire file hierarchy including submounts is
attached a second place using
mount --rbind olddir newdir
Note that the filesystem mount options will remain the same as those on the original mount point, and cannot be changed by passing
the -o option along with --bind/--rbind.
Since Linux 2.5.1 it is possible to atomically move a mounted tree to another place. The call is
Manual page mount(8) line 1
Oui c'est tout a fait normal, il s'agit d'un montage manuel, pour que cela se charge au démarrage, il faut modifier le fichier /etc/fstab et rajouter :
/dev/hdXx /mnt/ton_repertoire ext3 defaults 0 0
/dev/hdXx /mnt/ton_repertoire vfat defaults 0 0
Voila :)
/dev/hdXx /mnt/ton_repertoire ext3 defaults 0 0
/dev/hdXx /mnt/ton_repertoire vfat defaults 0 0
Voila :)
Si c'est tout a fait normal, il s'agit d'un montage manuel, pour monter continuellement ton volume et l'avoir a chaque démarrage, il faut modifier ton fichier /etc/fstab et rajouter :
/dev/hdXx /mnt/ton_rep ext3 defaults 0 0
/dev/hdXx /mnt/ton_rep vfat defaults 0 0
/dev/hdXx /mnt/ton_rep ext3 defaults 0 0
/dev/hdXx /mnt/ton_rep vfat defaults 0 0
si tu as une solution