[Debian 3.1] rechten /var

Pagina: 1
Acties:

  • lordgandalf
  • Registratie: Februari 2002
  • Laatst online: 13-02 15:00
Hallo ik zit met het volgende probleem.
Ik was bezig met mambo en kreeg het niet aan de praat dat ik modules kon installeren hij kon niet schrijven in de dir /var/www/mabo/.....
dus ik denk dan doen ik chown www-data:www-data * in de dir van mambo en dan zouw het moeten werken maar nee hoor
Dus denk ik dan doe ik chown www-data:www-data op de hele /var/www dir maar nu heb ik per ongeluk ipv. chown www-data:www-data www/ heb ik chown www-data:www-data * gedaan en nu is mijn hele var dir dus eigendom geworden van www-data en dat is niet de bedoeling is hier een makkelijke oplossing voor of wordt het reinstallen van debian
of kan iemand mij een output van zijn /var leveren van een debian 3.1/unstable bak leveren dat ik het handmatig kan fixen

Update:
Heb even op mun red hat 9 systeempje gekeken in vmware en daar is alles in /var eigendom van root en de groep root is dit in debian ook zo ???

heb nu de map naar root verandert en wat andere dingen weer terug verandert naar de eigenaars die ik zo kon terug vinden maar is het belangrijk dat de owners in de var map goed staan of maakt dat niet uit ???

[ Voor 21% gewijzigd door lordgandalf op 30-09-2004 16:59 ]

Steam: Profile / Socialclub: Profile / Uplay: minedwarf / Origin: lordgandalf3


  • DiedX
  • Registratie: December 2000
  • Laatst online: 15-02 12:43
erm, dit is wel een mooi probleem...

aan NOS: is het een idee om een rechtenstructuur te geven, of hebben jullie een ander idee?

DiedX supports the Roland™, Sound Blaster™ and Ad Lib™ sound cards


  • lordgandalf
  • Registratie: Februari 2002
  • Laatst online: 13-02 15:00
ja ik weet het het was dom om het te doen maar voordat ik het door had had ik al op enter gerost gelukkig is het maar een test server en zouw het niet erg zijn als ik um zouw moeten installen maar toch als ik het gefixed zouw kunnen krijgen dan zouw dat wel makkelijker zijn.

en ik heb even gekeken naar een redhat 9 sys en daar staat alles als root in de var dir op een paar dirs na dus mijn vraag nu is of dat zo ook bij debian is of dat debian weer een iets andere rechten structuur heeft.
zover ik weet is er niks wat niet meer werkt teminste heb op dit moment nog geen problemen ondervonden

Steam: Profile / Socialclub: Profile / Uplay: minedwarf / Origin: lordgandalf3


  • PowerSp00n
  • Registratie: Februari 2002
  • Laatst online: 17-11-2025

PowerSp00n

There is no spoon

lordgandalf schreef op 30 september 2004 @ 16:49:
heb nu de map naar root verandert en wat andere dingen weer terug verandert naar de eigenaars die ik zo kon terug vinden maar is het belangrijk dat de owners in de var map goed staan of maakt dat niet uit ???
Omdat je nu www-data owner hebt gemaakt van alle files/folders in /var heeft deze gebruiker de mogelijkheid om dus aan deze files te kliederen. Daar komt nog eens bij dat (neem ik aan) je webserver onder de user www-data draait wat tot gevolg heeft dat alle scripts die onder deze user draaien bij deze files kunnen en deze files ook kunnen aanpassen.

Verder kun je problemen verwachten van services die niet als root user draaien en bij data moeten die te vinden is onder /var hier niet meer bij kan (dan wel lezen en/of schrijven). Maar dit laatste zul je waarschijnlijk wel snel genoeg merken :).

Dat is in ieder geval een _begin_ waar je rekening mee moet houden als je het nu zo laat zoals het is...

  • Gertjan
  • Registratie: Oktober 2001
  • Laatst online: 07-02 20:23

Gertjan

mmmm, beer...

Zie de reply van powersp00n, tis inderdaad wel van belang om die ownerships goed te krijgen. Ik wil je wel een bestandje toesturen met de rechten zoals die bij mij zijn, Debian testing. Laat maar ff weten.

