Pagina 1 di 1
Hardisk
Inviato: martedì 21 aprile 2009, 0:23
da DevilSamus
Ciao a tutti sono nuovissimo di Ubuntu. Spiego in breve: ho fatto una partizione del mio pc dove era gia' presente vista ed adesso ho fatto un 50 e 50 tra i due per avere un trapasso graduale. Per ora non ho avuto grossi problemi a parte per il fatto che quando tento di accedere ai file che possiedo gia' su vista pare che ci siano errori (probabilmente nei passaggi). Il procedimento che faccio è il logico: places>computer>hp (c) chiede la password e mi da:
Cannot mount volume.
DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
ho provato anche con un hardisk esterno e mi da lo stesso identico messaggio (se serve faccio anche qualche scree) qualcuno sa aiutarmi?
Re: Hardisk
Inviato: martedì 21 aprile 2009, 0:27
da badìl
Riavvia una volta con windows e poi riprova.
Di solito succede coi dischi NTFS quando non sono stati chiusi correttamente.
Re: Hardisk
Inviato: martedì 21 aprile 2009, 0:32
da dani.deb
vista ti riparte bene?
come hai ridimensionato la partizione di vista? da vista o da gparted?
Re: Hardisk
Inviato: martedì 21 aprile 2009, 15:40
da DevilSamus
ho ridimensionato con gparted, o meglio l'han fatto degli amici che usano ubuntu gia' da un pezzo e mi han fatto le cose per bene. Vista mi parte benissimo ma l'hard disk interno non mi ci fa accedere (o meglio solo la "parte" con la roba su vista, perchè per il resto posso salvare tutto quello che voglio sul lato ubuntu). E neanche all'hardisk esterno non mi ci fa accedere.
Re: Hardisk
Inviato: martedì 21 aprile 2009, 16:06
da badìl
Quindi hai già provato a riavviare?
allora posta questo
Re: Hardisk
Inviato: martedì 21 aprile 2009, 17:45
da DevilSamus
scusa l'ignoranza ma non sapendo bene dove andare ho digitato il codice su terminale e mi ha dato:
Usage: fdisk [-l] [-b SSZ] [-u] device
E.g.: fdisk /dev/hda (for the first IDE disk)
or: fdisk /dev/sdc (for the third SCSI disk)
or: fdisk /dev/eda (for the first PS/2 ESDI drive)
or: fdisk /dev/rd/c0d0 or: fdisk /dev/ida/c0d0 (for RAID devices)
era quello che mi hai chiesto?
Re: Hardisk
Inviato: martedì 21 aprile 2009, 18:43
da badìl
Re: Hardisk
Inviato: martedì 21 aprile 2009, 18:52
da DevilSamus
Disk /dev/sda: 640.1 GB, 640135028736 bytes
255 heads, 63 sectors/track, 77825 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x1549f232
Device Boot Start End Blocks Id System
/dev/sda1 * 1 53587 430432428 7 HPFS/NTFS
/dev/sda2 76315 77825 12137107+ 7 HPFS/NTFS
/dev/sda3 53588 76314 182554627+ 5 Extended
/dev/sda5 53588 57503 31455238+ 83 Linux
/dev/sda6 75713 76314 4835533+ 82 Linux swap / Solaris
/dev/sda7 57504 75712 146263761 83 Linux
Partition table entries are not in disk order
Disk /dev/sdb: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x454c1f6c
Device Boot Start End Blocks Id System
/dev/sdb1 1 38913 312568641 7 HPFS/NTFS
Re: Hardisk
Inviato: martedì 21 aprile 2009, 18:57
da badìl
Nessuno di questi si monta?
sda1, sda2 e sdb1
Re: Hardisk
Inviato: martedì 21 aprile 2009, 19:01
da DevilSamus
no nessuno mi dice "Cannot mount volume. Unable to mount the volume 'LaCie' " (lacie è il nome dell'hardisk esterno) stesso vale per quando cerco di montare quello interno
Re: Hardisk
Inviato: martedì 21 aprile 2009, 19:10
da badìl
allora creiamo i tre punti di montaggio
Codice: Seleziona tutto
sudo mkdir /media/windows
sudo mkdir /media/dati
sudo mkdir /media/LaCie
poi forziamo il montaggio
Codice: Seleziona tutto
sudo mount /dev/sda1 /media/windows -t ntfs-3g -o force
sudo mount /dev/sda2 /media/dati -t ntfs-3g -o force
sudo mount /dev/sdb1 /media/LaCie -t ntfs-3g -o force
Ovviamente i punti di mount (cioè quello dopo /media) li puoi cambiare con quello che preferisci, basta che poi metti lo stesso nei comandi per montarli (quelli sudo mount), facendo attenzione a maiuscole minuscole.
Re: Hardisk
Inviato: martedì 21 aprile 2009, 19:24
da DevilSamus
allora mentre aspettavo stavo girando un po' ed ho trovato il comando per forzare il montaggio ed immettendolo mi da:
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
la directory gia' esiste: mkdir: cannot create directory `/media/LaCie': File exists
ho provato anche con sudo mount -t ntfs-3g /dev/sdb1 /media/LaCie --force ma mi da sempre il mex nella prima cit
Re: Hardisk
Inviato: martedì 21 aprile 2009, 20:22
da DevilSamus
ok ho risolto il problema... grazie cmq
Re: Hardisk
Inviato: martedì 21 aprile 2009, 21:20
da badìl
Ok, allora metti [Risolto] nel titolo del primo post.
I comandi che ti ho indicato erano appunto per forzare il montaggio.
