summaryrefslogtreecommitdiffstats
path: root/gnome2-user-guide/C/gosnautilus.xml
blob: d129d655f26195b2fbc54935c9a210437edec497 (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
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508



<chapter id="gosnautilus-1">
<title>Nautilus File Manager</title>
<highlights><para>This chapter describes how to use the <application>Nautilus
</application> file manager.</para></highlights>
<sect1 id="gosnautilus-21">
<title>Introduction to Nautilus File Manager</title>
<indexterm><primary>file manager</primary><secondary>introduction</secondary>
</indexterm><para>The <application>Nautilus</application> file manager provides
an integrated access point to your files and applications. <application>Nautilus
</application> enables you to do the following:</para>
<itemizedlist>
<listitem><para>Display your files and folders.</para></listitem>
<listitem><para>Manage your files and folders.</para></listitem>
<listitem><para>Run scripts.</para></listitem>
<listitem><para>Customize your files and folders.</para></listitem>
</itemizedlist>
<para>You can also use <application>Nautilus</application> to browse the Web,
but you can only view pages that contain HTML code. You can not view web pages
that contain other types of code, for example, JavaScript. <application>Nautilus
</application> also manages the desktop where your panels, menus, and windows
are displayed. </para>
<para><application>Nautilus</application> windows enable you to display and
manage your files and folders. You can open a <application>Nautilus</application>
window in any of the following ways:</para>
<itemizedlist>
<listitem><para>Double-click on the <guilabel>Home</guilabel> object on the
desktop background. </para></listitem>
<listitem><para>Choose <menuchoice><guimenu>Applications</guimenu>
<guimenuitem>Home Folder</guimenuitem></menuchoice>.</para></listitem>
<listitem><para>Right-click on the desktop background to open the <guimenu>
Desktop Background</guimenu> menu. Choose <guimenuitem>New Window</guimenuitem>.
</para></listitem>
</itemizedlist>
<para>The <application>Nautilus</application> window displays the contents
of your home location in the view pane.</para>
</sect1>
<sect1 id="gosnautilus-210">
<title>Nautilus Windows</title>
<indexterm><primary>file manager</primary><secondary>windows</secondary></indexterm>
<para><application>Nautilus</application> windows enable you to display and
manage your files and folders. <xref linkend="gosnautilus-FIG-1"/> shows a <application>
Nautilus</application> window that displays the contents of a folder.</para>
<indexterm><primary>file manager</primary><secondary>icon view</secondary>
<tertiary>illustration</tertiary></indexterm>
<figure id="gosnautilus-FIG-1">
<title>Contents of a Folder in a Nautilus Window</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_iconview_anno_window.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows a folder in a Nautilus window. Callouts: Menubar, toolbar, location bar, zoom buttons, side pane, view pane, tabs.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
</figure>
<para><xref linkend="gosnautilus-TBL-83"/> describes the components of <application>
Nautilus</application> windows.</para>
<table frame="topbot" id="gosnautilus-TBL-83">
<title>Nautilus Window Components</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="29.39*"/>
<colspec colname="COLSPEC1" colwidth="70.61*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Component</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para>Menubar</para></entry><entry valign="top"><para>
Contains menus that you use to perform tasks in <application>Nautilus</application>.
</para></entry></row>
<row><entry valign="top"><para>Toolbar</para></entry><entry valign="top"><para>
Contains buttons that you use to perform tasks in <application>Nautilus</application>.
</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Location bar</para></entry>
<entry colname="COLSPEC1" valign="top"><para>Contains the following elements:
</para><itemizedlist>
<listitem><para><guilabel>Location</guilabel> field or <guilabel>Go To</guilabel>
field: Enables you to specify a file, folder, or URL that you want to display.
</para></listitem>
<listitem><para><guimenu>Zoom</guimenu> buttons: Enable you to change the
size of items in the view pane.</para></listitem>
<listitem><para><guilabel>View as</guilabel> drop-down list box: Enables you
to choose how to display items in your view pane.</para></listitem>
</itemizedlist></entry></row>
<row><entry valign="top"><para>Side pane</para></entry><entry valign="top"><para>
Performs the following functions:</para><itemizedlist>
<listitem><para>Enables you to navigate through your files and the online
help system. </para></listitem>
<listitem><para>Displays information about the current file or folder. </para>
</listitem>
</itemizedlist></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Tabs</para></entry><entry
colname="COLSPEC1" valign="top"><para>Click on a tab to open a tabbed pane.
The side pane contains the following tabbed panes:</para><itemizedlist>
<listitem><para><guilabel>History</guilabel></para></listitem>
<listitem><para><guilabel>Notes</guilabel></para></listitem>
<listitem><para><guilabel>Tree</guilabel></para></listitem>
</itemizedlist></entry></row>
<row><entry valign="top"><para>View pane</para></entry><entry valign="top"><para>
Displays the contents of the following:</para><itemizedlist>
<listitem><para>Particular types of files</para></listitem>
<listitem><para>Folders</para></listitem>
<listitem><para>FTP sites</para></listitem>
</itemizedlist></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Resize handle</para></entry>
<entry colname="COLSPEC1" valign="top"><para>Grab this handle then drag to
resize the side pane and view pane.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Statusbar</para></entry>
<entry colname="COLSPEC1" valign="top"><para>Displays status information.
</para></entry></row>
</tbody>
</tgroup>
</table>
<para>You can also open a popup menu from <application>Nautilus</application>
windows. To open this popup menu right-click in a <application>Nautilus</application>
window. The items in this menu depend on where you right-click. For example,
when you right-click on a file or folder, you can choose items related to
the file or folder. When you right-click on the background of a view pane,
you can choose items related to the display of items in the view pane.</para>
<sect2 id="gosnautilus-53">
<title>View Pane</title>
<indexterm><primary>file manager</primary><secondary>view pane</secondary>
<see>view pane</see></indexterm><indexterm><primary>view pane</primary><secondary>
introduction</secondary></indexterm><para>The view pane can display the contents
of the following:</para>
<itemizedlist>
<listitem><para>Particular types of files</para></listitem>
<listitem><para>Folders</para></listitem>
<listitem><para>Websites</para></listitem>
<listitem><para>FTP sites</para></listitem>
</itemizedlist>
<para><indexterm><primary>viewer components</primary></indexterm><application>
Nautilus</application> contains <glossterm>viewer components</glossterm> that
enable you to display particular types of file in the view pane. For example,
 you can use a web page viewer to display HTML files in the view pane. The
following figure shows a plain text document displayed in the view pane.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_viewpane_text_window.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Nautilus window with plain text document displayed in the view pane.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para>Displaying a file in the view pane provides the following benefits:
</para>
<itemizedlist>
<listitem><para>Uses less system resources than when you launch an application.
</para></listitem>
<listitem><para>Takes less time than when you launch an application.</para>
</listitem>
</itemizedlist>
<para>However, you can not edit a file in the view pane.</para>
<para>Click on the <guibutton>Reload</guibutton> button to reload the contents
of the view pane.</para>
<para><application>Nautilus</application> also includes <glossterm>views</glossterm>
that enable you to display the contents of your folders in different ways.
For example, you can display the contents of a folder in the following types
of view: </para>
<itemizedlist>
<listitem><para>Icon view: Displays the items in the folder as icons. </para>
</listitem>
<listitem><para>List view: Displays the items in the folder as a list. </para>
</listitem>
</itemizedlist>
<para>Use the <guimenu>View</guimenu> menu to choose how to display a folder.
For more information on views, see <xref linkend="gosnautilus-7"/>.</para>
</sect2>
<sect2 id="gosnautilus-540">
<title>Side Pane</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_folder_navigation_pane.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows side pane. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<indexterm><primary>file manager</primary><secondary>side pane</secondary>
<tertiary>introduction</tertiary></indexterm><indexterm><primary>side pane
</primary><see>file manager</see></indexterm><para>The side pane can contain
the following elements:</para>
<itemizedlist>
<listitem><para>An icon that represents the current file or current folder.
The side pane also contains information about the current file or current
folder.</para></listitem>
<listitem><para>Tabbed panes that enable you to navigate through your files
and the online help system.</para></listitem>
<listitem><para>If a file is displayed in the view pane, buttons appear in
the side pane. The buttons enable you to perform actions on a file, other
than the default action.</para></listitem>
</itemizedlist>
</sect2>
<sect2 id="gosnautilus-2">
<title>Tabbed Panes</title>
<indexterm><primary>tabbed panes</primary><see>file manager</see></indexterm>
<indexterm><primary>file manager</primary><secondary>tabbed panes</secondary>
<tertiary>introduction</tertiary></indexterm><para>The side pane contains
the following tabbed panes:</para>
<itemizedlist>
<listitem><para><guilabel>History</guilabel></para>
<para>Contains a history list of files, folders, and URLs that you have recently
visited.</para></listitem>
<listitem><para><guilabel>Notes</guilabel></para>
<para>Enables you to add notes to your folders.</para></listitem>
<listitem><para><guilabel>Tree</guilabel></para>
<para>Displays a hierarchical representation of your file system. You can
use the <guilabel>Tree</guilabel> tabbed pane to navigate through your files.
</para></listitem>
</itemizedlist>
<para><xref linkend="gosnautilus-TBL-9"/> describes how to work with tabbed
panes.</para>
<table frame="topbot" id="gosnautilus-TBL-9">
<title>Tabbed Pane Tasks</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Task</para></entry><entry valign="top"><para>
Action</para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><para>Open a tabbed pane.</para></entry>
<entry colname="COLSPEC1" valign="top"><para>Click on the tab.</para></entry>
</row>
<row><entry valign="top"><para>Close a tabbed pane.</para></entry><entry valign="top"><para>
Click on the tab.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Remove a tab from the side
pane.</para></entry><entry colname="COLSPEC1" valign="top"><para>Right-click
in the side pane, then choose the tab that you want to remove from the popup
menu.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Add a tab to the side pane.
</para></entry><entry colname="COLSPEC1" valign="top"><para>Right-click in
the side pane, then choose the tab that you want to add from the popup menu.
</para></entry></row>
</tbody>
</tgroup>
</table>
</sect2>
<sect2 id="gosnautilus-550">
<title>Icons and Emblems</title>
<indexterm><primary>file manager</primary><secondary>icons</secondary><tertiary>
introduction</tertiary></indexterm><indexterm><primary>file manager</primary>
<secondary>emblems</secondary><tertiary>introduction</tertiary></indexterm>
<indexterm><primary>emblems</primary><see>file manager</see></indexterm><para>
In icon view, <application>Nautilus</application> displays your files and
folders as icons. You can add emblems to your file icons and folder icons.
An emblem is a small icon that you can add to an item to visually mark the
item. For example, to mark a file as important, you can add an <guilabel>
Important</guilabel> emblem to the file icon to create the following visual
effect: </para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_sampleemblem_icon.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows file icon with Important emblem.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para>For more information on how to add an emblem to an icon, see <xref linkend="gosnautilus-112"/>.
</para>
<para>The following table describes the structure of the file icon:</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Component</para></entry><entry valign="top"><para>
Description</para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_sampleemblem1_icon.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows Important emblem.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry colname="COLSPEC1" valign="top"><para>
Emblem. This emblem is the <guilabel>Important</guilabel> emblem.</para></entry>
</row>
<row><entry valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_sampleemblem2_icon.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows file icon.
</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry valign="top"><para>Icon that represents the file.
This icon contains a preview of the content of the file.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_sampleemblem3_icon.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows icon caption.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry colname="COLSPEC1" valign="top"><para>
Icon caption. You can modify what items of information are displayed in the
icon caption.</para></entry></row>
</tbody>
</tgroup>
</informaltable>
<para><application>Nautilus</application> includes default emblems for the
following types of item:</para>
<itemizedlist>
<listitem><para>Symbolic links</para></listitem>
<listitem><para>Items for which you have the following permissions:</para>
<itemizedlist>
<listitem><para>Read permission only </para></listitem>
<listitem><para>No read permission and no write permission</para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<para>The default emblems change depending on your theme. The following table
shows the default emblems for the Default theme. </para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Default Emblem</para></entry><entry
valign="top"><para>Description</para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_link_emblem.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows symbolic link emblem.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry colname="COLSPEC1" valign="top"><para>
Symbolic link</para></entry></row>
<row><entry valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_nowrite_emblem.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows read permission only emblem.
</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry valign="top"><para>Read permission only</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_noread_emblem.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows no read permission and no write permission emblem.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry>
<entry colname="COLSPEC1" valign="top"><para>No read permission and no write
permission</para></entry></row>
</tbody>
</tgroup>
</informaltable>
</sect2>
</sect1>
<sect1 id="gosnautilus-24">
<title>Navigating Your Computer and the Internet</title>
<indexterm><primary>file manager</primary><secondary>navigating</secondary>
</indexterm><para>Each <application>Nautilus</application> window displays
the contents of a single file, folder, or URL. This section describes the
following:</para>
<itemizedlist>
<listitem><para>How to display items in <application>Nautilus</application>
windows.</para></listitem>
<listitem><para>How to open files from <application>Nautilus</application>
windows.</para></listitem>
<listitem><para>How to navigate the files and folders in your file system.
</para></listitem>
<listitem><para>How to navigate the Internet.</para></listitem>
</itemizedlist>
<sect2 id="gosnautilus-4">
<title>To Display Your Home Location</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_home_launcher.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Nautilus home location icon.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<indexterm><primary>file manager</primary><secondary>Home location</secondary>
<see>Home location</see></indexterm><indexterm><primary>Home location</primary>
<secondary>displaying</secondary></indexterm><para>To display your home location,
perform one of the following actions: </para>
<itemizedlist>
<listitem><para>Double-click on the <guilabel>Home</guilabel> object on the
desktop background.</para></listitem>
<listitem><para>On a <application>Nautilus</application> window, choose <menuchoice>
<guimenu>Go</guimenu><guimenuitem>Home</guimenuitem></menuchoice>. 
</para></listitem>
<listitem><para>On a <application>Nautilus</application> window, click on
the <guibutton>Home</guibutton> toolbar button. </para></listitem>
</itemizedlist>
<para>The <application>Nautilus</application> window displays the contents
of your home location. To reload the display,  click on the <guibutton>Reload
</guibutton> button.</para>
<para>For information on how to set your home location, see <xref linkend="gosnautilus-59"/>. 
</para>
</sect2>
<sect2 id="gosnautilus-25">
<title>To Display a Folder</title>
<indexterm><primary>file manager</primary><secondary>displaying folders</secondary>
</indexterm><para>You can display the contents of a folder in any of the following
ways: </para>
<itemizedlist>
<listitem><para>Double-click on the folder in the view pane.</para></listitem>
<listitem><para>In the <guilabel>Location</guilabel> field, type the path
of the folder that you want to display, then press <keycap>Return</keycap>.
The <guilabel>Location</guilabel> field includes an autocomplete feature.
As you type a path, <application>Nautilus</application> reads your file system.
When you type enough characters to uniquely identify a directory, <application>
Nautilus</application> completes the name of the directory in the <guilabel>
Location</guilabel> field.</para></listitem>
<listitem><para>Use the <guilabel>Tree</guilabel> tabbed pane. For more information,
see <xref linkend="gosnautilus-27"/>.</para></listitem>
<listitem><para>Use the <guibutton>Back</guibutton> toolbar button and the <guibutton>
Forward</guibutton> toolbar button to browse through your navigation history.
</para></listitem>
</itemizedlist>
<para>To change to the folder that is one level above the current folder,
choose <menuchoice><guimenu>Go</guimenu><guimenuitem>Up a Level</guimenuitem>
</menuchoice>. Alternatively, click on the <guibutton>Up</guibutton> toolbar
button.</para>
<para>To reload the display, click on the <guibutton>Reload</guibutton> button.
</para>
<para>If you can not find the folder that you want to display, you can use <application>
Search Tool</application>. To start <application>Search Tool</application>,
choose <menuchoice><guimenu>Actions</guimenu><guimenuitem>Search for
Files</guimenuitem></menuchoice>.</para>
</sect2>
<sect2 id="gosnautilus-27">
<title>Using the Tree Tabbed Pane</title>
<indexterm><primary>file manager</primary><secondary>tabbed panes</secondary>
<tertiary>Tree</tertiary></indexterm><indexterm><primary>Tree tabbed pane,
using</primary></indexterm><para>The <guilabel>Tree</guilabel> tabbed pane
displays a hierarchical representation of your file system. The <guilabel>
Tree</guilabel> tabbed pane provides a convenient way to navigate your file
system. By default, the <guilabel>Tree</guilabel> tabbed pane is not displayed
in your side pane. To add the <guilabel>Tree</guilabel> tabbed pane to the
side pane, right-click in the side pane, then choose <guimenuitem>Tree</guimenuitem>
from the popup menu. </para>
<para>The following figure shows the <guilabel>Tree</guilabel> tabbed pane.
</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_tree_tab.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Tree tabbed pane displaying contents of a folder.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para>In the <guilabel>Tree</guilabel> tabbed pane, folders are represented
as follows:</para>
<informaltable frame="none">
<tgroup cols="2" colsep="0" rowsep="0">

<colspec colwidth="42.60*"/><colspec colwidth="57.40*"/>
<thead>
<row><entry valign="top"><para>Folder State</para></entry><entry valign="top"><para>
Graphic Representation </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para>Closed folder</para></entry><entry valign="top"><para>
Right arrow</para></entry></row>
<row><entry valign="top"><para>Open folder</para></entry><entry valign="top"><para>
Down arrow</para></entry></row>
</tbody>
</tgroup>
</informaltable>
<para><xref linkend="gosnautilus-TBL-34"/> describes the tasks that you can
perform with the <guilabel>Tree</guilabel> tabbed pane, and how to perform
the tasks.</para>
<table frame="topbot" id="gosnautilus-TBL-34">
<title>Tree Tabbed Pane Tasks</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="50*"/>
<colspec colname="COLSPEC1" colwidth="50*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Task</para></entry><entry valign="top"><para>
Action</para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para>Open the <guilabel>Tree</guilabel> tabbed pane.
</para></entry><entry valign="top"><para>Click on the <guilabel>Tree</guilabel>
tab.</para></entry></row>
<row><entry valign="top"><para>Close the <guilabel>Tree</guilabel> tabbed
pane.</para></entry><entry valign="top"><para>Click on the <guilabel>Tree
</guilabel> tab.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Open a folder in the <guilabel>
Tree</guilabel> tabbed pane.</para></entry><entry colname="COLSPEC1" valign="top"><para>
Click on the arrow next to the folder in the <guilabel>Tree</guilabel> tabbed
pane. </para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Close a folder in the <guilabel>
 Tree</guilabel> tabbed pane.</para></entry><entry colname="COLSPEC1" valign="top"><para>
Click on the arrow next to the folder in the <guilabel>Tree</guilabel> tabbed
pane.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Display the contents of
a folder in the view pane.</para></entry><entry colname="COLSPEC1" valign="top"><para>
Select the folder in the <guilabel>Tree</guilabel> tabbed pane.</para></entry>
</row>
<row><entry valign="top"><para>Display the contents of a file in the view
pane.</para></entry><entry valign="top"><para>Select the file in the <guilabel>
Tree</guilabel> tabbed pane.</para></entry></row>
</tbody>
</tgroup>
</table>
<para>You can set your preferences so that the <guilabel>Tree</guilabel> tabbed
pane does not display files. For more information, see <xref linkend="gosnautilus-57"/>. 
</para>
</sect2>
<sect2 id="gosnautilus-28">
<title>Opening Files</title>
<indexterm><primary>file manager</primary><secondary>opening files</secondary>
</indexterm><para>When you open a file, <application>Nautilus</application>
performs the default action for that file type. The default action can be
one of the following: </para>
<itemizedlist>
<listitem><para>Launch an application that opens the file.</para></listitem>
<listitem><para>Use a viewer component to display the file in the view pane.
</para></listitem>
</itemizedlist>
<para><application>Nautilus</application> checks the contents of a file to
determine the type of a file. If the first lines do not determine the type
of the file, then <application>Nautilus</application> checks the file extension.
</para>
<para>If you can not find the file that you want to open, you can use <application>
Search Tool</application>. To start <application>Search Tool</application>,
choose <menuchoice><guimenu>Actions</guimenu><guimenuitem>Search for
Files</guimenuitem></menuchoice>.</para>
<sect3 id="gosnautilus-447">
<title>Viewing Files in the View Pane</title>
<indexterm><primary>file manager</primary><secondary>viewing files in view
pane</secondary></indexterm><indexterm><primary>view pane</primary><secondary>
viewing files in</secondary></indexterm><indexterm><primary>viewer components
</primary></indexterm><para><application>Nautilus</application> contains viewer
components that enable you to display particular types of file in the view
pane. For example, you can display the following types of files in the view
pane:</para>
<itemizedlist>
<listitem><para>Plain text files</para></listitem>
<listitem><para>HTML files</para></listitem>
<listitem><para>PostScript files</para></listitem>
<listitem><para>Portable Document Format (PDF) files</para></listitem>
<listitem><para>Portable Network Graphics (PNG) files</para></listitem>
<listitem><para>Joint Photographic Experts Group (JPEG) files</para></listitem>
</itemizedlist>
<para>When you display a file in the view pane, the viewer component might
add menu items to the Nautilus menus. The menu items relate to the file type
that is displayed. For example, when you display a PNG file, the <guimenu>
View</guimenu> menu contains <guisubmenu>Interpolation</guisubmenu>, <guisubmenu>
Dither</guisubmenu>, and other submenus. </para>
<para>Also, when you display a file in the view pane, you can use the <application>
Nautilus</application> zoom buttons to change the size of the item.</para>
</sect3>
<sect3 id="gosnautilus-29">
<title>To Execute the Default Action</title>
<indexterm><primary>file manager</primary><secondary>executing default actions
for files</secondary></indexterm><para>To execute the default action for a
file, double-click on the file. For example, if the default action for plain
text documents is to display the file in a text viewer. In this case, you
can double-click on the file to  display the file in a text viewer.</para>
<para>You can set your <application>Nautilus</application> preferences so
that you click once on a file to execute the default action. For more information,
see <xref linkend="gosnautilus-56"/>.</para>
</sect3>
<sect3 id="gosnautilus-30">
<title>To Execute Non-Default Actions Using the Open With Submenu</title>
<indexterm><primary>file manager</primary><secondary>executing non-default
actions for files</secondary></indexterm><para>To execute actions other than
the default action for a file, perform the following steps:</para>
<orderedlist>
<listitem><para>In the view pane, select the file that you want to perform
an action on. Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Open With</guimenuitem></menuchoice>. The <guisubmenu>Open With</guisubmenu>
submenu opens. The items in this submenu correspond to the contents of the
following parts of the <application>File Types and Programs</application>
desktop preference tool:<itemizedlist>
<listitem><para><guilabel>Default action</guilabel> drop-down list box in
the <guilabel>Edit file type</guilabel> dialog</para></listitem>
<listitem><para><guilabel>Viewing component</guilabel> drop-down list box
in the <guilabel>Edit file type</guilabel> dialog</para></listitem>
</itemizedlist></para></listitem>
<listitem><para>Choose an action from the <guisubmenu>Open With</guisubmenu>
submenu.</para></listitem>
</orderedlist>
</sect3>
<sect3 id="gosnautilus-73">
<title>To Execute Other Actions When Displaying a File</title>
<indexterm><primary>file manager</primary><secondary>executing other actions
for files</secondary></indexterm><para>When you display a file in the view
pane, the side pane might contain buttons. <xref linkend="gosnautilus-FIG-4"/>
shows the side pane when a text file is displayed in the view pane.</para>
<figure id="gosnautilus-FIG-4">
<title>Side Pane When a File is Displayed in the View Pane</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_file_navigation_pane.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows side pane. Contains: file icon, file information, file emblem, Open with gedit, Open with buttons, tabs.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
</figure>
<para>The buttons represent any actions that are defined in the <application>
File Types and Programs</application> desktop preference tool. The actions
are defined in the <guilabel>Default action</guilabel> drop-down list box
in the <guilabel>Edit file type</guilabel> dialog in the <application>File
Types and Programs</application> preference tool. Click on a button to execute
an action. For example, if an action defined for plain text documents is to
open the file in <application>gedit</application>. If this action is defined,
an <guibutton>Open with gedit</guibutton> button is displayed in the side
pane. To open the file in the <application>gedit</application> application,
click on the <guibutton>Open with gedit</guibutton> button.</para>
<note><para>A button that represents the action does not appear in the side
pane if the actions are excluded in either of the following dialogs: <itemizedlist>
<listitem><para><guilabel>Open with Other</guilabel></para></listitem>
<listitem><para><guilabel>View as Other</guilabel></para></listitem>
</itemizedlist></para>
</note>
</sect3>
</sect2>

<sect2 id="gosnautilus-445">
<title>Using the Start Here Location</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_starthere_launcher.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Nautilus Start Here icon.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<indexterm><primary>file manager</primary><secondary>Start Here location</secondary>
<see>Start Here location</see></indexterm><indexterm><primary>Start Here location
</primary><secondary>using</secondary></indexterm><para>The <guilabel>Start
Here</guilabel> location enables you to access the following desktop functions:
</para>
<itemizedlist>
<listitem><para><guilabel>Applications</guilabel></para>
<para>Double-click on <guilabel>Applications</guilabel> to access your key
GNOME applications. You can also access the <guimenu>Applications</guimenu>
menu through the <guimenu>GNOME Menu</guimenu> and the Menu Panel.</para>
</listitem>
<listitem><para><guilabel>Desktop Preferences</guilabel></para>
<para>Double-click on <guilabel>Preferences</guilabel> to customize your desktop.
For more information on how to customize your desktop, see <xref linkend="part2-1"/>.
</para></listitem>
<listitem><para>Programs that enable you to configure your system as a server,
and to choose other system settings.</para></listitem>
</itemizedlist>
<para>You can access the <guilabel>Start Here</guilabel> location in the following
ways:</para>
<itemizedlist>
<listitem><para>From a <application>Nautilus</application> window</para>
<para>Choose <menuchoice><guimenu>Go</guimenu><guimenuitem>Start Here
</guimenuitem></menuchoice>. The contents of the <guilabel>Start Here</guilabel>
location are displayed in the window.</para></listitem>
<listitem><para>From the desktop background</para>
<para>Double-click on the <guilabel>Start Here</guilabel> object on the desktop
background. The contents of the <guilabel>Start Here</guilabel> location are
displayed in a <application>Nautilus</application> window.</para></listitem>
</itemizedlist>
</sect2>
<sect2 id="gosnautilus-34">
<title>To Navigate the World Wide Web</title>
<indexterm><primary>file manager</primary><secondary>World Wide Web</secondary>
<see>World Wide Web</see></indexterm><indexterm><primary>World Wide Web</primary>
<secondary>navigating</secondary></indexterm><para>You can use <application>
Nautilus</application> as a browser to view websites, but you can only view
pages that contain HTML code. You can not view pages that contain other types
of code, for example, JavaScript. </para>
<para>To view a HTML-only website, enter the URL for the site in the field
on the location bar, then press <keycap>Return</keycap>. The contents of the
site are displayed in the view pane. To reload the current page, click on
the <guibutton>Reload</guibutton> button.</para>
<para>When you display a website in the view pane, the side pane might contain
buttons. The buttons represent any actions that you can perform on the web
page that is displayed in the view pane. To execute an action on the web page,
click on the button that represents the action.</para>
<para>For example, when you display a HTML document in the view pane, an <guibutton>
Open with Netscape</guibutton> button is displayed in the side pane. To open
the file in <application>Netscape</application>, click on the <guibutton>
Open with Netscape</guibutton> button.</para>
</sect2>
<sect2 id="gosnautilus-37">
<title>To Access FTP Sites</title>
<indexterm><primary>FTP sites</primary><secondary>accessing</secondary></indexterm>
<indexterm><primary>file manager</primary><secondary>FTP sites</secondary>
<see>FTP sites</see></indexterm><para>You can use <application>Nautilus</application>
to access FTP sites. To access an FTP site, enter the URL for the site in
the field on the location bar, then press <keycap>Return</keycap>. The contents
of the site are displayed in the view pane. To copy a file from the FTP site,
drag the file to the new location.</para>
</sect2>
<sect2 id="gosnautilus-5">
<title>Using Your Navigation History</title>
<indexterm><primary>file manager</primary><secondary>navigating history list
</secondary></indexterm><para><application>Nautilus</application> maintains
a history list of files, folders, and URLs. You can use the history list to
navigate to files, folders, and URLs that you have recently visited. The following
sections describe how to navigate your history list.</para>
<para>To clear your history list choose <menuchoice><guimenu>Go</guimenu>
<guimenuitem>Clear History</guimenuitem></menuchoice>.</para>
<sect3 id="gosnautilus-77">
<title>To Navigate Your History List Using the Go Menu</title>
<para>To display a list of previously-viewed items, choose the <guimenu>Go
</guimenu> menu. Your history list is displayed in the lower part of the <guimenu>
Go</guimenu> menu. To open to an item in your history list, choose the item
from the <guimenu>Go</guimenu> menu.</para>
</sect3>
<sect3 id="gosnautilus-78">
<title>To Navigate Your History List Using the Toolbar</title>
<para>To use the toolbar to navigate your history list, perform one of the
following actions:</para>
<itemizedlist>
<listitem><para>To open the previous file, folder, or URL in your history
list, click on the <guibutton>Back</guibutton> toolbar button.</para></listitem>
<listitem><para>To open the next file, folder, or URL in your history list,
click on the <guibutton>Forward</guibutton> toolbar button. </para></listitem>
<listitem><para>To display a list of previously-viewed items, right-click
on the <guibutton>Back</guibutton> toolbar button. To open an item from this
list, click on the item.</para></listitem>
</itemizedlist>
</sect3>
<sect3 id="gosnautilus-80">
<title>To Navigate Your History List Using the History Tabbed Pane</title>
<indexterm><primary>file manager</primary><secondary>tabbed panes</secondary>
<tertiary>History</tertiary></indexterm><para>To display the <guilabel>History
</guilabel> tabbed pane, click on the <guilabel>History</guilabel> tab in
the side pane. The <guilabel>History</guilabel> tabbed pane displays a list
of your previously-viewed items, as shown in the following figure:</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_history_tab.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows History tabbed pane with sample file, folder, and URL locations.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para>To display an item from your history list in the view pane, click on
the item in the <guilabel>History</guilabel> tabbed pane.</para>
</sect3>
</sect2>
<sect2 id="gosnautilus-36">
<title>To Bookmark Your Favorite Locations</title>
<indexterm><primary>World Wide Web</primary><secondary>bookmarks</secondary>
</indexterm><indexterm><primary>file manager</primary><secondary>bookmarks
</secondary></indexterm><para>To access an item in your bookmarks, choose
the item from the <guimenu>Bookmarks</guimenu> menu. You can add your favorite
locations to your <guimenu>Bookmarks</guimenu> menu. You can add bookmarks
to locations on the Internet, or to files and folders in your file system.
</para>
<para>By default, <application>Nautilus</application> contains certain bookmarks.
You can set your <application>Nautilus</application> preferences so that the
default bookmarks are excluded from the <guimenu>Bookmarks</guimenu> menu.
For more information, see <xref linkend="gosnautilus-17"/>. </para>
<sect3 id="gosnautilus-40">
<title>To Add a Bookmark</title>
<para>To add a bookmark, display the item that you want to bookmark in the
view pane. Choose <menuchoice><guimenu>Bookmarks</guimenu><guimenuitem>
Add Bookmark</guimenuitem></menuchoice>.</para>
</sect3>
<sect3 id="gosnautilus-41">
<title>To Edit a Bookmark</title>
<para>To edit your bookmarks perform the following steps:</para>
<orderedlist>
<listitem><para>Choose <menuchoice><guimenu>Bookmarks</guimenu><guimenuitem>
Edit Bookmarks</guimenuitem></menuchoice>. A <guilabel>Bookmarks</guilabel>
dialog is displayed. </para></listitem>
<listitem><para>To edit a bookmark, select the bookmark on the left side of
the <guilabel>Bookmarks</guilabel> dialog. Edit the details for the bookmark
on the right side of the <guilabel>Bookmarks</guilabel> dialog as follows:
</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colwidth="27.27*"/><colspec
colwidth="72.73*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Dialog Element</para></entry><entry
valign="top"><para>Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Name</guilabel></para></entry><entry
valign="top"><para>Use this text box to specify the name that identifies the
bookmark in the <guimenu>Bookmarks</guimenu> menu.</para></entry></row>
<row><entry valign="top"><para><guilabel>Location</guilabel></para></entry>
<entry valign="top"><para>Use this field to specify the location of the bookmark.
</para></entry></row>
</tbody>
</tgroup>
</informaltable>
</listitem>
<listitem><para>To remove a bookmark, select the bookmark on the left  side
of the dialog. Click <guilabel>Remove</guilabel>. </para></listitem>
</orderedlist>
</sect3>
</sect2>
</sect1>
<sect1 id="gosnautilus-8">
<title>Managing Your Files and Folders</title>
<indexterm><primary>file manager</primary><secondary>managing files and folders
</secondary></indexterm><para>This section describes how to work with your
files and folders.</para>
<sect2 id="gosnautilus-201">
<title>Drag-and-Drop in Nautilus</title>
<indexterm><primary>file manager</primary><secondary>drag-and-drop</secondary>
</indexterm><para>You can use drag-and-drop to perform several tasks in <application>
Nautilus</application>. When you drag-and-drop, the mouse pointer provides
feedback about the task that you perform. <xref linkend="gosnautilus-TBL-11"/>
describes the tasks that you can perform with drag-and-drop. The table also
shows the mouse pointers that appear when you drag-and-drop.</para>
<table frame="topbot" id="gosnautilus-TBL-11">
<title>Drag-and-Drop in Nautilus</title>
<tgroup cols="3" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="36.36*"/>
<colspec colname="COLSPEC2" colwidth="84.73*"/><colspec colname="COLSPEC1"
colwidth="42.54*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Task</para></entry><entry colname="COLSPEC2"
valign="top"><para>Action</para></entry><entry colname="COLSPEC1" valign="top"><para>
Mouse Pointer</para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><para>Move an item</para></entry>
<entry colname="COLSPEC2" valign="top"><para>Drag the item to the new location.
</para></entry><entry colname="COLSPEC1" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/move_pointer.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows move pointer.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Copy an item</para></entry>
<entry colname="COLSPEC2" valign="top"><para>Press-and-hold <keycap>Ctrl</keycap>,
then drag the item to the new location.</para></entry><entry colname="COLSPEC1"
valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/copy_pointer.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows copy pointer.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para>Link to an item</para></entry>
<entry colname="COLSPEC2" valign="top"><para>Press-and-hold <keycap>Shift
</keycap>, then drag the item to the location where you want the link to reside.
</para></entry><entry colname="COLSPEC1" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/link_pointer.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows link pointer.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Ask what to do with the
item you drag</para></entry><entry colname="COLSPEC2" valign="top"><para>
Press-and-hold <keycap>Alt</keycap>, then drag the item to the location where
you want the item to reside. Release the mouse button. A popup menu appears.
Choose one of the following items from the popup menu:</para><itemizedlist>
<listitem><para><guimenuitem>Move here</guimenuitem></para>
<para>Moves the item to the location.</para></listitem>
<listitem><para><guimenuitem>Copy here</guimenuitem></para>
<para>Copies the item to the  location. </para></listitem>
<listitem><para><guimenuitem>Link here</guimenuitem></para>
<para>Creates a symbolic link to the item at the location.</para></listitem>
<listitem><para><guimenuitem>Cancel</guimenuitem></para>
<para>Cancels the drag-and-drop operation.</para></listitem>
</itemizedlist></entry><entry colname="COLSPEC1" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/ask_pointer.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows ask pointer.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry></row>
</tbody>
</tgroup>
</table>
</sect2>
<sect2 id="gosnautilus-202">
<title>To Select Files and Folders</title>
<indexterm><primary>file manager</primary><secondary>selecting files and folders
</secondary></indexterm><para>You can select files and folders in several
ways in <application>Nautilus</application>.  <xref linkend="gosnautilus-TBL-10"/>
describes how to select items in <application>Nautilus</application> windows
and on the <application>Nautilus</application> desktop background.</para>
<table frame="topbot" id="gosnautilus-TBL-10">
<title>Selecting Items in Nautilus</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="36.36*"/>
<colspec colname="COLSPEC2" colwidth="63.64*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Task</para></entry><entry colname="COLSPEC2"
valign="top"><para>Action</para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><para>Select an item</para></entry>
<entry colname="COLSPEC2" valign="top"><para>Click on the item.</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para>Select a group of contiguous
items</para></entry><entry colname="COLSPEC2" valign="top"><para>Press and
hold <keycap>Shift</keycap>. Click on the first item in the group, then click
on the last item in the group.</para><para>Alternatively, drag around the
files that you want to select.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para>Select multiple items</para></entry>
<entry colname="COLSPEC2" valign="top"><para>Press-and-hold <keycap>Ctrl</keycap>.
Click on the items that you want to select.</para><para>Alternatively, press-and-hold <keycap>
Ctrl</keycap>, then drag around the files that you want to select.</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para>Select all items in a folder
</para></entry><entry colname="COLSPEC2" valign="top"><para>Choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Select All Files</guimenuitem>
</menuchoice>.</para></entry></row>
</tbody>
</tgroup>
</table>
<para>To perform the default action on an item, double-click on the item.
You can set your <application>Nautilus</application> preferences so that you
work with <application>Nautilus</application> as follows:</para>
<itemizedlist>
<listitem><para>Click once on a file to execute the default action.</para>
</listitem>
<listitem><para>Point to an item to select the item.</para></listitem>
</itemizedlist>
<para>For more information, see <xref linkend="gosnautilus-56"/>.</para>
</sect2>
<sect2 id="gosnautilus-9">
<title>To Move a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>moving files and folders
</secondary></indexterm><para>The following sections describe the ways you
can move a file or folder.</para>
<sect3 id="gosnautilus-537">
<title>Drag to the New Location in a View Pane</title>
<para>To drag a file or folder to a new location in a view pane, perform the
following steps:</para>
<orderedlist>
<listitem><para>Open a <application>Nautilus</application> window. Choose <menuchoice>
<guimenu>File</guimenu><guimenuitem>New Window</guimenuitem></menuchoice>
to open a second <application>Nautilus</application> window.</para></listitem>
<listitem><para>In one window, select the folder from which you want to move
the file or folder. In the other window, select the folder to which you want
to move the file or folder.</para></listitem>
<listitem><para>Drag the file or folder that you want to move to the new location
in the other window.</para></listitem>
</orderedlist>
<para>To move the file or folder to a folder that is one level below the current
location, do not open a new window. Instead, drag the file or folder to the
new location in the same window.</para>
</sect3>
<sect3 id="gosnautilus-538">
<title>Cut and Paste to the New Location</title>
<para>You can cut a file or folder and paste the file or folder into another
folder, as follows:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to move, then choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Cut File</guimenuitem></menuchoice>.
</para></listitem>
<listitem><para>Open the folder to which you want to move the file or folder,
then choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Paste
Files</guimenuitem></menuchoice>.</para></listitem>
</orderedlist>

</sect3>
<sect3 id="gosnautilus-539">
<title>Drag to the New Location in the Tree Tabbed Pane</title>
<para>You can drag a file or folder from the view pane to a location on the <guilabel>
Tree</guilabel> tabbed pane. Alternatively, you can drag a file or folder
within the <guilabel>Tree</guilabel> tabbed pane to another location in the <guilabel>
Tree</guilabel> tabbed pane.</para>
</sect3>
</sect2>
<sect2 id="gosnautilus-10">
<title>To Copy a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>copying files and folders
</secondary></indexterm><para>The following sections describe the ways you
can copy a file or folder.</para>
<sect3 id="gosnautilus-640">
<title>Drag to the New Location in a View Pane</title>
<para>To copy a file or folder perform the following steps:</para>
<orderedlist>
<listitem><para>Open a <application>Nautilus</application> window. Choose <menuchoice>
<guimenu>File</guimenu><guimenuitem>New Window</guimenuitem></menuchoice>
to open a second <application>Nautilus</application> window.</para></listitem>
<listitem><para>In one window, select the folder from which you want to copy
the file or folder. In the other window, select the folder to which you want
to copy the file or folder.</para></listitem>
<listitem><para>Press-and-hold <keycap>Ctrl</keycap>, then drag the file or
folder to the new location in the other window.</para></listitem>
</orderedlist>
<para>To copy the file or folder to a folder that is one level below the current
location, do not open a new window. Instead, press <keycap>Ctrl</keycap> and
drag the file or folder to the new location in the same window.</para>
</sect3>
<sect3 id="gosnautilus-441">
<title>Copy and Paste to the New Location</title>
<para>You can copy a file or folder and paste the file or folder into another
folder, as follows:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to copy, then choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Copy File</guimenuitem></menuchoice>.
</para></listitem>
<listitem><para>Open the folder to which you want to copy the file or folder,
then choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Paste
Files</guimenuitem></menuchoice>.</para></listitem>
</orderedlist>
</sect3>
</sect2>
<sect2 id="gosnautilus-82">
<title>To Duplicate a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>duplicating files and
folders</secondary></indexterm><para>To create a copy of a file or folder
in the current folder perform the following steps:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to duplicate in the
view pane.</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Duplicate</guimenuitem></menuchoice>. Alternatively, right-click on the file
or folder in the view pane, then choose <guimenuitem>Duplicate</guimenuitem>.
</para>
<para>A copy of the file or folder appears in the current folder.</para></listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-11">
<title>To Create a Folder</title>
<indexterm><primary>file manager</primary><secondary>creating folders</secondary>
</indexterm><para>To create a folder perform the following steps:</para>
<orderedlist>
<listitem><para>Select the folder where you want to create the new folder.
</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
New Folder</guimenuitem></menuchoice>. Alternatively, right-click on the background
of the view pane, then choose <guimenuitem>New Folder</guimenuitem>.</para>
<para>An <guilabel>untitled</guilabel> folder is added to the view pane. The
name of the folder is selected.</para></listitem>
<listitem><para>Type a name for the folder, then press <keycap>Return</keycap>. 
</para></listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-12">
<title>To Rename a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>renaming folders</secondary>
</indexterm><para>To rename a file or folder perform the following steps:
</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to rename in the view
pane.</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Rename</guimenuitem></menuchoice>. Alternatively, right-click on the file
or folder in the view pane, then choose <guimenuitem>Rename</guimenuitem>.
</para>
<para>The name of the file or folder is selected.</para></listitem>
<listitem><para>Type a new name for the file or folder, then press <keycap>
Return</keycap>.</para></listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-13">
<title>To Move a File or Folder to Trash</title>
<indexterm><primary>file manager</primary><secondary>Trash</secondary><see>
Trash</see></indexterm><indexterm><primary>Trash</primary><secondary>moving
files or folders to</secondary></indexterm><para>To move a file or folder
to <guilabel>Trash</guilabel> perform the following steps:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to move to <guilabel>
Trash</guilabel> in the view pane.</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Move to Trash</guimenuitem></menuchoice>. Alternatively, right-click on the
file or folder in the view pane, then choose <guimenuitem>Move to Trash</guimenuitem>.
</para></listitem>
</orderedlist>
<para>Alternatively, you can drag the file or folder from the view pane to
the <guilabel>Trash</guilabel> icon on the desktop.</para>
</sect2>
<sect2 id="gosnautilus-443">
<title>To Delete a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>deleting files or folders
</secondary></indexterm><para>When you delete a file or folder, the file or
folder is not moved to <guilabel>Trash</guilabel>, but is deleted from your
file system immediately. The <guimenuitem>Delete</guimenuitem> menu item is
only available if you select the <guilabel>Include a Delete command that bypasses
Trash</guilabel> option in the <guilabel>Preferences</guilabel> dialog. For
more information on this option, see <xref linkend="gosnautilus-55"/>.</para>
<para>To delete a file or folder perform the following steps:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to delete in the view
pane.</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Delete</guimenuitem></menuchoice>. Alternatively, right-click on the file
or folder in the view pane, then choose <guimenuitem>Delete</guimenuitem>.
</para></listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-14">
<title>To Create a Symbolic Link to a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>creating symbolic link
</secondary></indexterm><para>A symbolic link is a special type of file that
points to another file or folder. When you perform an action on a symbolic
link, the action is performed on the file or folder to which the symbolic
link points. However, when you delete a symbolic link, you delete the link
file, not the file to which the symbolic link points.</para>
<para>To create a symbolic link to a file or folder, select the file or folder
to which you want to create a link. Choose <menuchoice><guimenu>File
</guimenu><guimenuitem>Make Link</guimenuitem></menuchoice>. A link to the
file or folder is added to the current folder. </para>
<para>Alternatively, press-and-hold <keycap>Shift</keycap>. Drag the item
to which you want to create a link to the location where you want to place
the link.</para>
<para>By default, <application>Nautilus</application> adds an emblem to symbolic
links.</para>
</sect2>
<sect2 id="gosnautilus-430">
<title>To Change Permissions</title>
<indexterm><primary>file manager</primary><secondary>changing permissions
</secondary></indexterm><para>To change the permissions on a file or folder
perform the following steps:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to change. </para>
</listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Properties</guimenuitem></menuchoice>. A properties dialog is displayed.</para>
</listitem>
<listitem><para>Click on the <guilabel>Permissions</guilabel> tab. In the <guilabel>
Permissions</guilabel> tabbed section, use the drop-down list boxes and check
boxes to change the permissions for the file or folder.</para></listitem>
<listitem><para>Click <guibutton>Close</guibutton> to close the properties
dialog.</para></listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-44">
<title>Using Trash</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_trash_launcher.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Nautilus Trash icon.</phrase>
  </textobject>
</mediaobject>
</screenshot>
<indexterm><primary>Trash</primary><secondary>introduction</secondary></indexterm>
<para>You can move the following items to <guilabel>Trash</guilabel>:</para>
<itemizedlist>
<listitem><para>Files</para></listitem>
<listitem><para>Folders</para></listitem>
<listitem><para>Desktop background objects</para></listitem>
</itemizedlist>
<para>When you move an item to <guilabel>Trash</guilabel>, the item is temporarily
stored in your <filename>/.Trash</filename> directory. If you need to retrieve
a file from <guilabel>Trash</guilabel>, you can display <guilabel>Trash</guilabel>
and move the file out of <guilabel>Trash</guilabel>.</para>
<para>When you empty <guilabel>Trash</guilabel>, you delete the contents of <guilabel>
Trash</guilabel> permanently. </para>
<sect3 id="gosnautilus-107">
<title>To Display Trash</title>
<indexterm><primary>Trash</primary><secondary>displaying</secondary></indexterm>
<para>You can display the contents of <guilabel>Trash</guilabel> in the following
ways:</para>
<itemizedlist>
<listitem><para>From a <application>Nautilus</application> window</para>
<para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>Show
Trash</guimenuitem></menuchoice>. The contents of <guilabel>Trash</guilabel>
are displayed in the window.</para></listitem>
<listitem><para>From the desktop background</para>
<para>Double-click on the <guilabel>Trash</guilabel> object on the desktop
background.</para></listitem>
</itemizedlist>
</sect3>
<sect3 id="gosnautilus-108">
<title>To Empty Trash</title>
<indexterm><primary>Trash</primary><secondary>emptying</secondary></indexterm>
<para>You can empty the contents of <guilabel>Trash</guilabel> in the following
ways:</para>
<itemizedlist>
<listitem><para>From a <application>Nautilus</application> window</para>
<para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>Empty
Trash</guimenuitem></menuchoice>.</para></listitem>
<listitem><para>From the desktop background</para>
<para>Right-click on the <guilabel>Trash</guilabel> object, then choose <guimenuitem>
Empty Trash</guimenuitem>.</para></listitem>
</itemizedlist>
</sect3>
</sect2>
<sect2 id="gosnautilus-200">
<title>Adding Notes to Folders</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_notes_tab.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Notes tabbed pane.</phrase>
  </textobject>
</mediaobject>
</screenshot>
<indexterm><primary>file manager</primary><secondary>tabbed panes</secondary>
<tertiary>Notes</tertiary></indexterm><indexterm><primary>notes, adding to
folders</primary></indexterm><para>You can use the <guilabel>Notes</guilabel>
tab to add a note to a folder. To add a note to a folder perform the following
steps:</para>
<orderedlist>
<listitem><para>Display the folder in the view pane.</para></listitem>
<listitem><para>Click on the <guilabel>Notes</guilabel> tab to open the <guilabel>
Notes</guilabel> tabbed pane.  The <guilabel>Notes</guilabel> tabbed pane
opens.</para></listitem>
<listitem><para>Type the note in the <guilabel>Notes</guilabel> tabbed pane. 
</para></listitem>
</orderedlist>
</sect2>
</sect1>
<sect1 id="gosnautilus-440">
<title>Running Scripts From Nautilus</title>
<indexterm><primary>file managers</primary><secondary>running scripts</secondary>
</indexterm><indexterm><primary>scripts, running from file manager</primary>
</indexterm><para><application>Nautilus</application> includes a special folder
where you can store your scripts. When you add an executable file to this
folder, the file is added to the <menuchoice><guimenu>File</guimenu>
<guimenuitem>Scripts</guimenuitem></menuchoice> submenu. To run a script choose <menuchoice>
<guimenu>File</guimenu><guimenuitem>Scripts</guimenuitem></menuchoice>,
then choose the script that you want to run from the submenu. </para>
<para>To run a script on a particular file, select the file in the view pane.
Choose <menuchoice><guimenu>File</guimenu><guimenuitem>Scripts</guimenuitem>
</menuchoice>, then choose the script that you want to run on the file from
the submenu. You can also select multiple files to run your scripts on.</para>
<para>To view the contents of your scripts folder, choose <menuchoice><guimenu>
File</guimenu><guisubmenu>Scripts</guisubmenu><guimenuitem>
Open Scripts Folder</guimenuitem></menuchoice>. The <guimenu>Scripts</guimenu>
folder corresponds to the <filename>$GNOME_BASEDIR/.gnome2/nautilus-scripts
</filename> directory. </para>
</sect1>
<sect1 id="gosnautilus-203">
<title>Modifying the Appearance of Files and Folders</title>
<indexterm><primary>file manager</primary><secondary>modifying appearance
of files and folders</secondary></indexterm><para><application>Nautilus</application>
enables you to modify the appearance of your files and folders in several
ways, as described in the following sections.</para>
<sect2 id="gosnautilus-112">
<title>To Add an Emblem to a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>emblems</secondary><tertiary>
adding</tertiary></indexterm><para>You can add an emblem to an item in either
of the following ways: </para>
<itemizedlist>
<listitem><para>Use the <guilabel>Properties</guilabel> dialog.</para></listitem>
<listitem><para>Use the <guilabel>Backgrounds and Emblems</guilabel> dialog.
</para></listitem>
</itemizedlist>
<para>To add an emblem to an item with the properties dialog, perform the
following steps: </para>
<orderedlist>
<listitem><para>Select the item to which you want to add an emblem.</para>
</listitem>
<listitem><para>Right-click on the item, then choose <guimenuitem>Properties
</guimenuitem>. A properties dialog is displayed.</para></listitem>
<listitem><para>Click on the <guilabel>Emblems</guilabel> tab to display the <guilabel>
Emblems</guilabel> tabbed section, as shown in the following figure:</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_prop_emblem_window.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Properties dialog, Emblems tabbed section.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
</listitem>
<listitem><para>Select the emblem to add to the item.</para></listitem>
<listitem><para>Click <guibutton>Close</guibutton> to close the properties
dialog.</para></listitem>
</orderedlist>
<para>To add an emblem to an item with the <guilabel>Backgrounds and Emblems
</guilabel> dialog, perform the following steps: </para>
<orderedlist>
<listitem><para>Choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>
Backgrounds and Emblems</guimenuitem></menuchoice>. The <guilabel>Backgrounds
and Emblems</guilabel> dialog is displayed.</para></listitem>
<listitem><para>To display a list of emblems that you can add, click on the <guibutton>
Emblems</guibutton> button.</para></listitem>
<listitem><para>To add an emblem to an item, drag the emblem to the item.
</para></listitem>
<listitem><para>Click <guibutton>Done</guibutton> to close the dialog.</para>
</listitem>
</orderedlist>
</sect2>
<sect2 id="gosnautilus-51">
<title>To Modify the Icon for a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>icons</secondary><tertiary>
modifying</tertiary></indexterm><para>To change the icon that represents an
individual file or folder, perform the following steps:</para>
<orderedlist>
<listitem><para>Select the file or folder that you want to change.</para>
</listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Properties</guimenuitem></menuchoice>. A properties dialog is displayed. 
</para></listitem>
<listitem><para>On the <guilabel>Basic</guilabel> tabbed section, click on
the <guibutton>Select Custom Icon</guibutton> button. A <guilabel>Select an
icon</guilabel> dialog is displayed. </para></listitem>
<listitem><para>Use the <guilabel>Select an icon</guilabel> dialog to choose
the icon to represent the file or folder. </para></listitem>
<listitem><para>Click <guibutton>Close</guibutton> to close the properties
dialog.</para></listitem>
</orderedlist>
<para>To change the icon that represents a file type, use the <application>
File Types and Programs</application> desktop preference tool. To open the <application>
File Types and Programs</application> desktop preference tool, choose <menuchoice>
<guimenu>Applications</guimenu><guisubmenu>Preferences</guisubmenu>
<guisubmenu>Advanced</guisubmenu><guimenuitem>File Types and Programs
</guimenuitem></menuchoice>. </para>
<para>To restore an icon from a custom icon to the default icon specified
in the <application>File Types and Programs</application> desktop preference
tool, right-click on the icon then choose <guimenuitem>Remove Custom Image
</guimenuitem>. Alternatively, click on the <guilabel>Remove Custom Icon</guilabel>
button on the <guilabel>Properties</guilabel> dialog.</para>
</sect2>
<sect2 id="gosnautilus-102">
<title>To Change the Size of Items in a View</title>
<indexterm><primary>file manager</primary><secondary>zooming in and out</secondary>
</indexterm><para>You can change the size of items in a view. You change the
size if the view displays a file or a folder. You can change the size of items
in a view in the following ways:</para>
<itemizedlist>
<listitem><para>To enlarge the size of items in a view, choose <menuchoice>
<guimenu>View</guimenu><guimenuitem>Zoom In</guimenuitem></menuchoice>.
</para></listitem>
<listitem><para>To reduce the size of items in a view, choose <menuchoice>
<guimenu>View</guimenu><guimenuitem>Zoom Out</guimenuitem></menuchoice>.
</para></listitem>
<listitem><para>To return items in a view to the normal size, choose <menuchoice>
<guimenu>View</guimenu><guimenuitem>Normal Size</guimenuitem></menuchoice>.
</para></listitem>
</itemizedlist>
<para>You can also use the zoom buttons on the location bar to change the
size of items in a view. <xref linkend="gosnautilus-TBL-42"/> describes how
to use the zoom buttons.</para>
<table frame="topbot" id="gosnautilus-TBL-42">
<title>Zoom Buttons</title>
<tgroup cols="3" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="21.98*"/>
<colspec colname="COLSPEC1" colwidth="32.86*"/><colspec colname="COLSPEC2"
colwidth="44.17*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Button</para></entry><entry valign="top"><para>
Button Name </para></entry><entry valign="top"><para>Description</para></entry>
</row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_zoom_out_button.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows Zoom Out button.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry colname="COLSPEC1" valign="top"><para><guibutton>
Zoom Out</guibutton> button</para></entry><entry colname="COLSPEC2" valign="top"><para>
Click on this button to reduce the size of items in a view.</para></entry>
</row>
<row><entry valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_normal_size_button.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Normal Size button.
</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry valign="top"><para><guibutton>Normal Size</guibutton>
button </para></entry><entry valign="top"><para>Click on this button to return
items in a view to normal size.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_zoom_in_button.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>
Shows Zoom In button.</phrase>
  </textobject>
</mediaobject>
</screenshot></entry><entry colname="COLSPEC1" valign="top"><para><guibutton>
Zoom In</guibutton> button</para></entry><entry colname="COLSPEC2" valign="top"><para>
Click on this button to enlarge the size of items in a view.</para></entry>
</row>
</tbody>
</tgroup>
</table>
<para><application>Nautilus</application> remembers the size of items in a
particular folder. The next time that you display the folder, the items are
displayed in the size you selected. In other words, when you change the size
of items in a folder, you customize the folder to display the items at that
size. To return the size of the items to the default size specified in your
preferences, choose <menuchoice><guimenu>View</guimenu><guimenuitem>
Reset View to Defaults</guimenuitem></menuchoice>.</para>
</sect2>
<sect2 id="gosnautilus-7">
<title>Using Views to Display Your Files and Folders</title>
<indexterm><primary>viewer components</primary></indexterm><indexterm><primary>
file manager</primary><secondary>views</secondary><tertiary>introduction</tertiary>
</indexterm><para><application>Nautilus</application> provides several ways
to display the contents of your files. <application>Nautilus</application>
includes viewer components that enable you to display particular types of
file in the view pane. For example, you can use a web page viewer to display
HTML files in the view pane. You can use a text viewer to view plain text
files in the view pane.</para>
<para>You can also use <application>Nautilus</application> to open a file
in an appropriate application. For more information, see <xref linkend="gosnautilus-28"/>.
</para>
<para><application>Nautilus</application> includes views that enable you to
display the contents of your folders in different ways. For example, you can
display the contents of a folder in the following types of view: </para>
<itemizedlist>
<listitem><para>Icon view</para>
<para>Displays the items in the folder as icons. <xref linkend="gosnautilus-FIG-1"/>
shows a folder displayed in icon view.</para></listitem>
<listitem><para>List view</para>
<para>Displays the items in the folder as a list. <xref linkend="gosnautilus-FIG-3"/>
shows a folder displayed in list view.</para><indexterm><primary>file manager
</primary><secondary>list view</secondary><tertiary>illustration</tertiary>
</indexterm>
<figure id="gosnautilus-FIG-3">
<title>Nautilus Window in List View</title>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_listview_window.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows folder in Nautilus window, contents displayed in list view.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
</figure>
</listitem>
</itemizedlist>
<para>Use the <guilabel>View</guilabel> menu to choose how to display a file
or folder. You can also use the <guilabel>View as</guilabel> drop-down list
box to choose how to display a file or folder. When you display a folder,
you can specify how you want to arrange or sort items in the folder. You can
modify the size of the items in the view pane. The following sections describe
how to work with icon view, list view, and views of files.</para>
<sect3 id="gosnautilus-100">
<title>To Choose a View in Which to Display a File or Folder</title>
<indexterm><primary>file manager</primary><secondary>views</secondary><tertiary>
choosing</tertiary></indexterm><para>Choose the type of view in which to display
the contents of a file or folder from the <guilabel>View</guilabel> menu.
Alternatively, to choose a view, choose <menuchoice><guimenu>View
</guimenu><guimenuitem>View as</guimenuitem></menuchoice>. Select the view
that you want to use from the <guilabel>View as Other</guilabel> dialog, then
click on the <guibutton>Choose</guibutton> button. </para>
<para>You can also choose the type of view from the <guilabel>View as</guilabel>
drop-down list box. The <guilabel>View as</guilabel> drop-down list box is
located at the right side of the location bar.</para>
<para>You can display different folders in different views. <application>
Nautilus</application> remembers the view that you choose for a particular
folder. The next time that you display the folder, <application>Nautilus</application>
displays the folder in that view. In other words, when you choose a view for
a folder, you customize the folder to always display in that view. To return
the view for the folder to the default view specified in your preferences,
choose <menuchoice><guimenu>View</guimenu><guimenuitem>Reset View
to Defaults</guimenuitem></menuchoice>.</para>
</sect3>
<sect3 id="gosnautilus-101">
<title>To Arrange Your Files in Icon View</title>
<indexterm><primary>file manager</primary><secondary>icon view</secondary>
<tertiary>arranging files in</tertiary></indexterm><para>When you display
the contents of a folder in icon view, you can specify how to arrange the
items in the folder. To specify how to arrange items in icon view, choose <menuchoice>
<guimenu>View</guimenu><guisubmenu>Arrange Items</guisubmenu></menuchoice>.
The <guisubmenu>Arrange Items</guisubmenu> submenu contains the following
sections:</para>
<itemizedlist>
<listitem><para>The top section contains an option that enables you to arrange
your files manually.</para></listitem>
<listitem><para>The middle section contains options that enable you to sort
your files automatically.</para></listitem>
<listitem><para>The bottom section contains options that enable you to modify
how your files are arranged.</para></listitem>
</itemizedlist>
<para>Choose the appropriate options from the submenu, as described in the
following table: </para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC6" colwidth="28.75*"/>
<colspec colname="COLSPEC7" colwidth="71.25*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Manually</guilabel></para></entry>
<entry valign="top"><para>Select this option to arrange the items manually.
To arrange the items manually, drag the items to the location you require
within the view pane.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>By Name</guilabel></para></entry>
<entry colname="COLSPEC7" valign="top"><para>Select this option to sort the
items alphabetically by name. The order of the items is not case sensitive.
If <application>Nautilus</application> is set to display hidden files, the
hidden files are shown last.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>By Size</guilabel></para></entry>
<entry colname="COLSPEC7" valign="top"><para>Select this option to sort the
items by size, with the largest item first. When you sort items by size, the
folders are sorted by the number of items in the folder. The folders are not
sorted by the total size of the items in the folder.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>By Type</guilabel></para></entry>
<entry colname="COLSPEC7" valign="top"><para>Select this option to sort the
items alphabetically by object type. The items are sorted alphabetically by
the description of their <glossterm>Multipurpose Internet Mail Extension</glossterm>
(MIME) type in the <application>File Types and Programs</application> desktop
preference tool.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>By Modification
Date</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>
Select this option to sort the items by the date the items were last modified.
The most recently modified item is first.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>By Emblems</guilabel></para></entry>
<entry colname="COLSPEC7" valign="top"><para>Select this option to sort the
items by any emblems that are added to the items. The items are sorted alphabetically
by emblem name. Items that do not have emblems are last. </para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Tighter Layout
</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>Select
this option to arrange the items so that the items are closer to each other.
</para></entry></row>
<row><entry valign="top"><para><guilabel>Reversed Order</guilabel></para></entry>
<entry valign="top"><para>Select this option to reverse the order of the option
by which you sort the items. For example, if you sort the items by name, select
the <guilabel>Reversed Order</guilabel> option to sort the items in reverse
alphabetical order.</para></entry></row>
</tbody>
</tgroup>
</informaltable>
<para><application>Nautilus</application> remembers how you arrange the items
in a particular folder. The next time that you display the folder, the items
are arranged in the way that you selected.  In other words, when you specify
how to arrange the items in a folder, you customize the folder to display
the items in that way. To return the arrangement settings of the folder to
the default arrangement settings specified in your preferences, choose <menuchoice>
<guimenu>View</guimenu><guimenuitem>Reset View to Defaults</guimenuitem>
</menuchoice>.</para>
</sect3>
<sect3 id="gosnautilus-103">
<title>To Stretch an Icon in Icon View</title>
<indexterm><primary>file manager</primary><secondary>icons</secondary><tertiary>
stretching</tertiary></indexterm><para>In icon view, you can change the size
of the icon that represents an item that is displayed. To change the size
of an item in icon view, perform the following steps:</para>
<orderedlist>
<listitem><para>Right-click on the item that you want to resize, then choose <guimenuitem>
Stretch Icon</guimenuitem>. A rectangle appears around the item, with a handle
at each corner.</para></listitem>
<listitem><para>Grab one of the handles, then drag the icon to the size that
you want.</para>
<para>To return the icon to the original size, right-click on the icon, then
choose <guimenuitem>Restore Icon's Original Size</guimenuitem>. </para></listitem>
</orderedlist>
<para>You can also stretch icons on the desktop.</para>
</sect3>
<sect3 id="gosnautilus-111">
<title>To Modify the Behavior of a View</title>
<indexterm><primary>file manager</primary><secondary>views</secondary><tertiary>
modifying behavior</tertiary></indexterm><para>You can modify the behavior
of a view in the following ways:</para>
<itemizedlist>
<listitem><para>Specify that the view is the default view for a particular
file or folder.</para></listitem>
<listitem><para>Specify that the view is the default view for a file type
or all folders.</para></listitem>
<listitem><para>Specify that the view is an item in the <guilabel>View as
</guilabel> drop-down list box for a particular file or folder.</para></listitem>
<listitem><para>Specify that the view is an item in the <guilabel>View as
</guilabel> drop-down list box for all of a particular file type or for all
folders.</para></listitem>
<listitem><para>Specify that the view is not an item in the <guilabel>View
as</guilabel> drop-down list box for a particular file or folder.</para></listitem>
</itemizedlist>
<para>To modify the behavior of a view perform the following steps:</para>
<orderedlist>
<listitem><para>Choose <menuchoice><guimenu>View</guimenu><guimenuitem>
View as</guimenuitem></menuchoice>. A <guilabel>View as Other</guilabel> dialog
is displayed, as shown in the following figure:</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_viewasother_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows View as Other dialog. Contains: Table of available views. Modify, Go There buttons. 
</phrase>
  </textobject>
</mediaobject>
</screenshot>

</listitem>
<listitem><para>Select the view that you want to modify from the table in
the dialog.</para></listitem>
<listitem><para>Click on the <guibutton>Modify</guibutton> button. A <guilabel>
Modify</guilabel> dialog is displayed. The following table describes the options
on the <guilabel>Modify</guilabel> dialog:</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colwidth="35.09*"/><colspec
colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Include in the menu for <replaceable>
item_name</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to include the view in the <guilabel>View as</guilabel>
drop-down list box for this type of item.</para></entry></row>
<row><entry valign="top"><para><guilabel>Use as default for <replaceable>
item_name</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to use the view as the default for this type of item.</para></entry>
</row>
<row><entry valign="top"><para><guilabel>Include in the menu just for <replaceable>
item_name</replaceable></guilabel></para></entry><entry valign="top"><para>
Select this option to include the view in the <guilabel>View as</guilabel>
drop-down list box for this item only.</para></entry></row>
<row><entry valign="top"><para><guilabel>Use as default just for <replaceable>
item_name</replaceable></guilabel></para></entry><entry valign="top"><para>
Select this option to use the view as the default for this item only.</para></entry>
</row>
<row><entry valign="top"><para><guilabel>Don't include in the menu for <replaceable>
item_name</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to exclude the view from the <guilabel>View as</guilabel>
drop-down list box for this type of item.</para></entry></row>
</tbody>
</tgroup>
</informaltable>
</listitem>
<listitem><para>Click <guibutton>OK</guibutton>, then click <guibutton>Cancel
</guibutton> to close the <guilabel>View as Other</guilabel> dialog.</para>
</listitem>
</orderedlist>
<note><para>You can also modify the actions that are associated with a file
type in the <application>File Types and Programs</application> desktop preference
tool. To open the <application>File Types and Programs</application>  preference
tool from the <guilabel>Open with Other</guilabel> or <guilabel>View as Other
</guilabel> dialogs, click on the <guibutton>Go There</guibutton> button. 
</para>
</note>
</sect3>
</sect2>
</sect1>
<sect1 id="gosnautilus-204">
<title>Assigning Actions to Files</title>
<indexterm><primary>file manager</primary><secondary>assigning actions to
files</secondary></indexterm><para>When you open a file, <application>Nautilus
</application> performs the default action for that file type. The <application>
File Types and Programs</application> desktop preference tool contains a table
of file types, their associated file extensions, and their default actions.
This table specifies what happens when you double-click on a file in <application>
Nautilus</application>. </para>
<para>You can also use <application>Nautilus</application> to modify the actions
that are  associated with a particular file or file type. </para>
<para>You can use the <application>File Types and Programs</application> desktop
preference tool to perform the following tasks:</para>
<itemizedlist>
<listitem><para>Specify the default action for a file type. You can also change
the default action for a file type in <application>Nautilus</application>. 
</para></listitem>
<listitem><para>Associate a file type with one or more applications. The default
action might specify to open the file in an application that is associated
with the file type.</para></listitem>
<listitem><para>Associate a file type with one or more viewers. The default
action might specify to open the file in a viewer that is associated with
the file type.</para></listitem>
<listitem><para>Associate a file extension with a MIME type. The MIME type
specifies the format of the file so that Internet browsers and email applications
can read the file.</para></listitem>
</itemizedlist>
<para>For more information on the <application>File Types and Programs</application>
desktop preference tool, see <xref linkend="goscustdoc-7"/>.</para>
<sect2 id="gosnautilus-75">
<title>To Modify Actions</title>
<indexterm><primary>file manager</primary><secondary>modifying actions</secondary>
</indexterm><para>You can modify the actions associated with a file or file
type. You can do the following:</para>
<itemizedlist>
<listitem><para>Specify that the action is the default action for a particular
file. </para></listitem>
<listitem><para>Specify that the action is the default action for a particular
file type.</para></listitem>
<listitem><para>Specify that the action is an item in the <guisubmenu>Open
With</guisubmenu> submenu for a particular file.</para></listitem>
<listitem><para>Specify that the action is an item in the <guisubmenu>Open
With</guisubmenu> submenu for a particular file type.</para></listitem>
<listitem><para>Specify that the action is not an item in the <guisubmenu>
Open With</guisubmenu> submenu for a particular file type. </para></listitem>
</itemizedlist>
<para>To modify the actions associated with a file or file type, perform the
following steps:</para>
<orderedlist>
<listitem><para>In the view pane, select the file for which you want to modify
an action. If you want to modify an action associated with a file type, select
a file of that type.</para></listitem>
<listitem><para>Choose <menuchoice><guimenu>File</guimenu><guimenuitem>
Open With</guimenuitem></menuchoice>. Perform either of the following steps:
</para>
<itemizedlist>
<listitem><para>Choose <guimenuitem>An Application</guimenuitem>. An <guilabel>
Open with Other</guilabel> dialog is displayed. </para></listitem>
<listitem><para>Choose <guimenuitem>A Viewer</guimenuitem>. A <guilabel>View
as Other</guilabel> dialog is displayed. </para></listitem>
</itemizedlist>
</listitem>
<listitem><para>From the table in the dialog, select the application or viewer
for which you want to modify the behavior.</para></listitem>
<listitem><para>Click on the <guibutton>Modify</guibutton> button. A <guilabel>
Modify</guilabel> dialog is displayed. The following table describes the options
on the <guilabel>Modify</guilabel> dialog:</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colwidth="35.09*"/><colspec
colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Include in the menu for <replaceable>
file_type</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to include the application or viewer in the <guisubmenu>
Open With</guisubmenu> submenu for this file type.</para></entry></row>
<row><entry valign="top"><para><guilabel>Use as default for <replaceable>
file_type</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to use the application or viewer as the default action
for this file type.</para></entry></row>
<row><entry valign="top"><para><guilabel>Include in the menu just for <replaceable>
filename</replaceable></guilabel></para></entry><entry valign="top"><para>
Select this option to include the application or viewer in the <guisubmenu>
Open With</guisubmenu> submenu for this file, and not for other files of this
type.</para></entry></row>
<row><entry valign="top"><para><guilabel>Use as default just for <replaceable>
 filename</replaceable></guilabel></para></entry><entry valign="top"><para>
Select this option to use the application or viewer as the default action
for this file, and not for other files of this type.</para></entry></row>
<row><entry valign="top"><para><guilabel>Don't include in the menu for <replaceable>
file_type</replaceable> items</guilabel></para></entry><entry valign="top"><para>
Select this option to exclude the application or viewer from the <guisubmenu>
Open With</guisubmenu> submenu for this file type.</para></entry></row>
</tbody>
</tgroup>
</informaltable>
</listitem>
<listitem><para>Click <guibutton>OK</guibutton>, then click <guibutton>Cancel
</guibutton> to close the dialog. </para></listitem>
</orderedlist>
<note><para>You can also modify the actions that are associated with a file
type in the <application>File Types and Programs</application> desktop preference
tool. To open the <application> File Types and Programs</application>  preference
tool from the <guilabel>Open with Other</guilabel> or <guilabel>View as Other
</guilabel> dialogs, click on the <guibutton>Go There</guibutton> button. 
</para>
</note>
</sect2>
</sect1>
<sect1 id="gosnautilus-15">
<title>Customizing Nautilus</title>
<indexterm><primary>file manager</primary><secondary>customizing</secondary>
</indexterm><para>You can customize <application>Nautilus</application> to
suit your requirements and preferences. This section describes how to customize <application>
Nautilus</application>.</para>
<sect2 id="gosnautilus-17">
<title>Setting Your Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>introduction</tertiary></indexterm><para>Use the <guilabel>Preferences
</guilabel> dialog to set preferences for the <application>Nautilus</application>
windows and desktop. To display the <guilabel>Preferences</guilabel> dialog,
choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences
</guimenuitem></menuchoice>.</para>
<para>You can set preferences in the following categories: </para>
<itemizedlist>
<listitem><para>The default settings for views. </para></listitem>
<listitem><para>The appearance of the <application>Nautilus</application>
windows and desktop.</para></listitem>
<listitem><para>The behavior of the <application>Nautilus</application> windows
and desktop.</para></listitem>
<listitem><para>The behavior of items in icon views and list views.</para>
</listitem>
<listitem><para>The information that is displayed in icon captions.</para>
</listitem>
<listitem><para>Items that are displayed in the side pane.</para></listitem>
<listitem><para>Home location and HTTP proxy details.</para></listitem>
<listitem><para>Speed tradeoffs to improve the performance of <application>
Nautilus</application>.</para></listitem>
</itemizedlist>
<sect3 id="gosnautilus-438">
<title>To Set View Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>view defaults</tertiary></indexterm><para>You can specify a default
view, and default settings for icon views and list views. To specify your
default view settings for <application>Nautilus</application> windows, choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>View Defaults</guilabel> from the <guilabel>Preferences</guilabel>
dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_view_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, View Defaults section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-30"/> lists the view settings that you
can modify. The <guilabel>Preferences</guilabel> dialog contains an <guilabel>
Icon View Defaults</guilabel> group box and a <guilabel>List View Defaults
</guilabel> group box. The group boxes contain mostly the same dialog elements.
Each dialog element is described once in <xref linkend="gosnautilus-TBL-30"/>.
</para>
<table frame="topbot" id="gosnautilus-TBL-30">
<title>View Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Dialog Element</para></entry><entry
valign="top"><para>Description</para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>View new folders using</guilabel></para></entry>
<entry valign="top"><para>Select the default view for folders. When you open
a folder, the folder is displayed in the view that you select.</para></entry>
</row>
<row><entry valign="top"><para><guilabel>Arrange Items</guilabel></para></entry>
<entry valign="top"><para>Select the characteristic by which you want to sort
the items in folders that are displayed in this view.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Default zoom level
</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>Select
the default zoom level for folders that are displayed in this view. The zoom
level specifies the size of items in a view.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Sort in reversed
order</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>
Select this option if you want to reverse the order by which items are sorted
in this view. If you select this option, the order of the characteristic you
select in <guilabel>Layout items</guilabel> is reversed. For example, if you
select <guilabel>By Name</guilabel> from the <guilabel>Layout items</guilabel>
drop-down list box. You can select the <guilabel>Sort in reversed order</guilabel>
option to sort the items in reverse alphabetical order.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Use tighter layout
</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>Icon
view only. Select this option to arrange the items so that the items in the
folder are closer to each other.</para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-54">
<title>To Set Font and Theme Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>font</tertiary></indexterm><indexterm><primary>file manager</primary>
<secondary>preferences</secondary><tertiary>theme</tertiary></indexterm><para>
You can select the font that <application>Nautilus</application> uses in windows
and the desktop background. <application>Nautilus</application> also includes
themes that you can use to change the look-and-feel of the <application>Nautilus
</application> windows and the desktop background.</para>
<para>To set your preferences for the font and theme of the <application>
Nautilus</application> windows and desktop background, choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Appearance</guilabel> from the <guilabel>Preferences</guilabel>
dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_appear_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Appearance section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-35"/> lists the font and theme settings
that you can modify. </para>
<table frame="topbot" id="gosnautilus-TBL-35">
<title>Appearance Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Dialog Element</para></entry><entry
valign="top"><para>Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Nautilus Themes</guilabel></para></entry>
<entry valign="top"><para>To change your <application>Nautilus</application>
theme, choose a theme from the list.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guibutton>Add New Theme
</guibutton></para></entry><entry colname="COLSPEC1" valign="top"><para>To
add a new <application>Nautilus</application> theme, click on the <guibutton>
Add New Theme</guibutton> button. A dialog is displayed. Use the dialog to
find the new theme.</para><para><application>Nautilus</application> themes
are stored as directories in the <filename>$GNOME_BASEDIR/share/pixmaps/nautilus/
</filename> directory.  </para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-55">
<title>To Set Preferences for New Windows</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>new windows</tertiary></indexterm><para>To set your preferences
for the <application>Nautilus</application> windows and desktop, choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Windows</guilabel> from the <guilabel>Preferences</guilabel>
dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_window_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Windows section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-36"/> lists the windows settings that
you can modify. </para>
<table frame="topbot" id="gosnautilus-TBL-36">
<title>New Window Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC8" colwidth="35.09*"/>
<colspec colname="COLSPEC9" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Open each file
or folder in a separate window</guilabel></para></entry><entry colname="COLSPEC9"
valign="top"><para>Select this option to open a new window when you open a
file or folder.</para></entry></row>
<row><entry colname="COLSPEC8"><para><guilabel>Display side bar in new windows
</guilabel></para></entry><entry colname="COLSPEC9"><para>Select this option
to display a side pane in new windows.</para></entry></row>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Display toolbar
in new windows</guilabel></para></entry><entry colname="COLSPEC9" valign="top"><para>
Select this option to display a toolbar in new windows.</para></entry></row>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Display location
bar in new windows</guilabel></para></entry><entry colname="COLSPEC9" valign="top"><para>
Select this option to display a location bar in new windows.</para></entry>
</row>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Display status
bar in new windows</guilabel></para></entry><entry colname="COLSPEC9" valign="top"><para>
Select this option to display a statusbar in new windows.</para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-448">
<title>To Set Desktop Background and Trash Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>Trash</tertiary></indexterm><indexterm><primary>file manager</primary>
<secondary>preferences</secondary><tertiary>desktop background</tertiary>
</indexterm><indexterm><primary>desktop background</primary><secondary>preferences
</secondary></indexterm><indexterm><primary>Trash</primary><secondary>preferences
</secondary></indexterm><para>To set your preferences for the <application>
Nautilus</application> desktop background and <guilabel>Trash</guilabel>,
choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences
</guimenuitem></menuchoice>. Choose <guilabel>Desktop &amp; Trash</guilabel>
from the <guilabel>Preferences</guilabel> dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_trash_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Desktop and Trash section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-43"/> lists the desktop background and <guilabel>
Trash</guilabel> settings that you can modify. </para>
<table frame="topbot" id="gosnautilus-TBL-43">
<title>Windows and Desktop Background Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC8" colwidth="35.09*"/>
<colspec colname="COLSPEC9" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Use Nautilus to draw the desktop
</guilabel></para></entry><entry valign="top"><para>Select this option to
use <application> Nautilus</application> to manage your desktop. If you do
not use <application>Nautilus</application> to manage your desktop, you can
not do the following: </para><itemizedlist>
<listitem><para>Use the <guimenu>File Manager</guimenu> menu.</para></listitem>
<listitem><para>Use <application>Nautilus</application> to change the pattern
or color of the desktop. </para></listitem>
<listitem><para>Use the <application>Nautilus</application> <guilabel> Home
</guilabel> launcher and <guilabel>Trash</guilabel> launcher. The <guilabel>
Home</guilabel> launcher and <guilabel>Trash</guilabel> launcher are not displayed
on the desktop. </para></listitem>
</itemizedlist></entry></row>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Use your home
folder as the desktop</guilabel></para></entry><entry colname="COLSPEC9" valign="top"><para>
Select this option to use your home directory as the desktop background directory,
instead of the default desktop background directory, <filename>/.nautilus/desktop
</filename>. If you select this option, the contents of your home directory
are displayed as desktop background objects.</para></entry></row>
<row><entry valign="top"><para><guilabel>Ask before emptying the Trash</guilabel></para></entry>
<entry valign="top"><para>Select this option to display a confirmation message
before <guilabel>Trash</guilabel> is emptied. </para></entry></row>
<row><entry colname="COLSPEC8" valign="top"><para><guilabel>Include a Delete
command that bypasses Trash</guilabel></para></entry><entry colname="COLSPEC9"
valign="top"><para>Select this option to add a <guimenuitem>Delete</guimenuitem>
menu item to the following menus:</para><itemizedlist>
<listitem><para>The <guimenu>File</guimenu> menu.</para></listitem>
<listitem><para>The popup menu that is displayed when you right-click on a
file, folder, or desktop background object. </para></listitem>
</itemizedlist><para>When you select an item then choose the <guimenuitem>
Delete</guimenuitem> menu item, the item is deleted from your file system
immediately.</para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-56">
<title>To Set Icon and List Views Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>views</tertiary></indexterm><indexterm><primary>file manager</primary>
<secondary>views</secondary><tertiary>preferences</tertiary></indexterm><indexterm>
<primary>file manager</primary><secondary>icon view</secondary><tertiary>
preferences</tertiary></indexterm><indexterm><primary>file manager</primary>
<secondary>list view</secondary><tertiary>preferences</tertiary></indexterm>
<para>To set your preferences for items in icon views and list views, choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Icon &amp; List Views</guilabel> from the <guilabel>Preferences
</guilabel> dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_icon_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Icon and List Views section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-37"/> lists the settings that you can
modify for items in icon views and list views. </para>
<table frame="topbot" id="gosnautilus-TBL-37">
<title>Icon and List Views Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC6" colwidth="35.09*"/>
<colspec colname="COLSPEC7" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Activate items with a single click
</guilabel></para></entry><entry valign="top"><para>Select this option to
perform the default action for an item when you click on the item. When this
option is selected, and you point to an item, the title of the item is underlined. 
</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Activate items
with a double click</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>
Select this option to perform the default action for an item when you double-click
on the item.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Execute files
when they are clicked</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>
Select this option to run an executable file when you choose the executable
file. An executable file is a text file that can execute, that is, a shell
script.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Display files
when they are clicked</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>
Select this option to display the contents of an executable file when you
choose the executable file.</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Ask each time
</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>Select
this option to display a dialog when you choose an executable file. The dialog
asks whether you want to execute the file or display the file. </para></entry>
</row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Show hidden files
</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>Select
this option to display hidden files in the view pane. The first character
in a hidden file name is a period (.).</para></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Show backup files
</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>Select
this option to display backup files in the view pane. The last character in
a backup file name is a tilde (~).</para></entry></row>
<row><entry valign="top"><para><guilabel>Show special flags in Properties
window</guilabel></para></entry><entry valign="top"><para>Select this option
to show the following special flags in the <guilabel>Permissions</guilabel>
tab on a properties dialog:</para><itemizedlist>
<listitem><para><guilabel>Set User ID</guilabel></para></listitem>
<listitem><para><guilabel>Set Group ID</guilabel></para></listitem>
<listitem><para><guilabel>Sticky</guilabel></para></listitem>
</itemizedlist></entry></row>
<row><entry colname="COLSPEC6" valign="top"><para><guilabel>Always list folders
before files</guilabel></para></entry><entry colname="COLSPEC7" valign="top"><para>
Select this option to list folders before files.</para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-439">
<title>To Set Icon Captions Preferences</title>
<indexterm><primary>file manager</primary><secondary>icons</secondary><tertiary>
caption preferences</tertiary></indexterm><indexterm><primary>file manager
</primary><secondary>preferences</secondary><tertiary>icon captions</tertiary>
</indexterm><para>An icon caption displays the name of a file or folder in
an icon view. The icon caption also includes three additional items of information
on the file or folder. The additional information is displayed after the file
name. Normally only one item of information is visible, but when you zoom
in on an icon, more of the information is displayed. You can modify what additional
information is displayed in icon captions. </para>
<para>To set your preferences for icon captions, choose <menuchoice><guimenu>
Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Icon Captions</guilabel> from the <guilabel>Preferences</guilabel>
dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_iconcaptions_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Icon Captions section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para>Select the items of information that you want to display in the icon
caption from the three drop-down list boxes. Select the first item from the
first drop-down list box, select the second item from the second drop-down
list box, and so on. The following table describes the items of information
that you can select:</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Information</para></entry><entry
valign="top"><para>Description </para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Size</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the size of the item.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Type</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the description of the MIME type of the item from the <application>File Types
and Programs</application> desktop preference tool.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Date modified
</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>Choose
this option to display the last modification date of  the item.</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Date changed</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the last modification date of  the <glossterm>inode</glossterm> of the item.
An inode is a data structure that contains information about individual files
in UNIX file systems. Each file has one inode. An inode contains the node,
type, owner, and location of a file. </para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Date accessed
</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>Choose
this option to display the date that the item was last accessed.</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Owner</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the owner of the item.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Group</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the group to which the owner of the item belongs.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Permissions</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the permissions of the item as three sets of three characters, for example <computeroutput>
-rwxrw-r--</computeroutput>.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Octal permissions
</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>Choose
this option to display the permissions of the item in octal notation, for
example <computeroutput>764</computeroutput>. </para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>MIME type</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
the MIME type of the item.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>None</guilabel></para></entry>
<entry colname="COLSPEC1" valign="top"><para>Choose this option to display
no information for the item.</para></entry></row>
</tbody>
</tgroup>
</informaltable>

</sect3>
<sect3 id="gosnautilus-57">
<title>To Set Side Pane Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>side pane</tertiary></indexterm><indexterm><primary>file manager
</primary><secondary>side pane</secondary><tertiary>preferences</tertiary>
</indexterm><para>To set your preferences for the side pane, choose <menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Sidebar Panels</guilabel> from the <guilabel>Preferences
</guilabel> dialog. </para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_sidebar_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Sidebar Panels section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-38"/> lists the side pane settings that
you can modify. </para>
<table frame="topbot" id="gosnautilus-TBL-38">
<title>Side Pane Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC4" colwidth="35.09*"/>
<colspec colname="COLSPEC5" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry colname="COLSPEC4" valign="top"><para><guilabel>Display History
tab in sidebar</guilabel></para></entry><entry colname="COLSPEC5" valign="top"><para>
 Select this option to display the <guilabel>History</guilabel> tab in the
side pane.</para></entry></row>
<row><entry colname="COLSPEC4" valign="top"><para><guilabel>Display Notes
tab in sidebar</guilabel></para></entry><entry colname="COLSPEC5" valign="top"><para>
 Select this option to display the <guilabel>Notes</guilabel> tab in the side
pane.</para></entry></row>
<row><entry colname="COLSPEC4" valign="top"><para><guilabel>Display Tree tab
in sidebar</guilabel></para></entry><entry colname="COLSPEC5" valign="top"><para>
 Select this option to display the <guilabel>Tree</guilabel> tab in the side
pane.</para></entry></row>
<row><entry valign="top"><para><guilabel>Show only folders (no files) in the
tree</guilabel></para></entry><entry valign="top"><para>Select this option
to display only folders in the <guilabel>Tree</guilabel> tabbed pane.</para></entry>
</row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-59">
<title>To Set Navigation Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>navigation</tertiary></indexterm><indexterm><primary>World Wide
Web</primary><secondary>navigation preferences</secondary></indexterm><para>
To set navigation preferences, choose <menuchoice><guimenu>Edit</guimenu>
<guimenuitem>Preferences</guimenuitem></menuchoice>. Choose <guilabel>Navigation
</guilabel> from the <guilabel>Preferences</guilabel> dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_navigation_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Navigation section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-40"/> lists the navigation settings that
you can modify. </para>
<table frame="topbot" id="gosnautilus-TBL-40">
<title>Navigation Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC2" colwidth="35.09*"/>
<colspec colname="COLSPEC3" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Dialog Element</para></entry><entry
valign="top"><para>Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Home Location</guilabel></para></entry>
<entry valign="top"><para>Enter the location that you want to use as your
home page. Enter your home location as follows:</para><itemizedlist>
<listitem><para>To specify a web page as your home location, enter the URL
in the <guilabel>Home Location</guilabel> field.</para></listitem>
<listitem><para>To specify a file or folder as your home location, enter the
path in the <guilabel>Home Location</guilabel> field. </para></listitem>
</itemizedlist></entry></row>
<row><entry valign="top"><para><guilabel>Don't include the built-in bookmarks
in the Bookmarks menu</guilabel></para></entry><entry valign="top"><para>
Select this option to exclude the default bookmarks that are supplied with <application>
Nautilus </application> from the <guimenu>Bookmarks</guimenu> menu.</para></entry>
</row>
</tbody>
</tgroup>
</table>
</sect3>
<sect3 id="gosnautilus-60">
<title>To Set Speed Tradeoffs Preferences</title>
<indexterm><primary>file manager</primary><secondary>preferences</secondary>
<tertiary>speed tradeoffs</tertiary></indexterm><para>Some <application>Nautilus
</application> features can affect the speed with which <application>Nautilus
</application> responds to your requests. You can modify the behavior of some
of these features to improve the speed of <application>Nautilus</application>.
In this way, you can exchange, or trade off, a <application>Nautilus</application>
feature for better performance. For each of the speed tradeoff preferences,
you can select one of the options described in the following table:</para>
<informaltable frame="topbot">
<tgroup cols="2" colsep="0" rowsep="0"><colspec colwidth="35.09*"/><colspec
colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Option</para></entry><entry valign="top"><para>
Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Always</guilabel></para></entry>
<entry valign="top"><para>Performs the action for both local files, and files
on other file systems.</para></entry></row>
<row><entry valign="top"><para><guilabel>Local Files Only</guilabel></para></entry>
<entry valign="top"><para>Performs the action for local files only.</para></entry>
</row>
<row><entry valign="top"><para><guilabel>Never</guilabel></para></entry><entry
valign="top"><para>Never performs the action. </para></entry></row>
</tbody>
</tgroup>
</informaltable>
<para>To set your speed tradeoff preferences, choose <menuchoice><guimenu>
Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>.
Choose <guilabel>Speed Tradeoffs</guilabel> from the <guilabel>Preferences
</guilabel> dialog.</para>
<screenshot>
<mediaobject>
  <imageobject>
    <imagedata fileref="figures/naut_pref_speed_dialog.png" format="PNG"/>
  </imageobject>
  <textobject>
	<phrase>Shows Preferences dialog, Speed Tradeoffs section. The context describes the graphic.
</phrase>
  </textobject>
</mediaobject>
</screenshot>
<para><xref linkend="gosnautilus-TBL-41"/> lists the speed tradeoff settings
that you can modify.</para>
<table frame="topbot" id="gosnautilus-TBL-41">
<title>Speed Tradeoff Preferences</title>
<tgroup cols="2" colsep="0" rowsep="0"><colspec colname="COLSPEC0" colwidth="35.09*"/>
<colspec colname="COLSPEC1" colwidth="64.91*"/>
<thead>
<row rowsep="1"><entry valign="top"><para>Dialog Element</para></entry><entry
valign="top"><para>Description </para></entry></row>
</thead>
<tbody>
<row><entry valign="top"><para><guilabel>Show Text in Icons</guilabel></para></entry>
<entry valign="top"><para>Select an option to specify when to preview the
content of text files in the icon that represents the file. </para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Show Count of
Items in Folders</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>
Select an option to specify when to show the number of items in folders.</para></entry>
</row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Show Thumbnails
for Image Files</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>
Select an option to specify when to show thumbnails of image files. <application>
Nautilus</application> stores the thumbnail files for each folder in a <filename>
.thumbnails</filename> directory that is one level below the folder.</para><para><guilabel>
Don't make thumbnails for files larger than</guilabel>: Specify the maximum
file size for files for which <application>Nautilus</application> creates
a thumbnail.</para></entry></row>
<row><entry colname="COLSPEC0" valign="top"><para><guilabel>Preview Sound
Files</guilabel></para></entry><entry colname="COLSPEC1" valign="top"><para>
Select an option to specify when to preview sound files. </para></entry></row>
</tbody>
</tgroup>
</table>
</sect3>
</sect2>
<sect2 id="gosnautilus-50">
<title>Changing Backgrounds</title>
<indexterm><primary>file manager</primary><secondary>changing backgrounds
</secondary></indexterm><indexterm><primary>backgrounds</primary><secondary>
changing screen component</secondary></indexterm><para><application>Nautilus
</application> includes backgrounds that you can use to change the look-and-feel
of the following screen components: </para>
<itemizedlist>
<listitem><para><application>Nautilus</application> desktop background</para>
</listitem>
<listitem><para>Side pane</para></listitem>
<listitem><para>View pane</para></listitem>
<listitem><para>Panels, except for the Menu Panel</para></listitem>
</itemizedlist>
<para>To change the background of a screen component perform the following
steps: </para>
<orderedlist>
<listitem><para>Choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>
Backgrounds and Emblems</guimenuitem></menuchoice>. The <guilabel>Backgrounds
and Emblems</guilabel> dialog is displayed. </para></listitem>
<listitem><para>To display a list of patterns that you can use on the background,
click on the <guibutton>Patterns</guibutton> button. To display a list of
the colors that you can use on the background, click on the <guibutton>Colors
</guibutton> button.</para></listitem>
<listitem><para>To change the background to a pattern, drag the pattern to
the screen component. To change the background to a color, drag the color
to the screen component. </para></listitem>
<listitem><para>Click <guibutton>Done</guibutton> to close the dialog.</para>
</listitem>
</orderedlist>
<para>When you change the background of the side pane or the view pane of
a particular folder, <application>Nautilus</application> remembers the background
that you chose. The next time that you display the folder, the background
that you selected is displayed.  In other words, when you change the background
of a folder, you customize the folder to display the background. </para>
<sect3 id="gosnautilus-63">
<title>To Add a Pattern</title>
<indexterm><primary>backgrounds</primary><secondary>adding patterns</secondary>
</indexterm><para>To add a pattern to the patterns that you can use on your
screen components, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>
Backgrounds and Emblems</guimenuitem></menuchoice>. Click on the <guibutton>
Patterns</guibutton> button, then click on the <guibutton>Add New Pattern
</guibutton> button. A dialog is displayed. Use the dialog to find the new
pattern. Click <guibutton>OK</guibutton> to add the new pattern to the <guilabel>
Backgrounds and Emblems</guilabel> dialog.</para>
</sect3>
<sect3 id="gosnautilus-64">
<title>To Add a Color</title>
<indexterm><primary>backgrounds</primary><secondary>adding colors</secondary>
</indexterm><para>To add a color to the colors that you can use on your screen
components, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>
Backgrounds and Emblems</guimenuitem></menuchoice>. Click on the <guibutton>
Colors</guibutton> button, then click on the <guibutton>Add New Color</guibutton>
button. A color selector dialog is displayed. Use the color wheel or the sliders
to choose the color. Click <guibutton>OK</guibutton> to add the new color
to the <guilabel>Backgrounds and Emblems</guilabel> dialog.</para>
</sect3>
</sect2>
<sect2 id="gosnautilus-18">
<title>To Show and Hide Window Components</title>
<indexterm><primary>file manager</primary><secondary>window components, showing
and hiding</secondary></indexterm><para>You can show and hide <application>
Nautilus</application> window components as follows: </para>
<itemizedlist>
<listitem><para>To hide the side pane, choose <menuchoice><guimenu>View
</guimenu><guimenuitem>Hide Sidebar</guimenuitem></menuchoice>. To display
the side pane again, choose <menuchoice><guimenu>View</guimenu><guimenuitem>
Show Sidebar</guimenuitem></menuchoice>. </para></listitem>
<listitem><para>To hide the toolbar, choose <menuchoice><guimenu>View
</guimenu><guimenuitem>Hide Toolbar</guimenuitem></menuchoice>. To display
the toolbar again, choose <menuchoice><guimenu>View</guimenu><guimenuitem>
Show Toolbar</guimenuitem></menuchoice>. </para></listitem>
<listitem><para>To hide the location bar, choose <menuchoice><guimenu>View
</guimenu><guimenuitem>Hide Location Bar</guimenuitem></menuchoice>. To display
the location bar again, choose <menuchoice><guimenu>View</guimenu>
<guimenuitem>Show Location Bar</guimenuitem></menuchoice>.</para></listitem>
<listitem><para>To hide the statusbar, choose <menuchoice><guimenu>View
</guimenu><guimenuitem>Hide Status Bar</guimenuitem></menuchoice>. To display
the statusbar again, choose <menuchoice><guimenu>View</guimenu><guimenuitem>
Show Status Bar</guimenuitem></menuchoice>. </para></listitem>
<listitem><para>To remove a tab from the side pane, right-click in the side
pane. Choose the tab that you want to remove from the popup menu. To add the
tab to the side pane again, choose the tab from the popup menu again.</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
</chapter>