/edit
ik zie dat je zelf geen emailadres in je profile hebt staan, laat hem ff weten als ik je het bestand toe moet sturen

[ Voor 24% gewijzigd door Gertjan op 30-09-2004 19:31 ]


  • Zwerver
  • Registratie: Februari 2001
  • Niet online
@DiedX

ik zie er geen probleem in als je een debian /var rechten structuur hier neergooit hoor ;)

Woonachtig Down Under. Ik negeer je insults niet, maar tegen de tijd dat ik ze lees zijn ze meestal niet relevant meer


  • Gertjan
  • Registratie: Oktober 2001
  • Laatst online: 07-02 20:23

Gertjan

mmmm, beer...

Zwerver schreef op 30 september 2004 @ 19:36:
@DiedX
ik zie er geen probleem in als je een debian /var rechten structuur hier neergooit hoor ;)
Ok, zelf om gevraagd >:) ;)

code:
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
.
|-- [root     root    ]  backups
|-- [root     root    ]  cache
|   |-- [www-data www-data]  apache
|   |-- [www-data www-data]  apache2
|   |   `-- [www-data www-data]  proxy
|   |-- [root     root    ]  apt
|   |   `-- [root     root    ]  archives
|   |       `-- [root     root    ]  partial
|   |-- [root     root    ]  debconf
|   |-- [root     root    ]  dictionaries-common
|   |-- [root     root    ]  locate
|   |-- [man      root    ]  man
|   |   |-- [man      root    ]  X11R6
|   |   |   `-- [man      root    ]  cat7
|   |   |-- [man      root    ]  cat1
|   |   |-- [man      root    ]  cat2
|   |   |-- [man      root    ]  cat3
|   |   |-- [man      root    ]  cat4
|   |   |-- [man      root    ]  cat5
|   |   |-- [man      root    ]  cat6
|   |   |-- [man      root    ]  cat7
|   |   |-- [man      root    ]  cat8
|   |   |-- [man      root    ]  cat9
|   |   |-- [man      root    ]  fsstnd
|   |   |-- [man      root    ]  local
|   |   |-- [man      root    ]  oldlocal
|   |   `-- [man      root    ]  opt
|   |-- [root     root    ]  samba
|   |   `-- [root     root    ]  printing
|   `-- [www-data www-data]  turck-mmcache
|-- [root     root    ]  lib
|   |-- [root     root    ]  apache
|   |   `-- [www-data www-data]  mod-bandwidth
|   |       |-- [www-data www-data]  link
|   |       `-- [www-data www-data]  master
|   |-- [root     root    ]  apache2
|   |-- [root     root    ]  apt
|   |   `-- [root     root    ]  lists
|   |       `-- [root     root    ]  partial
|   |-- [bin      bin     ]  courier
|   |-- [root     root    ]  cups
|   |   `-- [root     lpadmin ]  certs
|   |-- [root     root    ]  deborphan
|   |-- [root     root    ]  defoma
|   |   |-- [root     root    ]  fontconfig.d
|   |   |   |-- [root     root    ]  B
|   |   |   |-- [root     root    ]  C
|   |   |   |-- [root     root    ]  D
|   |   |   |-- [root     root    ]  N
|   |   |   |-- [root     root    ]  S
|   |   |   `-- [root     root    ]  U
|   |   |-- [root     root    ]  gs.d
|   |   |   `-- [root     root    ]  dirs
|   |   |       |-- [root     root    ]  CMap
|   |   |       `-- [root     root    ]  fonts
|   |   `-- [root     root    ]  scripts
|   |-- [root     root    ]  dhcp
|   |-- [root     root    ]  dpkg
|   |   |-- [root     root    ]  alternatives
|   |   |-- [root     root    ]  info
|   |   |-- [root     root    ]  methods
|   |   |   |-- [root     root    ]  disk
|   |   |   |-- [root     root    ]  floppy
|   |   |   `-- [root     root    ]  mnt
|   |   |-- [root     root    ]  parts
|   |   `-- [root     root    ]  updates
|   |-- [root     root    ]  fontconfig
|   |-- [root     root    ]  gallery
|   |   `-- [root     root    ]  setup
|   |-- [root     root    ]  ipac
|   |-- [root     root    ]  iptraf
|   |-- [root     root    ]  logrotate
|   |-- [root     list    ]  mailman
|   |   |-- [root     root    ]  Mailman -> /usr/lib/mailman/Mailman
|   |   |-- [root     list    ]  archives
|   |   |   |-- [root     list    ]  private
|   |   |   |   |-- [root     list    ]  flat
|   |   |   |   |   |-- [list     list    ]  2004-August
|   |   |   |   |   |-- [list     list    ]  2004-July
|   |   |   |   |   |-- [list     list    ]  2004-June
|   |   |   |   |   |-- [list     list    ]  2004-May
|   |   |   |   |   |-- [list     list    ]  2004-September
|   |   |   |   |   |-- [list     list    ]  attachments
|   |   |   |   |   |   `-- [list     list    ]  20040927
|   |   |   |   |   |       `-- [list     list    ]  d1252e35
|   |   |   |   |   `-- [list     list    ]  database
|   |   |   |   |-- [root     list    ]  flat.mbox
|   |   |   |   |-- [root     list    ]  mailman
|   |   |   |   |-- [root     list    ]  mailman.mbox
|   |   |   |   |-- [root     list    ]  mis
|   |   |   |   |   |-- [list     list    ]  2004
|   |   |   |   |   |-- [list     list    ]  attachments
|   |   |   |   |   |   |-- [list     list    ]  20040902
|   |   |   |   |   |   |   |-- [list     list    ]  0f3c1dc6
|   |   |   |   |   |   |   `-- [list     list    ]  f72c0fe8
|   |   |   |   |   |   |-- [list     list    ]  20040905
|   |   |   |   |   |   |   |-- [list     list    ]  08495fd2
|   |   |   |   |   |   |   |-- [list     list    ]  1e08d3a8
|   |   |   |   |   |   |   |-- [list     list    ]  3897edd4
|   |   |   |   |   |   |   `-- [list     list    ]  e8819bb7
|   |   |   |   |   |   |-- [list     list    ]  20040906
|   |   |   |   |   |   |   |-- [list     list    ]  5767a6c7
|   |   |   |   |   |   |   |-- [list     list    ]  9afd0074
|   |   |   |   |   |   |   `-- [list     list    ]  e36ad18a
|   |   |   |   |   |   |-- [list     list    ]  20040907
|   |   |   |   |   |   |   |-- [list     list    ]  1a1621b3
|   |   |   |   |   |   |   |-- [list     list    ]  b2952d6f
|   |   |   |   |   |   |   `-- [list     list    ]  fd117083
|   |   |   |   |   |   |-- [list     list    ]  20040908
|   |   |   |   |   |   |   |-- [list     list    ]  576a6481
|   |   |   |   |   |   |   |-- [list     list    ]  8999eb68
|   |   |   |   |   |   |   `-- [list     list    ]  907671b4
|   |   |   |   |   |   |-- [list     list    ]  20040910
|   |   |   |   |   |   |   |-- [list     list    ]  9bb5e7d3
|   |   |   |   |   |   |   |-- [list     list    ]  bd8f2e9d
|   |   |   |   |   |   |   |-- [list     list    ]  bf20677d
|   |   |   |   |   |   |   `-- [list     list    ]  f5a14593
|   |   |   |   |   |   |-- [list     list    ]  20040912
|   |   |   |   |   |   |   |-- [list     list    ]  c53db202
|   |   |   |   |   |   |   `-- [list     list    ]  ecdf3360
|   |   |   |   |   |   |-- [list     list    ]  20040913
|   |   |   |   |   |   |   |-- [list     list    ]  119ce91d
|   |   |   |   |   |   |   |-- [list     list    ]  211481fa
|   |   |   |   |   |   |   |-- [list     list    ]  2be90fca
|   |   |   |   |   |   |   |-- [list     list    ]  378f0e23
|   |   |   |   |   |   |   |-- [list     list    ]  48d82752
|   |   |   |   |   |   |   |-- [list     list    ]  5bf2ce17
|   |   |   |   |   |   |   |-- [list     list    ]  627bd414
|   |   |   |   |   |   |   `-- [list     list    ]  a72e0e6a
|   |   |   |   |   |   |-- [list     list    ]  20040915
|   |   |   |   |   |   |   |-- [list     list    ]  19e534d7
|   |   |   |   |   |   |   |-- [list     list    ]  39cb2bc4
|   |   |   |   |   |   |   |-- [list     list    ]  759fa790
|   |   |   |   |   |   |   |-- [list     list    ]  a6f56013
|   |   |   |   |   |   |   |-- [list     list    ]  d57d1179
|   |   |   |   |   |   |   |-- [list     list    ]  f560a2a0
|   |   |   |   |   |   |   `-- [list     list    ]  fa13124c
|   |   |   |   |   |   |-- [list     list    ]  20040916
|   |   |   |   |   |   |   |-- [list     list    ]  15143661
|   |   |   |   |   |   |   |-- [list     list    ]  8c375b7a
|   |   |   |   |   |   |   |-- [list     list    ]  e6430ac3
|   |   |   |   |   |   |   `-- [list     list    ]  e79782b7
|   |   |   |   |   |   |-- [list     list    ]  20040917
|   |   |   |   |   |   |   |-- [list     list    ]  20edeadc
|   |   |   |   |   |   |   |-- [list     list    ]  3e1ccef4
|   |   |   |   |   |   |   `-- [list     list    ]  870afaca
|   |   |   |   |   |   |-- [list     list    ]  20040919
|   |   |   |   |   |   |   |-- [list     list    ]  2cff2f48
|   |   |   |   |   |   |   `-- [list     list    ]  431544bb
|   |   |   |   |   |   |-- [list     list    ]  20040920
|   |   |   |   |   |   |   |-- [list     list    ]  0a657a0f
|   |   |   |   |   |   |   |-- [list     list    ]  1130d1a5
|   |   |   |   |   |   |   |-- [list     list    ]  5785f40b
|   |   |   |   |   |   |   |-- [list     list    ]  5b2df013
|   |   |   |   |   |   |   |-- [list     list    ]  6f76ad5b
|   |   |   |   |   |   |   |-- [list     list    ]  bf313096
|   |   |   |   |   |   |   `-- [list     list    ]  c5596627
|   |   |   |   |   |   |-- [list     list    ]  20040921
|   |   |   |   |   |   |   |-- [list     list    ]  042627a0
|   |   |   |   |   |   |   |-- [list     list    ]  377ad0bf
|   |   |   |   |   |   |   |-- [list     list    ]  68f25a07
|   |   |   |   |   |   |   |-- [list     list    ]  6d507f4d
|   |   |   |   |   |   |   `-- [list     list    ]  d31f3cd1
|   |   |   |   |   |   |-- [list     list    ]  20040922
|   |   |   |   |   |   |   |-- [list     list    ]  00406ab3
|   |   |   |   |   |   |   |-- [list     list    ]  2402fb55
|   |   |   |   |   |   |   |-- [list     list    ]  4fde86fa
|   |   |   |   |   |   |   |-- [list     list    ]  50efbb9d
|   |   |   |   |   |   |   |-- [list     list    ]  812e9437
|   |   |   |   |   |   |   `-- [list     list    ]  9377e3cb
|   |   |   |   |   |   |-- [list     list    ]  20040923
|   |   |   |   |   |   |   `-- [list     list    ]  b0e5dea7
|   |   |   |   |   |   |-- [list     list    ]  20040927
|   |   |   |   |   |   |   |-- [list     list    ]  1b7ebb31
|   |   |   |   |   |   |   |-- [list     list    ]  2cc7e4d0
|   |   |   |   |   |   |   |-- [list     list    ]  a20e3c50
|   |   |   |   |   |   |   `-- [list     list    ]  fcc27b34
|   |   |   |   |   |   `-- [list     list    ]  20040928
|   |   |   |   |   |       |-- [list     list    ]  0116674f
|   |   |   |   |   |       `-- [list     list    ]  b5fcf861
|   |   |   |   |   `-- [list     list    ]  database
|   |   |   |   |-- [root     list    ]  mis.mbox
|   |   |   |   |-- [root     list    ]  scheenschavers
|   |   |   |   |   |-- [list     list    ]  2004-August
|   |   |   |   |   |-- [list     list    ]  2004-June
|   |   |   |   |   |-- [list     list    ]  2004-May
|   |   |   |   |   |-- [list     list    ]  2004-September
|   |   |   |   |   |-- [list     list    ]  attachments
|   |   |   |   |   |   |-- [list     list    ]  20040519
|   |   |   |   |   |   |   `-- [list     list    ]  43ef8af4
|   |   |   |   |   |   |-- [list     list    ]  20040917
|   |   |   |   |   |   |   `-- [list     list    ]  5341814a
|   |   |   |   |   |   `-- [list     list    ]  20040928
|   |   |   |   |   |       |-- [list     list    ]  215da8d4
|   |   |   |   |   |       |-- [list     list    ]  235a48ae
|   |   |   |   |   |       `-- [list     list    ]  85e64e70
|   |   |   |   |   `-- [list     list    ]  database
|   |   |   |   |-- [root     list    ]  scheenschavers.mbox
|   |   |   |   |-- [root     list    ]  selectie
|   |   |   |   |   |-- [list     list    ]  2004
|   |   |   |   |   |-- [list     list    ]  attachments
|   |   |   |   |   |   |-- [list     list    ]  20040628
|   |   |   |   |   |   |   |-- [list     list    ]  60231478
|   |   |   |   |   |   |   |-- [list     list    ]  bf7d0baa
|   |   |   |   |   |   |   `-- [list     list    ]  c6d6cf2c
|   |   |   |   |   |   |-- [list     list    ]  20040824
|   |   |   |   |   |   |   |-- [list     list    ]  04e5f74f
|   |   |   |   |   |   |   |-- [list     list    ]  155e2408
|   |   |   |   |   |   |   `-- [list     list    ]  15c24555
|   |   |   |   |   |   |-- [list     list    ]  20040825
|   |   |   |   |   |   |   |-- [list     list    ]  2c8eaf6e
|   |   |   |   |   |   |   `-- [list     list    ]  cb9d01fe
|   |   |   |   |   |   |-- [list     list    ]  20040830
|   |   |   |   |   |   |   |-- [list     list    ]  87ef7140
|   |   |   |   |   |   |   `-- [list     list    ]  c260e88f
|   |   |   |   |   |   |-- [list     list    ]  20040902
|   |   |   |   |   |   |   |-- [list     list    ]  ba094acc
|   |   |   |   |   |   |   `-- [list     list    ]  d87fee9e
|   |   |   |   |   |   |-- [list     list    ]  20040908
|   |   |   |   |   |   |   `-- [list     list    ]  275ebadd
|   |   |   |   |   |   `-- [list     list    ]  20040920
|   |   |   |   |   |       `-- [list     list    ]  afc45f79
|   |   |   |   |   `-- [list     list    ]  database
|   |   |   |   |-- [root     list    ]  selectie.mbox
|   |   |   |   |-- [root     list    ]  test
|   |   |   |   |   |-- [list     list    ]  2004-May
|   |   |   |   |   `-- [list     list    ]  database
|   |   |   |   `-- [root     list    ]  test.mbox
|   |   |   `-- [root     list    ]  public
|   |   |       |-- [root     list    ]  mailman -> /var/lib/mailman/archives/private/mailman
|   |   |       |-- [root     list    ]  selectie -> /var/lib/mailman/archives/private/selectie
|   |   |       `-- [root     list    ]  test -> /var/lib/mailman/archives/private/test
|   |   |-- [root     root    ]  bin -> /usr/lib/mailman/bin
|   |   |-- [root     root    ]  cgi-bin -> /usr/lib/cgi-bin/mailman
|   |   |-- [root     root    ]  cron -> /usr/lib/mailman/cron
|   |   |-- [root     list    ]  data
|   |   |-- [root     root    ]  icons -> /usr/share/images/mailman
|   |   |-- [root     list    ]  lists
|   |   |   |-- [root     list    ]  flat
|   |   |   |-- [root     list    ]  mailman
|   |   |   |-- [root     list    ]  mis
|   |   |   |-- [root     list    ]  scheenschavers
|   |   |   |   `-- [www-data list    ]  en
|   |   |   `-- [root     list    ]  selectie
|   |   |-- [root     root    ]  locks -> ../../lock/mailman
|   |   |-- [root     root    ]  logs -> ../../log/mailman
|   |   |-- [root     root    ]  mail -> /usr/lib/mailman/mail
|   |   |-- [root     list    ]  messages
|   |   |   |-- [root     list    ]  ca
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  cs
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  da
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  de
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  es
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  et
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  eu
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  fi
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  fr
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  hr
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  hu
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  it
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  ja
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  ko
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  lt
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  nl
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  no
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  pl
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  pt
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  pt_BR
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  ro
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  ru
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  sl
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  sr
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  sv
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   |-- [root     list    ]  tr
|   |   |   |   `-- [root     list    ]  LC_MESSAGES
|   |   |   `-- [root     list    ]  uk
|   |   |       `-- [root     list    ]  LC_MESSAGES
|   |   |-- [list     list    ]  qfiles
|   |   |   |-- [list     list    ]  archive
|   |   |   |-- [list     list    ]  bounces
|   |   |   |-- [list     list    ]  commands
|   |   |   |-- [nobody   list    ]  in
|   |   |   |-- [list     list    ]  news
|   |   |   |-- [list     list    ]  out
|   |   |   |-- [list     list    ]  retry
|   |   |   |-- [list     list    ]  shunt
|   |   |   `-- [root     list    ]  virgin
|   |   |-- [root     root    ]  scripts -> /usr/lib/mailman/scripts
|   |   |-- [root     list    ]  spam
|   |   |-- [root     root    ]  templates -> /etc/mailman
|   |   `-- [root     list    ]  tests
|   |       |-- [root     list    ]  bounces
|   |       `-- [root     list    ]  msgs
|   |-- [root     root    ]  misc
|   |-- [mysql    mysql   ]  mysql
|   |   |-- [mysql    mysql   ]  mysql
|   |   `-- [mysql    mysql   ]  spm
|   |-- [root     root    ]  php4
|   |-- [root     root    ]  postgres
|   |   `-- [root     root    ]  dumpall
|   |-- [root     root    ]  samba
|   |   `-- [root     root    ]  printers
|   |       |-- [root     root    ]  W32X86
|   |       `-- [root     root    ]  WIN40
|   |-- [root     root    ]  setserial
|   |-- [root     root    ]  squirrelmail
|   |   `-- [root     www-data]  data
|   |-- [svn      svn     ]  subversion
|   |   |-- [svn      svn     ]  mis
|   |   |   |-- [svn      svn     ]  conf
|   |   |   |-- [svn      svn     ]  dav
|   |   |   |-- [svn      svn     ]  db
|   |   |   |-- [svn      svn     ]  hooks
|   |   |   `-- [svn      svn     ]  locks
|   |   `-- [svn      svn     ]  spm
|   |       |-- [svn      svn     ]  conf
|   |       |-- [svn      svn     ]  dav
|   |       |-- [svn      svn     ]  db
|   |       |-- [svn      svn     ]  hooks
|   |       `-- [svn      svn     ]  locks
|   |-- [root     root    ]  ucf
|   |   `-- [root     root    ]  cache
|   `-- [root     root    ]  urandom
|-- [root     staff   ]  local
|-- [root     root    ]  lock
|   |-- [www-data root    ]  apache2
|   `-- [list     list    ]  mailman
|-- [root     root    ]  log
|   |-- [root     root    ]  apache
|   |-- [root     root    ]  apache2
|   |-- [root     root    ]  cups
|   |   |-- [root     root    ]  oud
|   |   |   `-- [nobody   nogroup ]  job_info
|   |   |       `-- [nobody   nogroup ]  job_info
|   |   `-- [root     root    ]  pl
|   |-- [root     root    ]  debian-installer
|   |   `-- [root     root    ]  cdebconf
|   |-- [root     root    ]  iptraf
|   |-- [root     root    ]  ksymoops
|   |-- [root     list    ]  mailman
|   |-- [mysql    adm     ]  mysql
|   |-- [news     news    ]  news
|   |-- [root     root    ]  proftpd
|   `-- [root     adm     ]  samba
|-- [root     mail    ]  mail
|-- [root     root    ]  opt
|-- [root     root    ]  run
|   |-- [root     root    ]  apache2
|   |-- [daemon   daemon  ]  courier
|   |   `-- [daemon   daemon  ]  authdaemon
|   |-- [root     root    ]  cups
|   |-- [identd   nogroup ]  identd
|   |-- [root     root    ]  iptraf
|   |-- [list     list    ]  mailman
|   |-- [mysql    root    ]  mysqld
|   |-- [root     root    ]  proftpd
|   |-- [root     root    ]  samba
|   |-- [root     utmp    ]  screen
|   |   |-- [gertjan  gertjan ]  S-gertjan
|   |   `-- [root     root    ]  S-root
|   |-- [root     root    ]  sshd
|   `-- [root     root    ]  sudo
|-- [root     root    ]  spool
|   |-- [root     root    ]  cron
|   |   `-- [root     crontab ]  crontabs
|   |-- [root     lpadmin ]  cups
|   |   `-- [root     lpadmin ]  tmp
|   |-- [root     root    ]  mail -> ../mail
|   |-- [root     root    ]  postfix
|   |   |-- [postfix  root    ]  active
|   |   |   |-- [postfix  postfix ]  0
|   |   |   |-- [postfix  postfix ]  1
|   |   |   |-- [postfix  postfix ]  2
|   |   |   |-- [postfix  postfix ]  3
|   |   |   |-- [postfix  postfix ]  4
|   |   |   |-- [postfix  postfix ]  5
|   |   |   |-- [postfix  postfix ]  6
|   |   |   |-- [postfix  postfix ]  7
|   |   |   |-- [postfix  postfix ]  8
|   |   |   |-- [postfix  postfix ]  9
|   |   |   |-- [postfix  postfix ]  A
|   |   |   |-- [postfix  postfix ]  B
|   |   |   |-- [postfix  postfix ]  C
|   |   |   |-- [postfix  postfix ]  D
|   |   |   |-- [postfix  postfix ]  E
|   |   |   `-- [postfix  postfix ]  F
|   |   |-- [postfix  root    ]  bounce
|   |   |   |-- [postfix  postfix ]  1
|   |   |   |-- [postfix  postfix ]  2
|   |   |   |-- [postfix  postfix ]  3
|   |   |   |-- [postfix  postfix ]  4
|   |   |   |-- [postfix  postfix ]  5
|   |   |   |-- [postfix  postfix ]  6
|   |   |   |-- [postfix  postfix ]  7
|   |   |   |-- [postfix  postfix ]  8
|   |   |   |-- [postfix  postfix ]  9
|   |   |   |-- [postfix  postfix ]  A
|   |   |   |-- [postfix  postfix ]  B
|   |   |   `-- [postfix  postfix ]  D
|   |   |-- [postfix  root    ]  corrupt
|   |   |-- [postfix  root    ]  defer
|   |   |   |-- [postfix  postfix ]  0
|   |   |   |-- [postfix  postfix ]  2
|   |   |   |-- [postfix  postfix ]  3
|   |   |   |-- [postfix  postfix ]  5
|   |   |   |-- [postfix  postfix ]  6
|   |   |   |-- [postfix  postfix ]  8
|   |   |   |-- [postfix  postfix ]  9
|   |   |   |-- [postfix  postfix ]  B
|   |   |   `-- [postfix  postfix ]  C
|   |   |-- [postfix  root    ]  deferred
|   |   |   |-- [postfix  postfix ]  0
|   |   |   |-- [postfix  postfix ]  1
|   |   |   |-- [postfix  postfix ]  2
|   |   |   |-- [postfix  postfix ]  3
|   |   |   |-- [postfix  postfix ]  5
|   |   |   |-- [postfix  postfix ]  6
|   |   |   |-- [postfix  postfix ]  8
|   |   |   |-- [postfix  postfix ]  9
|   |   |   |-- [postfix  postfix ]  B
|   |   |   `-- [postfix  postfix ]  C
|   |   |-- [root     root    ]  etc
|   |   |-- [postfix  root    ]  flush
|   |   |   `-- [postfix  postfix ]  l
|   |   |-- [postfix  root    ]  hold
|   |   |-- [postfix  root    ]  incoming
|   |   |   |-- [postfix  postfix ]  0
|   |   |   |-- [postfix  postfix ]  1
|   |   |   |-- [postfix  postfix ]  2
|   |   |   |-- [postfix  postfix ]  3
|   |   |   |-- [postfix  postfix ]  4
|   |   |   |-- [postfix  postfix ]  5
|   |   |   |-- [postfix  postfix ]  6
|   |   |   |-- [postfix  postfix ]  7
|   |   |   |-- [postfix  postfix ]  8
|   |   |   |-- [postfix  postfix ]  9
|   |   |   |-- [postfix  postfix ]  A
|   |   |   |-- [postfix  postfix ]  B
|   |   |   |-- [postfix  postfix ]  C
|   |   |   |-- [postfix  postfix ]  D
|   |   |   |-- [postfix  postfix ]  E
|   |   |   `-- [postfix  postfix ]  F
|   |   |-- [root     root    ]  lib
|   |   |-- [postfix  postdrop]  maildrop
|   |   |-- [postfix  root    ]  pid
|   |   |-- [postfix  root    ]  private
|   |   |-- [postfix  postdrop]  public
|   |   |-- [postfix  root    ]  saved
|   |   |-- [postfix  root    ]  trace
|   |   `-- [root     root    ]  usr
|   |       `-- [root     root    ]  lib
|   |           `-- [root     root    ]  zoneinfo
|   `-- [root     root    ]  squirrelmail
|       `-- [root     www-data]  attach
|-- [root     root    ]  state
|   `-- [root     root    ]  discover
|-- [root     root    ]  tmp
`-- [root     root    ]  www
    |-- [root     root    ]  albums -> /data/images/
    |-- [root     root    ]  apache2-default
    |-- [nobody   nogroup ]  bier
    |-- [nobody   nogroup ]  bvbs
    |   `-- [nobody   nogroup ]  bvbs
    |       `-- [nobody   nogroup ]  classes
    |-- [root     root    ]  incoming -> /home/project/ftp/incoming/
    |-- [root     root    ]  katje
    |-- [root     root    ]  meuk
    |-- [www-data www-data]  pagecount
    |   |-- [www-data www-data]  baks
    |   `-- [www-data www-data]  ouwe meuk
    |-- [root     root    ]  phpmyadmin -> /usr/share/phpmyadmin
    |-- [root     root    ]  project -> /home/project/ftp/project/
    |-- [root     root    ]  stage
    |-- [root     root    ]  test
    `-- [www-data www-data]  traffic
        |-- [www-data www-data]  data
        |-- [www-data www-data]  doc
        |-- [www-data www-data]  includes
        |   `-- [www-data www-data]  lang
        `-- [www-data www-data]  templates
            |-- [www-data www-data]  aq
            |   `-- [www-data www-data]  images
            |-- [www-data www-data]  blue
            |   `-- [www-data www-data]  images
            |-- [www-data www-data]  classic
            |   `-- [www-data www-data]  images
            |-- [www-data www-data]  classic2
            |   `-- [www-data www-data]  images
            `-- [www-data www-data]  classic3
                `-- [www-data www-data]  images


en dan zijn het alleen nog maar de directories

  • lordgandalf
  • Registratie: Februari 2002
  • Laatst online: 13-02 15:00
thnx ik heb het dank zij jullie info het weer redelijk werkend gekregen nu alleen de diensten die verwachte in sommige mappen te mogen lezen cq schrijven nog aanpassen als ze gaan mekeren maar daar kom ik zoals eerder vermeldt zelf wel achter bedankt nog voor de dir listing

Steam: Profile / Socialclub: Profile / Uplay: minedwarf / Origin: lordgandalf3

Pagina: 1