Πρόβλημα με Torrent Clients [ΛΥΘΗΚΕ]

...browsers, email, downloads, torrents, κλπ (όχι προβλήματα καρτών εδώ)

Συντονιστής: the_eye

Πρόβλημα με Torrent Clients [ΛΥΘΗΚΕ]

Δημοσίευσηαπό cacofonix » 19 Νοέμ 2008, 13:45

Καλημέρα,
Εχω χωρίσει τον δίσκο σε 4 partition,


Device Boot Start End Blocks Id System
/dev/sda1 1 522 4192933+ 82 Linux swap / Solaris
/dev/sda2 * 523 8863 66999082+ 7 HPFS/NTFS
/dev/sda3 8864 11313 19679625 83 Linux
/dev/sda4 11314 12161 6811560 7 HPFS/NTFS


Στον μεγάλο NTFS έχω τα δεδομένα, ενώ στον μικρό τα XP.
Το πρόβλημα είναι, ότι μόλις κάνω restart τον υπολογιστή, ο Torrent Client (είτε deluge, είτε KTorrent) χάνει τις ρυθμίσεις ή δεν βρίσκει το
/media/disk/Torrents.
Τι μπορεί να συμβαίνει; Υπάρχει τρόπος να το λύσω, ή θα πρέπει να δώσω σαν αποθηκευτικό χώρο το sda1;
Τελευταία επεξεργασία από cacofonix και 22 Νοέμ 2008, 19:00, έχει επεξεργασθεί 1 φορά/ες συνολικά
Εικόνα
ΑΡΗΣ και δεν είμαι καλά...
cacofonix
babeTUX
babeTUX
 
Δημοσιεύσεις: 46
Εγγραφή: 06 Νοέμ 2008, 19:01
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό ftso » 19 Νοέμ 2008, 13:51

Μήπως δεν γίνονται αυτόματα mount?
Δώσε τα αποτελέσματα:
Κώδικας: Επιλογή όλων
ls /dev/disk/by-uuid/ -n


και

Κώδικας: Επιλογή όλων
cat /etc/fstab
Άβαταρ μέλους
ftso
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 6409
Εγγραφή: 12 Μάιος 2008, 13:40
Τοποθεσία: Αθήνα
IRC: ftso
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό cacofonix » 19 Νοέμ 2008, 14:22

Κώδικας: Επιλογή όλων
cacofonix@innovator:~$ ls /dev/disk/by-uuid/ -n
total 0
lrwxrwxrwx 1 0 0 10 2008-11-19 14:28 1ad33cd1-5209-4b6d-8e29-7c814a997373 -> ../../sda1
lrwxrwxrwx 1 0 0 10 2008-11-19 14:28 30B48270B48237FC -> ../../sda2
lrwxrwxrwx 1 0 0 10 2008-11-19 14:28 a2a12621-ce2e-4e4b-ae3c-3565f3686946 -> ../../sda3
lrwxrwxrwx 1 0 0 10 2008-11-19 14:28 FC70E95B70E91CE0 -> ../../sda4
cacofonix@innovator:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda3
UUID=a2a12621-ce2e-4e4b-ae3c-3565f3686946 / ext3 relatime,errors=remount-ro 0 1
# /dev/sda1
UUID=1ad33cd1-5209-4b6d-8e29-7c814a997373 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
cacofonix@innovator:~$




Τι είναι το mount;
Εικόνα
ΑΡΗΣ και δεν είμαι καλά...
cacofonix
babeTUX
babeTUX
 
Δημοσιεύσεις: 46
Εγγραφή: 06 Νοέμ 2008, 19:01
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό linuxman » 19 Νοέμ 2008, 15:13

Mount είναι προσάρτηση δίσκου ( η τον κατατμήσεων στο σύστημα )
Στο τερματικό εάν δώσεις το
Κώδικας: Επιλογή όλων
man mount
θα πάρεις κάπως έτσι
Κώδικας: Επιλογή όλων

MOUNT(8) Linux Programmer’s Manual MOUNT(8)

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. Con‐
versely, 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 con‐
tents (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 pass‐
ing 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
mount --move olddir newdir


Τα υπόλοιπα μπορείς να τα διαβάσεις .
Οδηγίες προς Νεοεισερχόμενους
1 Γνώσεις Linux: Πολύ καλό ┃ Προγραμματισμού: Ικανοποιητικό ┃ Αγγλικών: Ικανοποιητικό
2 Linux Mint 17.1 Rebecca 3.13.0-37-generic 64bit (el_GR.UTF-8, X-Cinnamon cinnamon)
3 Intel Core i5-2310M CPU @ 2.10GHz ‖ RAM 3866 MiB ‖ Dell Inc. 0D7C51 - Dell Inc. Dell System Vostro 3750
4 Intel 2nd Generation Core Processor Family Integrated Graphics [8086:0116] {i915}
5 wlan0: Intel Centrino Wireless-N 1030 [Rainbow Peak] [8086:008a] (rev 34) ⋮ eth0: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 06)
http://www.greeklug.gr
Άβαταρ μέλους
linuxman
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 10378
Εγγραφή: 10 Μάιος 2008, 20:41
Τοποθεσία: Thessaloniki / Macedonia / Greece
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό ftso » 19 Νοέμ 2008, 15:18

Ναι, γίνετε αυτό που είπα...

Δες τον οδηγό εδώ (viewtopic.php?f=9&t=999)
ώστε να προσθέσεις την κατάτμησή σου στο fstab.

Ότι απορία έχει ρωτάς...

Αυτά :)
Άβαταρ μέλους
ftso
Επίτιμο μέλος
Επίτιμο μέλος
 
Δημοσιεύσεις: 6409
Εγγραφή: 12 Μάιος 2008, 13:40
Τοποθεσία: Αθήνα
IRC: ftso
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό cacofonix » 19 Νοέμ 2008, 15:21

Ok, θα τα δω το βράδυ. Ευχαριστώ.
Εικόνα
ΑΡΗΣ και δεν είμαι καλά...
cacofonix
babeTUX
babeTUX
 
Δημοσιεύσεις: 46
Εγγραφή: 06 Νοέμ 2008, 19:01
Εκτύπωση

Re: Πρόβλημα με Torrent Clients

Δημοσίευσηαπό cacofonix » 22 Νοέμ 2008, 19:00

Τελικά το πρόβλημα είχε προκύψει από το mount. Θα διαβάσω κάποια στιγμή και αν έχω πρόβλημα θα σας ξαναενοχλήσω. Ευχαριστώ πολύ πάντως.
Εικόνα
ΑΡΗΣ και δεν είμαι καλά...
cacofonix
babeTUX
babeTUX
 
Δημοσιεύσεις: 46
Εγγραφή: 06 Νοέμ 2008, 19:01
Εκτύπωση


  • ΣΧΕΤΙΚΑ ΘΕΜΑΤΑ
    ΑΠΑΝΤΗΣΕΙΣ
    ΠΡΟΒΟΛΕΣ
    ΣΥΓΓΡΑΦΕΑΣ

Επιστροφή στο Εφαρμογές για Internet