~ubuntu-branches/ubuntu/natty/lfm/natty-updates

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
517
518
519
=======================
lfm - Last File Manager
=======================

:Author: Iñigo Serna, inigoserna AT gmail DOT com

:Version: 2.2, May 22th. 2010

:Home page: http://www.terra.es/personal7/inigoserna/lfm/

:License: \(C\) 2001-10, Iñigo Serna

          This software has been realised under the `GPL License`__ version 3
          or later, read the COPYING_ file that comes with this package for
          more information. 

          There is NO WARRANTY.

:Last update: Sat May 22 11:18:05 2010

.. contents:: Table of Contents


Introduction
============
**Last File Manager** is a simple but powerful file manager for the
UNIX console. Based on curses, it's written in Python.

Some of the features you can find in *lfm*:

- console-based file manager for UNIX platforms
- 1-pane or 2-pane view
- tabs
- bookmarks
- history
- vfs for compressed files
- dialogs with entry completion
- fast access to the shell
- direct integration of find/grep, df and other tools
- color files by extension [Andrey Skvortsov]
- support for different file names encodings
- fast file viewer with text and binary modes
- ...and many others


From version 0.6 and up *lfm* package also contains **pyview**, a
text / hex file viewer to be used with or without *lfm*. 
Read README.pyview_ for more info about it.

Some screenshots:


  **lfm**:

  .. image:: lfm.png


  **pyview**:

  .. image:: pyview.png

 

Type `lfm --help` or `pyview --help` for a complete list of options.

Program preferences are saved in `~/.lfmrc` file.
When the program starts the first time, it tries to discover the location
of some apps in your system to configure *lfm* automatically, but it's not 
perfect, so you should take a look to the configuration (`General Menu [F9] 
-> Edit Configuration [c]`) and change it according to your preferences.


Requirements
============
*Lfm* and *Pyview* are written in Python_ and require curses module.
It should run on Python v2.4 or higher, as but I'm only have v2.6 on my
computers I haven't tested older versions.

All modern UNIX flavours (Linux, \*BSD, Solaris, etc) should run it without 
problems. If they appear please notify me.

Since version 0.90, *lfm* needs ncurses >= v5.x to handle terminal resizing.

Python v2.5+ and ncurses v5.4+ to use wide characters.

Note that python curses module should be linked against ncursesw library 
(instead of ncurses) to get wide characters support. This is the usual case 
in later versions of Linux distributions, but maybe not the case in older 
Linux or other UNIX platforms. Thus, expect problems when using multibyte 
file names (f.e. UTF-8 or latin-1 encoded) if your curses module isn't 
compiled against ncursesw. Anyway, I hope this issue will disappear with new 
releases of those platforms eventually.

Consult `Files name encoding`_ section below for more information
about support of different encodings.

Finally, take a look at TODO_ file to see bugs and *not-implemented-yet* (tm) 
features.


Download & Installation
=======================
.. sidebar:: Files: all versions
   :class: warning

   +---------+------------------+------------+
   | Version |       File       |    Date    |
   +=========+==================+============+
   |   2.2   | lfm-2.2.tar.gz_  | 2010/05/22 |
   +---------+------------------+------------+
   |   2.1   | lfm-2.1.tar.gz_  | 2008/12/21 |
   +---------+------------------+------------+
   |   2.0   | lfm-2.0.tar.gz_  | 2007/09/03 |
   +---------+------------------+------------+
   |   1.0   |  Never released  |   ~2006    |
   +---------+------------------+------------+
   |   0.92  |  Never released  |   ~2005    |
   +---------+------------------+------------+
   |   0.91  | lfm-0.91.tar.gz_ | 2004/07/03 |
   +---------+------------------+------------+
   |   0.90  |  Never released  |            |
   +---------+------------------+------------+
   |   0.9   | lfm-0.9.tar.gz_  | 2002/09/05 |
   +---------+------------------+------------+
   |   0.8   | lfm-0.8.tar.gz_  | 2002/03/04 |
   +---------+------------------+------------+
   |   0.7   | lfm-0.7.tar.gz_  | 2001/11/30 |
   +---------+------------------+------------+
   |   0.6   |  Never released  |            |
   +---------+------------------+------------+
   |   0.5   | lfm-0.5.tar.gz_  | 2001/08/07 |
   +---------+------------------+------------+
   |   0.4   | lfm-0.4.tar.gz_  | 2001/07/19 |
   +---------+------------------+------------+

   Read about NEWS_ or ChangeLog_


'lfm' is very easy to install, just keep next steps:

1. Download sources_
2. Uncompress file
3. Build:
    `$ python setup.py build`
4. Install, as root:
    `# python setup.py install`
5. Run it:
    `$ lfm`
