blob: 94cd78d0cdeab836f274642fc42fd0a695ce6577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
###############################################
Howto Remote filesystem in TCOS
###############################################
1.- Using LTSPFS
2.- Using SHFS
3.- Using SAMBA
4.- Using NFS
===================
1.- Using LTSPFS
===================
LTSPFS is a remote protocol to mount devices (or dirs)
into local filesystem.
LTSPFS use X-Windows autentication protocol.
(as root) # adduser USER fuse
(as $USER) $ mkdir $HOME/Desktop/Device
(as $USER) $ ltspfs terminal:/mnt/DEVICE/ $HOME/Desktop/Device
===================
2.- Using SHFS
===================
SHFS is a method to mount remote filesystem throught
ssh protocol.
Install:
In server, exec this:
# apt-get install module-assistant linux-headers-$(uname -r)
# m-a prepare
# m-a a-i fuse
# m-a a-i shfs
The shfs-module-2.x.x will install shfs-utils package,
set suid to YES when ask.
In user startup session add tcos-shfsmount
Gnome:
Click in System --> Preferences --> Sessions
In startup add "tcos-shfsmount"
KDE:
Add a symlink in .kde/Autostart/
ln -s /usr/bin/tcos-shfsmount /home/USERNAME/.kde/Autostart/
XFCE:
can use Desktop/Autostart/ folder same as kde or in xfce4.4
use the startups preferences dialog
To umount, and clean you can use something like this:
GDM:
You can add a line in /etc/gdm/PostSession/Default
after PATH declaration.
/usr/bin/tcos-shfsumount
KDM:
FIXME, not know
===================
3.- Using SAMBA
===================
FIXME, samba deprecated in TCOS
===================
4.- Using NFS
===================
FIXME, nfs write some info
|