6. Edit settings:
     `General Menu [F9] -> Edit Configuration [c]`

    
To let 'lfm' to change to panel's current directory after quiting with
`q`, `Q` or `F10` keys, you must add next code to `/etc/bashrc` or to
your `~/.bashrc`::

    lfm()
    {
	/usr/bin/lfm "$*"		# type here full path to lfm script
	LFMPATHFILE=/tmp/lfm-$$.path
	cd "`cat $LFMPATHFILE`"
	rm -f $LFMPATHFILE
    }

If you don't use bash or csh shell, above lines could differ.


Upgrading
=========
If you upgrade from versions < 2.0, please remove first `~/.lfmrc` to 
regenerate a valid configuration as file format has changed. I advise you 
to make a backup copy before.

Also, note that some keys have changed since previous versions. 
Read carefully following section.


Keys
====
These are the complete list of key bindings:

+ **Movement**
    - cursor_up, k
    - cursor_down, j
    - previous_page, backspace, Ctrl-B
    - next_page, space, Ctrl-F
    - home, Ctrl-A: first file
    - end, Ctrl-E: last file
    - cursor_left: upper dir
    - cursor_right: enter dir / vfs
    - Ctrl-S: go to file in current panel
    - Ctrl-L: center cursor in current panel
    - Ctrl-P, Ctrl-left: move cursor 1/4th of page upwards
    - Ctrl-N, Ctrl-right: move cursor 1/4th of page downwards

+ **Movement in non active pane** [#]_
    - Alt/Shift-cursor_up, K
    - Alt/Shift-cursor_down, J
    - Alt/Shift-previous_page, B
    - Alt/Shift-next_page, F
    - Alt/Shift-home, A: first file
    - Alt/Shift-end, E: last file
    - Alt/Shift-cursor_left: upper dir
    - Alt/Shift-cursor_right: enter dir / vfs
    - P: move cursor 1/4th of page upwards
    - N: move cursor 1/4th of page downwards
   
.. [#] Some key shorcuts combinations such as Alt or Shift + key may not work, as it
       depends on the capabilities of the terminal program you are using.
       F.e. it doesn't work in my computer console running Fedora 11 Linux, but it works
       under gnome-terminal in X. Your results could be different.
       Anyway, there are alternative shortcuts (K J B F A E), but not for everything.
       Consult your terminal emulation program documentation to check it.
       Also note that you can allow/disallow this navigation with Ctrl-W, it's disabled
       by default.

+ **Changing directory**
    - g, G: go to directory
    - 0..9: go to bookmark #
    - Ctrl-D, Ctrl-\\: select bookmark # from menu
    - b: set bookmark #
    - Ctrl-Y: display directories history

+ **Panes**
    - tab: other pane
    - .: toggle display 1 or 2 panes
    - , Ctrl-U: change panes position (left->right, right->left)
    - =: show same directory in both panes

+ **Tabs**:
    - :: new tab
    - !: close tab
    - <: go to left tab
    - >: go to right tab

+ **Selections**
    - insert: select item and go to next file
    - +: select group
    - -: deselect group
    - \*: invert selection

+ **Files / Directories operations**
    - t, T: touch file
    - l: create link
    - L: edit link
    - F2: rename file/dir/selection
    - F3: view file
    - F4: edit file
    - F5: copy file/dir/selection
    - F6: move file/dir/selection
    - F7: make directory
    - F8, del: delete file/dir/selection
    - enter: execute file, enter dir / vfs or view 'specially' depending on the extension of the regular file. It is executed in a thread that can be stopped and captures output
    - i, I: show file info

+ **Other**
    - #: show selected/all directories size
    - s, S: sort files
    - /: find/grep files
    - @: do something on file. Output is not captured
    - Ctrl-H: toggle show/hide dot files
    - Ctrl-W: toggle allow navigate in non-active pane
    - Ctrl-O: open shell. Type 'exit' or press Ctrl-D to return to lfm
    - Ctrl-T: tree
    - F12: file menu
        - @: do something on file(s)
        - i: file(s) info
        - p: change file permissions, owner, group
        - a: backup file. You can specify the extension to use in settings
        - g: gzip/gunzip file(s)
        - b: bzip2/bunzip2 file(s)
        - h: xz/unxz file(s)
        - x: uncompress .tar.gz, .tar.bz2, .tar.xz, .zip, .rar, .7z
        - u: uncompress .tar.gz, etc in other panel
        - c: compress directory to .tar.gz
        - d: compress directory to .tar.bz2
        - e: compress directory to .tar.xz
        - z: compress directory to .zip
        - r: compress directory to .rar 
        - 7: compress directory to .7z 
    - F9: general menu 
        - /: find/grep file
        - #: show directories size
        - s: sort files
        - t: tree
        - f: show filesystems info
        - o: open shell
        - c: edit configuration
        - r: regenerate programs
    - Ctrl-R: refresh screen
    - h, H, F1: help
    - q, Q, F10: exit changing to current path
    - Ctrl-Q: quit

+ Keys in *EntryLine* window:
    - up, down: historic
    - enter: return path
    - tab: change to next entry or button
    - Ctrl-T: complete
    - Ctrl-W: delete whole line
    - Ctrl-K: delete from position to end of line
    - Ctrl-D: delete until next /
    - Ctrl-Z: recover original content (undo)
    - home, Ctrl-A: move start of line
    - end, Ctrl-E: move end of line
    - left, Ctrl-B: move cursor left
    - right, Ctrl-F: move cursor right
    - Ctrl-P, Ctrl-left: move cursor previous /
    - Ctrl-N, Ctrl-right: move cursor next /
    - backspace, del, insert, ...
    - Ctrl-C, ESC: quit

+ Keys in *SelectItem* window:
    - up, k, K
    - down, j, J
    - previous page, backspace, Ctrl-B
    - next page, space, Ctrl-F
    - home, Ctrl-A
    - end, Ctrl-E
    - Ctrl-S: go to file/dir
    - enter: return path
    - Ctrl-C, q, Q, ESC: quit

+ Keys in *Permissions* window:
    - tab, cursor: move
    - in permissions: r, w, x, s, t to toggle read, write, exec, setuid or setgid, sticky bit
    - in user, group: space or enter to select
    - in recursive: space or enter to toggle
    - in buttons: space or enter to accept that action
    - everywhere: space or enter to accept, a to accept all, i to ignore and c, q, esc, Ctrl-c to cancel

+ Keys in *Tree* panel:
    - down, j, K: down within current depth, without going out from directory
    - up, k, K: up within current depth, without going out from directory
    - previous page, backspace, Ctrl-B: same as up but page-size scroll
    - next page, space, Ctrl-F: same as down but page-size scroll
    - home, Ctrl-A: first directory
    - end, Ctrl-E: last directory
    - left: go out from directory
    - right: enter in directory
    - enter: return changing to directory
    - Ctrl-H: toggle show/hide dot files
    - Ctrl-C, q, Q, F10, ESC: quit


Files name encoding
===================
Since v2.0, *lfm* uses the encoding defined in the locale of your system
if found, this will be UTF-8 likely.

Since v2.2, *lfm* was rewritten to always use unicode strings internally,
but employ terminal encoding (f.e. UTF-8) to interact with the user in
input forms, to display contents, and to pass commands to run in shell.

When *lfm* detects a file with invalid encoding name it asks the user to
convert it (can be automatic with the proper option in the configuration).
If not converted, *lfm* will display the file but won't operate on it.

Please note there are some restrictions to support wide characters by now,
as explained in the `Requirements`_ section.


Virtual File Systems (VFS)
==========================
You can navigate inside some special files (known as vfs files in *lfm*)
just *entering into* them (press *enter* or *cursor_right* when the
cursor bar is over one of these files). By now, supported types are
`.tar.gz`, `.tar.bz2`, `.zip`, `.rar`, and `.7z` files. 

The virtual directory name ('path_to_vfs_file#vfs/dir') is not propagated, so 
tmpdir (`/tmp/@6421.2/dir`) is showed in the copy/move/... dialogs or when
view/edit/... a file, but this is just an estetic issue.

When returning from one of such vfs files, a question dialog appears asking to
allow you to regenerate the vfs file and update all changes (i.e., it is 
compressed again, so it could be slow in some machines), but `lfm` checks if it 
can do first, to avoid waste of time. This behaviour (rebuild or not rebuild, ask 
it or not) can be modified in the configuration file. By default the question is
showed but it's set to *not regenerate vfs*.
In case of `panelize` vfs type (after find/grep), deleted / moved files
are not deleted / moved in real path.

*lfm* doesn't implement remote vfs such as ssh, ftp, smb, webdav, ...
This is a design criterion, we don't want to add external dependencies
beyond python standard library. If you need to access remote file
systems you could mount them using something like *fuse* and treat them
as local directories from inside *lfm*.


FAQ
===
+ **How and why lfm born?**

  Everything is explained in next sections. `list.com` and `midnight commander`
  were the muses who guided.

+ **Isn't python slow? why develop lfm on python?**

  No. It's fast enough. And programming in python is funny.

+ **I've reading the sources and sometimes you don't use newer python features like ternary operator, with statement, and many others**

  We want to mantain compatibility with python v2.3 by now. Btw, you
  can find some of these interesting new features in the TODO_ file.

+ **does it work with Python v3.x?**

  No. We'll support Python v3.x when it is mainline (read, when my linux
  distribution of choice package it as default).

+ **lfm does not change to current directory after quiting**

  This can't be made inside the program, but you could get it using
  the shell tip mentioned in `Download & Installation`_ section.

+ **Why doesn't lfm implement remote vfs such as ssh, ftp, smb, webdav, ...?**

  One of the design goals for *lfm* is simplicity, we don't want to add
  external dependencies beyond python standard library. Also you can
  use something like *fuse* to mount those remote volumes anyway.

+ **Keybindings customization?**

  Not for the near future. Anyway, you can modify `actions.py` in the
  sources if it's so important for you.

+ **Mouse support? UI to configure settings?**

  I'm afraid we speak different languages.

+ **When will be support for internationalization?**

  If we are talking about translating *lfm*, the answer is mostly
  never. Ncurses programming makes very difficult to control the
  length of every text for every possible language translation.

  If you mean support for file names in foreign languages and
  encodings then it's almost here already.

+ **Some Chinese, Japanese or Korean files make lfm crash**

  Known issue. The characters of these languages span over 2 cells, so
  it's not possible for *lfm* to guess the real width they need.
  We expect to solve this in a near future as we are studying
  different methods.

+ **[Any other question / feature request]**

  Consult if it's mentioned in the TODO_ file and/or send me an email.


History
=======
Many many years ago I began to write a program like this in C, but after
some weeks of coding I never finished it... I'm too lazy, yes.
Then I saw the light and I started writing `lfm` to learn python_.

Code evolved and application got more and more features, used by many
people around the world on different UNIX systems.

But after the release of version 0.91 (June 2004) they were not more releases.
Not that I had stopped working on *lfm*, new code was written, tested,
rewritten again... silently... but different reasons made me to postpone public
releases... code refactoring, a new essential feature, source cleaning,
a wedding, a child, ahem... more code refactoring....

Anyway, from now on I'll do my best to release often.


Thanks
======
Thanks are obviously due to the whole python community, specially to GvR 
(of course! ;-) and all the people who answered my questions in c.l.p.

It's a great pleasure to code in a language like this.

Alexei Gilchrist, for his cfm program from which I took some ideas.

`Midnight Commander`__ developers, whose program was the guide.

`Vernon D. Buerg's list.com`__, the best program ever coded (well, just after emacs ;-).

And also to all the people who have contributed with ideas, reporting
bugs and code over these years: Antoni Aloy, Sebastien Bacher, Grigory
Bakunov, Luigi M. Bianchi, Hunter Blanks, Witold Bołt, Fabian Braennstroem,
Jason Buberel, Ondrej Certik, Kevin Coyner, Tim Daneliuk, Mike Dean, Arnå DG,
Christian Eichert, Steve Emms, Murat Erten, Luca Falavigna, Stephen R. Figgins,
f1ufx, Francisco Gama, Vlad Glagolev, Ana Beatriz Guerrero Lopez, Kelly Hopkins,
Tjabo Kloppenburg, Zoran Kolic, Max Kutny, Martin Lüethi, James Mills, Bartosz Oler,
Piotr Ozarowski, Mikhail A. Pokidko, Jerome Prudent, Mikhail Ramendik, Rod,
Daniel T. Schmitt, Chengqi Song, Robin Siebler, Andrey Skvortsov, Espartaco Smith,
Jörg Sonnenberger, Joshua Tasker, Tim Terlegård, Edd Thompson, Walter van den Broek,
Alejandro Weil, Hai Zaar and many others...

You have made posible to run *lfm* in all those platforms!


.. _sources: lfm-2.2.tar.gz
.. _README.pyview: README.pyview.html
.. _TODO: TODO
.. _NEWS: NEWS
.. _ChangeLog: ChangeLog
.. _COPYING: COPYING
.. _GPL: http://www.gnu.org/licenses/licenses.html#GPL
.. _mc: http://www.ibiblio.org/mc/
.. _buerg: http://www.buerg.com/
.. _python: http://www.python.org
__ GPL_
__ mc_
__ buerg_
.. _lfm-2.2.tar.gz: lfm-2.2.tar.gz
.. _lfm-2.1.tar.gz: lfm-2.1.tar.gz
.. _lfm-2.0.tar.gz: lfm-2.0.tar.gz
.. _lfm-0.91.tar.gz: lfm-0.91.tar.gz
.. _lfm-0.9.tar.gz: lfm-0.9.tar.gz
.. _lfm-0.8.tar.gz: lfm-0.8.tar.gz
.. _lfm-0.7.tar.gz: lfm-0.7.tar.gz
.. _lfm-0.5.tar.gz: lfm-0.5.tar.gz
.. _lfm-0.4.tar.gz: lfm-0.4.tar.gz