-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.docbook
6777 lines (6775 loc) · 313 KB
/
index.docbook
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://docbook.org/xml/4.5/docbookx.dtd">
<article id="index" lang="en">
<articleinfo>
<title>Ubuntu MATE Guide</title>
<date>2022-04-21</date>
<authorgroup>
<author role="maintainer" lang="en">
<firstname>Larry</firstname>
<surname>Bushey</surname>
<affiliation>
<orgname>Going Linux Podcast</orgname>
</affiliation>
</author>
<authorinitials>LB</authorinitials>
</authorgroup>
<revhistory>
<revision>
<revnumber>22.04</revnumber>
<date>2021-04-21</date>
<authorinitials>LB</authorinitials>
</revision>
</revhistory>
<copyright lang="en">
<year>2017-2022</year>
<holder>Larry Bushey</holder>
</copyright>
<legalnotice>
<title>Other Credits</title>
<simpara>Ubuntu is a trademark of Canonical Ltd.</simpara>
</legalnotice>
<legalnotice>
<title>Creative Commons</title>
<simpara>
Ubuntu MATE Guide is licensed under a
<ulink url="http://creativecommons.org/licenses/by/4.0/"> Creative Commons Attribution 4.0 International License.</ulink>
</simpara>
</legalnotice>
<legalnotice>
<title>Feedback</title>
<simpara>
To report a bug or make a suggestion regarding Ubuntu MATE, its components, or this guide, follow the directions in the Development section of the <ulink url="http://ubuntu-mate.org/community/" type="help">Ubuntu MATE Community Page</ulink>.
</simpara>
</legalnotice>
</articleinfo>
<!-- Beginning of Document ================================================ -->
<simpara>
<mediaobject>
<imageobject>
<imagedata fileref="figures/ubuntu-mate.png" contentdepth="48px" />
</imageobject>
<textobject>Ubuntu MATE banner logo.</textobject>
</mediaobject>
</simpara>
<!-- Overview ============================================================= -->
<sect1 id="page.overview">
<title>• • • OVERVIEW • • •</title>
<simpara>
<mediaobject>
<imageobject>
<imagedata fileref="figures/ubuntu-mate.png" contentdepth="32px" />
</imageobject>
<textobject>Ubuntu MATE banner logo.</textobject>
</mediaobject>
</simpara>
<simpara>
<application>Ubuntu MATE</application>
is an operating system -- the core software that runs your computer, similar to Microsoft's Windows, Apple's macOS, and Google's Chrome OS. Ubuntu MATE is a distribution (variation or flavor) of Linux designed for beginners, average, and advanced computer users alike. It is a dependable, capable, and modern computer system that rivals all others in popularity and usage.
</simpara>
<simpara>
If you are new to Ubuntu MATE, or only casually acquainted with Linux-based distributions, it can take very little effort to understand how a Linux operating system compares with other computer software you have used. You will find that Ubuntu MATE is more similar than different. This documentation is designed to help demystify Ubuntu MATE for new-comers and provide a reference for all users. This guide has several sections, each of which has additional detail. Click on any link to explore a topic that interests you. You can always come back to this page or simply continue to explore and learn about Ubuntu MATE and its applications.
</simpara>
<sect2 id="modern">
<title>Modern and Full-Featured</title>
<simpara>
Ubuntu MATE is a free, full-featured, and modern computer operating system, with an attractive and easy to understand user interface. Its update manager keeps both the operating system itself and all of its installed applications updated to the most current, most secure release. The operating system is more secure and better-supported than operating systems that come pre-installed on most home computer hardware today. With modest hardware requirements, Ubuntu MATE is suitable for modern workstations, laptops, single board computers and older hardware alike. Ubuntu MATE makes modern computers fast and old computers usable.
</simpara>
</sect2>
<sect2 id="flexible">
<title>Pre-Configured Yet Flexible</title>
<simpara>
Using Ubuntu MATE provides you with the freedom to run a complete, full-featured operating system, pre-configured with most, if not all, of the applications you will need for your daily computing -- or to change anything about the way it looks, the way it works, or the applications it runs to suit your taste.
</simpara>
</sect2>
<sect2 id="security">
<title>Built-In Security</title>
<simpara>
Ubuntu MATE is designed with security in mind. Unlike operating systems that update only once a month, Ubuntu MATE receives updates continuously. The updates include security patches for Ubuntu MATE and all of its components. Security updates for all of its installed applications are also provided on the same schedule. This ensures that you have the latest protection for all of your computer's software as soon as it's available and for as long as you keep it up to date!
</simpara>
</sect2>
</sect1>
<sect1 id="page.linux">
<title>Ubuntu MATE Is Linux!</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/tux_small.png" contentwidth="48px" />
</imageobject>
<textobject>Tux, the Linux mascot.</textobject>
</inlinemediaobject>
The awareness, popularity, and use of Linux has been increasing steadily. Once you become aware that there is dependable, secure, capable, and modern software to run your computer that rivals all others in popularity and actual use, you will want to apply what you already know and try the
<ulink url="https://en.wikipedia.org/wiki/Linux">Linux</ulink>
operating system. You may already be using a member of the Unix/Linux family: Linux, Android, ChromeOS, BSD, Azure Sphere, or even macOS. If so, you are likely looking for new ways to optimize this technology for the way you work.
</simpara>
<simpara>
You may have been attracted to Linux because it is free and you can run it on almost any computer hardware. You'll likely continue to use Ubuntu MATE Linux because it is like your previous computer's software, only better. By "better" you probably mean that it provides a modern but familiar user experience, it is easy to understand and use, it's designed with security built-in and with protection from viruses and spyware included. You want all of that included and upgradeable at no additional charge. Of course you want it all to "just work" with minimal or no maintenance -- automatic security updates and software upgrades for both the operating system and all of your installed applications. You don't mind paying for software, but you prefer the "try before you buy" philosophy. Ubuntu MATE gives you all of that and more!
</simpara>
<simpara>
While it is great for users who have migrated from Windows, macOS, or ChromeOS, Ubuntu MATE is also an excellent choice for any kind of computer user, from casual home user to professional software developer. That's because of its modern, functionally thought-out design. Ubuntu MATE is capable enough for even the most experienced computer user because, well, it's Linux! It has the power of every other Linux built-in. Simply put, it provides a practical alternative to other software that can run on your computer.
</simpara>
<simpara>
With that in mind, this guide is written from the perspective that Ubuntu MATE is a typical modern Linux for the average computer user. Let's assume that our fictional "average user" is someone who needs to browse the Internet, check email, use a text editor or word processor, and maybe read and store document files. Let's also include viewing and editing photos, watching videos, and listening to music and podcasts. As soon as it's installed, Ubuntu MATE provides you with applications that enable all of those capabilities. Whether you are new to Linux, upgrading from Windows, macOS, or ChromeOS to Linux, or just thinking about moving to Linux, this documentation will provide you with practical guidance on how you can use Ubuntu MATE and its applications to do your day-to-day work. This is a guide for new users and a reference for all users of Linux.
</simpara>
<sect2 id="windows">
<title>Why Users Switch from Windows</title>
<simpara>
In addition to common and well-founded concerns around security, we often receive questions and comments from Windows users who have, over time, become more and more dissatisfied with Microsoft's operating system. It seems that after purchasing and installing a new version of Windows or, more likely, after purchasing a new computer with the upgraded operating system pre-installed, those users are finding that they have to repurchase newer versions of the same software applications they already own, just to have them work with the upgraded version of Windows. Switching to online, cloud-based software applications might at first seem to be a practical alternative. But those applications are often less capable and at least as expensive, especially after a year or more of paying monthly subscription fees!
</simpara>
<simpara>
To add insult to injury, Windows users sometimes also have to pay for new accessories like printers and document scanners to replace perfectly functioning older models that require software that is no longer compatible with the "upgraded" version of the operating system. They are disappointed that the promise of a "free upgrade" from Windows 7 or 8 to Windows 10 has, in fact, turned out to be anything but free. In fact, they tell me, it can be at least as expensive as previous Windows upgrades have been.
</simpara>
<simpara>
And what about those security concerns? Today, Microsoft provides comprehensive updates and malware protection built into Windows. Most computer manufacturers who supply Windows with their hardware seem to feel that, to provide adequate protection from infection, they must provide additional third-party anti-malware and anti-virus software. Although it's admirable that automatic updates are provided with the operating system, Windows users report that because of Microsoft's implementation of their update system, they are frequently forced to restart the computer right in the middle of their workflow! Sometimes there are updates with multiple restarts and delays that cannot be stopped or postponed. This can leave the computer unusable for a half-hour or more! That behavior sends Windows users looking for alternatives that allow them to stay productive all day long.
</simpara>
</sect2>
<sect2 id="macos">
<title>Why Users Switch from macOS</title>
<simpara>
Switching to Apple's macOS doesn't get you off of the treadmill of spending increasing amounts of money for software and hardware upgrades. If anything, it accelerates that treadmill. Apple's direction for product design seems to trend toward ever-more expensive products that eliminate printer, monitor, keyboard, mouse, and other accessory ports. They require expensive dongles and adapters just to connect common accessories! They've also been sealing shut the computer's case on newer models, eliminating the possibility of replacing or upgrading on your own, simple things like RAM, hard drives, and broken parts. Purchasing the latest hardware from Apple results in some previously functional software suddenly becoming incompatible. This is not the first time Apple users have experienced this kind of bumpy transition that makes them wait for older, Mac-specific applications to be updated just so that they work again.
</simpara>
<simpara>
And what about those computer users who switched to the reportedly more secure macOS to avoid their security concerns with Windows? Third-party protection is also recommended for Apple's operating system and macOS also forces updates, seemingly without warning, that can sometimes be neither stopped nor postponed. Apple's forced reboots that cause periods of lost productivity are usually less frequent than Microsoft's but when they do occur they require you to pause your work for more than a few minutes while the updates are applied and the computer restarts.
</simpara>
</sect2>
<sect2 id="chromeos">
<title>Why Users Switch from ChromeOS</title>
<simpara>
Google's ChromeOS has seen a surge in usage recently as computer users look for an economical way to take classes online and work from home. As users acquire inexpensive Chromebooks, many are finding that the device's performance is sluggish as compared with more capable PC hardware. They also find that doing everything within the Chrome browser and relying on performance-reducing browser plug-ins doesn't meet their expectations. Sometimes you just need to run a dedicated application on your computer's operating system to get things done! Disappointingly, Google has discontinued support and security updates for the oldest Chromebooks and
<ulink url="https://killedbygoogle.com/">they famously kill their apps, software, and hardware offerings</ulink>
with little notice. As a result, users may wonder how soon they'll lose access to the software and hardware they rely on for their daily computing and need to switch to a fully-functional operating system.
</simpara>
</sect2>
<sect2 id="works">
<title>Ubuntu MATE Works for You, Not the Other Way Around</title>
<simpara>
Often, neither Microsoft nor Apple will let you upgrade that perfectly-functioning computer hardware you purchased a few years ago, even though it has almost the same specs as the newest computers available today. You are told it 'isn't capable' of running modern software. Insultingly, your Windows computer that is supposedly incapable of running more modern software keeps trying to force you to upgrade to the incompatible version! Perhaps out of frustration you'd rather spend a little time to learn how to personalize Ubuntu MATE than hunt down one more Windows hack or Apple workaround to prevent your computer from doing things you don't want it to be doing. Maybe you just want to use your computer to get things done without advertizing or interruption. Maybe you believe your computer should be doing work for you, and not the other way around. Ubuntu MATE is designed to make all of that a reality!
</simpara>
</sect2>
</sect1>
<sect1 id="page.ubuntu">
<title>Ubuntu</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/ubuntu.png" contentwidth="48px" />
</imageobject>
<textobject>The Ubuntu logo icon.</textobject>
</inlinemediaobject>
Ubuntu MATE is created from
<ulink url="http://www.ubuntu.com/">Ubuntu</ulink>
, one of, if not the, largest deployed
<ulink url="https://en.wikipedia.org/wiki/Linux">Linux</ulink>
-based desktop operating systems in the world. Linux is at the heart of Ubuntu and makes it possible to create secure, powerful and versatile operating systems, such as Ubuntu and Android. Android is now in the hands of billions of people around the world and it's also powered by Linux.
</simpara>
<simpara>
Ubuntu is developed by Canonical, Ltd. and is available in a number of different flavors, each coming with its own desktop environment. Started as a community-developed project, Ubuntu MATE takes the Ubuntu base operating system and adds the
<ulink url="http://mate-desktop.org/">MATE Desktop</ulink>
. Today, Ubuntu MATE is an official flavor of Ubuntu Linux.
</simpara>
<tip>
<title>Ubuntu</title>
<simpara>
The name "
<application>Ubuntu</application>
" is pronounced
<emphasis>oǒ'boǒntoō</emphasis>
. According to
<ulink url="https://www.ubuntu.com/about">The Ubuntu Story</ulink>
, "Ubuntu is an ancient African word meaning 'humanity to others'. It is often described as reminding us that 'I am what I am because of who we all are'. We bring the spirit of Ubuntu to the world of computers and software."
</simpara>
</tip>
</sect1>
<sect1 id="page.mate-desktop">
<title>The MATE Desktop</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/mate.png" contentwidth="48px" />
</imageobject>
<textobject>The MATE icon.</textobject>
</inlinemediaobject>
Wikipedia says that a
<ulink url="https://en.wikipedia.org/wiki/Desktop_environment">Desktop Environment</ulink>
is:
</simpara>
<blockquote>
<attribution>Wikipedia (24 Feb 2022)</attribution>
<simpara>...an implementation of the desktop metaphor made of a bundle of programs running on top of a computer operating system that share a common graphical user interface (GUI)... Desktop GUIs help the user to easily access and edit files...</simpara>
</blockquote>
<simpara>
The MATE Desktop is an example of such a desktop environment. It includes a file manager which can connect you to your local and networked files, a text editor, archive manager, image viewer, document viewer, system monitor, and terminal. All of these are highly customizable and managed via a control center. You can find complete documentation for the MATE Desktop Environment and its applications in the
<ulink url="ghelp:/usr/share/help/C/mate-user-guide/index.docbook">
MATE
<application>Desktop User Guide</application>
.
</ulink>
</simpara>
<simpara>
The MATE Desktop provides an intuitive and attractive desktop environment using traditional metaphors like "window" and "desktop". That means, if you've ever used
<ulink url="https://www.microsoft.com/windows/">Microsoft Windows</ulink>
or
<ulink url="https://www.apple.com/mac/">Apple macOS</ulink>
, the MATE Desktop will feel very familiar.
</simpara>
<simpara>
The MATE Desktop has a rich history and is the continuation of the GNOME2 desktop, which was the default desktop environment on many Linux and Unix operating systems for over a decade. This means that MATE Desktop is tried, tested, and very reliable.
</simpara>
<tip>
<title>MATE</title>
<simpara>
The name "
<application>MATE</application>
" is pronounced
<emphasis>Ma-Tay</emphasis>
. It comes from the
<ulink url="https://en.wikipedia.org/wiki/Yerba_mate">yerba maté</ulink>
plant, native to South America.
</simpara>
</tip>
</sect1>
<sect1 id="page.open-source">
<title>Open Source</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/osi.png" contentwidth="64px" />
</imageobject>
<textobject>The OSI icon.</textobject>
</inlinemediaobject>
What Linux, Ubuntu, and MATE Desktop all have in common is they are Open Source. Open source software is software that can be freely used, changed, and shared (in modified or unmodified form) by anyone. In a nutshell, Ubuntu MATE is free, in the truest sense of the word.
</simpara>
<simpara>
Although you will find some versions (distributions) of Linux for purchase, the vast majority are provided free of charge, like Ubuntu MATE. Open Source software is licensed in a way that allows anyone to give it away for free, no strings attached. For example, the license gives any member of the user community the freedom to use Linux for any purpose, to distribute, modify, redistribute, or even sell the operating system. If you do modify and then redistribute Linux with your modifications, you are required by the license to submit your modifications for possible inclusion into future versions. There is no guarantee that this will ever happen, but if you have made it better, then your changes just might be included in the next release of Ubuntu MATE.
</simpara>
<simpara>
Unlike Windows and macOS, Linux is not created and supported by just one company. It is supported by Intel, Redhat, Linaro, Samsung, IBM, SUSE, Texas Instruments, Google, Canonical, Oracle, AMD, and Microsoft. Over 4,000 developers contributed to Linux over the last 15 years.
</simpara>
<simpara>
This is how we can continually improve and grow without having to charge our users money. Many of the users of Linux are corporations that use the operating system to run their businesses or include it in their products. Many of these corporations provide fixes and new features for Linux as they use the software for their businesses. In fact, Microsoft now offers Ubuntu on Windows.
<ulink url="https://docs.microsoft.com/en-us/windows/wsl/">The Windows subsystem for Linux</ulink>
provides an Ubuntu userspace for Windows developers. The improvements provided by both individual users and organizations like Microsoft are
<ulink url="https://www.linuxfoundation.org/2017-linux-kernel-report-landing-page/">given back to the Linux distribution</ulink>
and the software improves as a result.
</simpara>
<simpara>
Whether you are a home user of Ubuntu MATE, an Ubuntu MATE software or application developer, or an employee of an organization that uses the operating system, you are a member of the Linux and Open Source communities and benefit from the efforts of the developers who contribute to Ubuntu MATE and its related projects, Linux, MATE, and Ubuntu. Members of the community can and do run Linux on almost any hardware, from the prettiest Macbook to the cheapest netbook, from the newest Chromebook to some very old machines designed for Windows, and from the most powerful Internet servers to the smallest smart thermostat.
</simpara>
</sect1>
<!-- MATE's Applications ================================================== -->
<sect1 id="page.mate-apps">
<title>• • • MATE'S APPLICATIONS • • •</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/mate.png" contentwidth="48px" />
</imageobject>
<textobject>The MATE logo icon.</textobject>
</inlinemediaobject>
The MATE Desktop provides you with essential features that you'd expect in a computer desktop environment, including some basic applications and utilities, all of which are highly customizable and managed by the Control Center:
</simpara>
<itemizedlist>
<listitem>
<xref linkend="page.caja" />
Organize files and folders, both on your computer and online.
</listitem>
<listitem>
<xref linkend="page.pluma" />
Create and edit text files.
</listitem>
<listitem>
<xref linkend="page.calculator" />
A simple calculator with some advanced features.
</listitem>
<listitem>
<xref linkend="page.engrampa" />
Create, view, modify, or unpack zipped files or compressed archive files.
</listitem>
<listitem>
<xref linkend="page.eom" />
View single photos or image files, as well as large image collections.
</listitem>
<listitem>
<xref linkend="page.atril" />
View documents of various formats like Portable Document Format (PDF) files, PostScript files, and e-book (EPUB) files.
</listitem>
<listitem>
<xref linkend="page.baobab" />
MATE's disk usage analyzer.
</listitem>
<listitem>
<xref linkend="page.system-monitor" />
Display basic system information and monitor system processes, usage of system resources and file systems, and modify the behavior of your system.
</listitem>
<listitem>
<xref linkend="page.terminal" />
Access a UNIX shell in the MATE environment and type commands at a command line prompt.
</listitem>
<listitem>
<xref linkend="page.control-center" />
A single window from which to launch all of the MATE preference tools.
</listitem>
</itemizedlist>
</sect1>
<sect1 id="page.caja">
<title>File Browser (Caja)</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/file-manager.png" contentwidth="48px" />
</imageobject>
<textobject>The File Browser icon.</textobject>
</inlinemediaobject>
The
<application>Caja</application>
application, found in the Ubuntu MATE menus at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>System Tools</guimenuitem>
<guimenuitem>Caja</guimenuitem>
</menuchoice>
, lets you organize and manage files and folders, both on your computer and on a home network. In Ubuntu MATE many things are files, such as word processor documents, spreadsheets, photos, movies, and music.
<application>Caja</application>
lets you manage them all.
</simpara>
<note>
<title>Note</title>
<simpara>
Your first Ubuntu MATE menu choice depends on which of the
<xref linkend="personalization-panel-layouts" />
you have selected.
</simpara>
<simpara>
If you chose the default
<xref linkend="panel-layouts-familiar" />
, the first menu item is
<guimenu>Menu</guimenu>
. It is also the first menu item for
<xref linkend="panel-layouts-contemporary" />
,
<xref linkend="panel-layouts-redmond" />
, and
<xref linkend="panel-layouts-pantheon" />
.
<guimenu>Applications</guimenu>
is the first item for the
<xref linkend="panel-layouts-traditional" />
. The
<xref linkend="panel-layouts-netbook" />
,
<xref linkend="panel-layouts-mutiny" />
, and
<xref linkend="panel-layouts-cupertino" />
have no label and simply display the Ubuntu MATE logo to represent the menu.
</simpara>
</note>
<simpara>
Using the file manager you can do the following:
</simpara>
<itemizedlist>
<listitem>Create documents and folders.</listitem>
<listitem>Display files and folders.</listitem>
<listitem>Search for and manage your files.</listitem>
<listitem>Run scripts and launch applications.</listitem>
<listitem>Open special locations on your computer.</listitem>
<listitem>Write data to a CD or DVD.</listitem>
<listitem>Install and remove fonts.</listitem>
</itemizedlist>
<simpara>
Like file managers in other operating systems (Apple calls their file manager "the finder")
<application>Caja</application>
lets you organize your files into folders. Folders can contain files and even other folders. Some people find that organizing files into folders can help them locate their files more easily. Even your desktop is a folder and
<application>Caja</application>
even lets you store files and folders on your desktop!
</simpara>
<informaltable frame="all">
<tgroup cols="1">
<colspec colwidth="100%" />
<tbody>
<row>
<entry>
<mediaobject>
<imageobject>
<imagedata fileref="figures/caja.png" contentwidth="100%" />
</imageobject>
<textobject>The File Browser window.</textobject>
</mediaobject>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<simpara>
Ubuntu MATE allows more than one user to login to the same computer. Each user has a personal Home folder that is labeled with the username chosen during setup. In the illustration, the username and the name of the Home folder is
<guiicon>lebushey</guiicon>
. The folder that is actually labeled
<guiicon>home</guiicon>
contains the personal Home folders for all users setup on your computer. Normally, there is just one user (you) and so the
<guiicon>home</guiicon>
folder contains only your own personal Home folder.
</simpara>
<simpara>
By default, your personal Home folder contains several folders (sub-folders) and any files that you create. Viewed from the
<application>Caja</application>
file manager,
<guiicon>Desktop</guiicon>
is just another folder in your personal Home folder that can, itself, contain folders and files. When viewing the desktop showing your background wallpaper,
<guiicon>Desktop</guiicon>
can display special icons that allow easy access to your personal Home folder,
<guiicon>Trash</guiicon>
, and removable media such as CDs, USB flash drives, and (if your computer is old enough) floppy disks. See how to enable these special desktop icons in the section
<xref linkend="icons-system-icons" />
.
</simpara>
<simpara>
The
<application>Caja</application>
file manager is always running while you are using the MATE desktop environment. To open a new
<application>Caja</application>
window, double-click on an icon on the desktop such as
<guiicon>Home</guiicon>
or
<guiicon>Computer</guiicon>
, or choose the application from the menu at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>System Tools</guimenuitem>
<guimenuitem>Caja</guimenuitem>
</menuchoice>
. With the
<application>Caja</application>
window open, you can open a second pane within the window by pressing the
<keycap>F3</keycap>
key on your keyboard. Press the
<keycap>F3</keycap>
key again to close the pane.
</simpara>
<simpara>
The file manager window is a file browser of sorts. Double-clicking the icon for a file opens the file in the
<application>Caja</application>
software application that lets you view and/or edit the document. Opening a folder by double-clicking on its icon updates the current file manager window to show the contents of the opened folder. You can also open a folder by right-clicking on that folder, then choosing between
<guimenuitem>Open</guimenuitem>
(this is the same as simply double-clicking the folder),
<guimenuitem>Open in a New Tab</guimenuitem>
, or
<guimenuitem>Open in a New Window</guimenuitem>
.
</simpara>
<simpara>In addition to the folder contents, the browser window displays a toolbar with common actions and locations, a location bar that shows the current location in the hierarchy of folders, and a sidebar that can hold different kinds of information.</simpara>
<tip>
<title>Caja</title>
<simpara>
For more information about how you can use
<application>Caja</application>
and the various preferences that you can set, see the
<ulink url="ghelp:/usr/share/help/C/mate-user-guide/goscaja.xml">Caja manual</ulink>
(Desktop User Guide) by pressing
<keycap>F1</keycap>
while
<application>Caja</application>
is open.
</simpara>
</tip>
</sect1>
<sect1 id="page.pluma">
<title>Text Editor (Pluma)</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/text-editor.png" contentwidth="48px" />
</imageobject>
<textobject>The Text Editor icon.</textobject>
</inlinemediaobject>
The
<application>Pluma</application>
text editor, found in the Ubuntu MATE menus at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>Accessories</guimenuitem>
<guimenuitem>
<application>Pluma</application>
Text Editor
</guimenuitem>
</menuchoice>
, enables you to create and edit text files. The aim of
<application>Pluma</application>
is to be a simple and easy to use text editor. You can enable more powerful features with different plug-ins, allowing a variety of tasks related to text-editing.
</simpara>
<informaltable frame="all">
<tgroup cols="1">
<colspec colwidth="100%" />
<tbody>
<row>
<entry>
<mediaobject>
<imageobject>
<imagedata fileref="figures/pluma.png" contentwidth="100%" />
</imageobject>
<textobject>The Text Editor window.</textobject>
</mediaobject>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<note>
<title>Note</title>
<simpara>
Your first Ubuntu MATE menu choice depends on which of the
<xref linkend="personalization-panel-layouts" />
you have selected.
</simpara>
<simpara>
If you chose the default
<xref linkend="panel-layouts-familiar" />
, the first menu item is
<guimenu>Menu</guimenu>
. It is also the first menu item for
<xref linkend="panel-layouts-contemporary" />
,
<xref linkend="panel-layouts-redmond" />
, and
<xref linkend="panel-layouts-pantheon" />
.
<guimenu>Applications</guimenu>
is the first item for the
<xref linkend="panel-layouts-traditional" />
. The
<xref linkend="panel-layouts-netbook" />
,
<xref linkend="panel-layouts-mutiny" />
, and
<xref linkend="panel-layouts-cupertino" />
have no label and simply display the Ubuntu MATE logo to represent the menu.
</simpara>
</note>
<simpara>
The
<application>Pluma</application>
window contains the elements listed in the sections below.
</simpara>
<tip>
<title>Pluma</title>
<simpara>
For help topics on this application, see the
<ulink url="ghelp:/usr/share/help/C/pluma/index.docbook">Pluma manual</ulink>
by pressing
<keycap>F1</keycap>
while
<application>Pluma</application>
is open.
</simpara>
</tip>
<sect2 id="pluma-menu-bar">
<title>Menu Bar</title>
<simpara>
The menus on the menubar contain all of the commands you need to work with files in
<application>Pluma</application>
. Note, if you have chosen a layout that uses the Global Menu, the menubar items will be displayed in the Global Menu rather than within the
<application>Pluma</application>
window.
</simpara>
</sect2>
<sect2 id="pluma-toolbar">
<title>Toolbar</title>
<simpara>
The toolbar contains icon buttons that represent a subset of the commands that you can access from the menubar.
</simpara>
</sect2>
<sect2 id="pluma-display">
<title>Display Area</title>
<simpara>The display area is where the text of the file you are editing is displayed.</simpara>
</sect2>
<sect2 id="pluma-status-bar">
<title>Status Bar</title>
<simpara>
The status bar is at the bottom of the window and displays information about how you are using
<application>Pluma</application>
. The status bar display includes the following information: Cursor position is the line number and column number where the cursor is located. Edit mode is changed using the
<keycap>Insert</keycap>
key on your keyboard. If the editor is in insert mode, the status bar contains the text "INS." If the editor is in overwrite mode, the status bar contains the text "OVR."
</simpara>
</sect2>
<sect2 id="pluma-side-pane">
<title>Side Pane</title>
<simpara>
By default, the side pane is not shown. To show it, choose
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Side Pane</guimenuitem>
</menuchoice>
. The side pane displays a list of open documents and other information depending on which plugins are enabled.
</simpara>
</sect2>
<sect2 id="pluma-bottom-pane">
<title>Bottom Pane</title>
<simpara>
The bottom pane is used by programming tools such as the
<application>Python Console</application>
plugin to display output. By default, the bottom pane is not shown. To show it, choose
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Bottom Pane</guimenuitem>
</menuchoice>
. When you right-click in the
<application>Pluma</application>
window, a popup menu appears containing the most common text editing commands. Like other MATE applications, actions in
<application>Pluma</application>
can be performed with the menu, with the toolbar, or with keyboard shortcuts. See the section
<xref linkend="page.shortcuts" />
for a list of common keyboard shortcuts.
</simpara>
</sect2>
<sect2 id="pluma-new-doc">
<title>Creating a New Document</title>
<simpara>
To create a new document, choose
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>New</guimenuitem>
</menuchoice>
.
<application>Pluma</application>
displays a new blank document in the display area.
</simpara>
</sect2>
<sect2 id="pluma-open-doc">
<title>Open a File</title>
<simpara>
If you have the
<application>Caja</application>
file manager open and you can see your file, simply double-click it, otherwise, to open a file, choose
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Open</guimenuitem>
</menuchoice>
to display the "Open File" dialog. Navigate to the folder that contains your file, then select the file that you want to open and click
<guibutton>Open</guibutton>
. The file is displayed in the
<application>Pluma</application>
window. You can open multiple files in
<application>Pluma</application>
. The application adds a tab for each open file to the window above the display area.
</simpara>
</sect2>
<sect2 id="pluma-save-doc">
<title>Save a File</title>
<simpara>
To save changes to a file you have opened and/or already saved, choose
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Save</guimenuitem>
</menuchoice>
. To save a new file or to save an existing file under a new filename, choose
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Save As</guimenuitem>
</menuchoice>
. Enter a name for your file and click
<guibutton>Save</guibutton>
. To save all of the files that are currently open in
<application>Pluma</application>
, choose
<menuchoice>
<guimenu>Documents</guimenu>
<guimenuitem>Save All</guimenuitem>
</menuchoice>
. To close all of the files that are currently open in
<application>Pluma</application>
, choose
<menuchoice>
<guimenu>Documents</guimenu>
<guimenuitem>Close All</guimenuitem>
</menuchoice>
. If you have any open files with unsaved edits, you will be prompted to save them before that file is closed.
</simpara>
</sect2>
</sect1>
<sect1 id="page.calculator">
<title>MATE Calculator</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/calculator.png" contentwidth="48px" />
</imageobject>
<textobject>The MATE Calculator icon.</textobject>
</inlinemediaobject>
The
<application>MATE Calculator</application>
application can be found in the Ubuntu MATE menus at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>Accessories</guimenuitem>
<guimenuitem>MATE Calculator</guimenuitem>
</menuchoice>
. It is a calculator with ordinary notation/reverse polish notation (RPN), a formula entry mode, different number bases (DEC, HEX, OCT, BIN) and different units of angular measure (DEG, RAD, GRAD). It supports quad-precision floating point and 112-bit binary arithmetic.
</simpara>
<note>
<title>Note</title>
<simpara>
Your first Ubuntu MATE menu choice depends on which of the
<xref linkend="personalization-panel-layouts" />
you have selected.
</simpara>
<simpara>
If you chose the default
<xref linkend="panel-layouts-familiar" />
, the first menu item is
<guimenu>Menu</guimenu>
. It is also the first menu item for
<xref linkend="panel-layouts-contemporary" />
,
<xref linkend="panel-layouts-redmond" />
, and
<xref linkend="panel-layouts-pantheon" />
.
<guimenu>Applications</guimenu>
is the first item for the
<xref linkend="panel-layouts-traditional" />
. The
<xref linkend="panel-layouts-netbook" />
,
<xref linkend="panel-layouts-mutiny" />
, and
<xref linkend="panel-layouts-cupertino" />
have no label and simply display the Ubuntu MATE logo to represent the menu.
</simpara>
</note>
<simpara>
<application>MATE Calculator</application>
has four modes: Basic, Advanced, Financial and Programming. The Advanced mode is shown, below.
</simpara>
<informaltable frame="all">
<tgroup cols="1">
<colspec colwidth="100%" />
<tbody>
<row>
<entry>
<mediaobject>
<imageobject>
<imagedata fileref="figures/MATE_calculator.png" contentwidth="100%" />
</imageobject>
<textobject>The Calculator window.</textobject>
</mediaobject>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<tip>
<title>Calculator</title>
<simpara>
For help topics on this application, see the
<ulink url="ghelp:/usr/share/help/C/mate-calc/index.page">MATE Calculator manual</ulink>
by pressing
<keycap>F1</keycap>
while
<application>MATE Calculator</application>
is open. Topics include user interface, equations, number formats, conversions and financial calculations.
</simpara>
</tip>
</sect1>
<sect1 id="page.engrampa">
<title>Archive Manager (Engrampa)</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/engrampa.png" contentwidth="48px" />
</imageobject>
<textobject>The Archive Manager icon.</textobject>
</inlinemediaobject>
You can use the
<application>Engrampa Archive Manager</application>
application, found in the Ubuntu MATE menus at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>Accessories</guimenuitem>
<guimenuitem>Engrampa Archive Manager</guimenuitem>
</menuchoice>
, to create, view, modify, or unpack an archive. An archive is a file that acts as a container for other files. Sometimes referred to generically as a "zipped file" or a "compressed file," an archive can contain many files, folders, and subfolders, usually in compressed form.
</simpara>
<note>
<title>Note</title>
<simpara>
Your first Ubuntu MATE menu choice depends on which of the
<xref linkend="personalization-panel-layouts" />
you have selected.
</simpara>
<simpara>
If you chose the default
<xref linkend="panel-layouts-familiar" />
, the first menu item is
<guimenu>Menu</guimenu>
. It is also the first menu item for
<xref linkend="panel-layouts-contemporary" />
,
<xref linkend="panel-layouts-redmond" />
, and
<xref linkend="panel-layouts-pantheon" />
.
<guimenu>Applications</guimenu>
is the first item for the
<xref linkend="panel-layouts-traditional" />
. The
<xref linkend="panel-layouts-netbook" />
,
<xref linkend="panel-layouts-mutiny" />
, and
<xref linkend="panel-layouts-cupertino" />
have no label and simply display the Ubuntu MATE logo to represent the menu.
</simpara>
</note>
<simpara>
The most common archive format on UNIX and Linux systems is the tar archive compressed with a file name ending in "tar.gz" or "tar.bz." The most common archive format on Windows systems is the archive created with applications that generate archives with a file name ending with the ".zip" extension.
<application>Archive Manager</application>
supports all of these formats, and if you have the appropriate command-line tools installed, it will support many more.
</simpara>
<simpara>
The
<application>Archive Manager</application>
window contains the elements listed in the sections below.
</simpara>
<tip>
<title>Archive Manager</title>
For help topics on this application, see the
<ulink url="ghelp:/usr/share/help/C/engrampa/index.docbook">Archive Manager manual</ulink>
by pressing
<keycap>F1</keycap>
while
<application>Archive Manager</application>
is open.
</tip>
<sect2 id="engrampa-menu-bar">
<title>Menu Bar</title>
<simpara>
The menus on the menubar contain all of the commands you need to work with files in
<application>Archive Manager</application>
. Note that if you have chosen a layout that uses the Global Menu, the menubar items will be displayed in the Global Menu rather than within the
<application>Archive Manager</application>
window.
</simpara>
</sect2>
<sect2 id="engrampa-toolbar">
<title>Toolbar</title>
<simpara>
The toolbar contains icon buttons that represent a subset of the commands that you can access from the menubar.
</simpara>
</sect2>
<sect2 id="engrampa-using">
<title>Using Archive Manager</title>
<simpara>
To create a new archive file, you can choose
<guimenuitem>Open</guimenuitem>
from the menu, click and drag one or more files or folders from the
<application>Caja File Browser</application>
window into the
<application>Archive Manager</application>
window, or right-click one or more files in
<application>Caja</application>
and select
<guimenuitem>Compress</guimenuitem>
from the menu.
</simpara>
<simpara>
To expand a compressed file's contents, you start by opening the archive by double-clicking it in the
<application>File Browser</application>
. Next, you can choose one or more files in the
<application>Archive Manager</application>
window and either choose
<guimenuitem>Extract</guimenuitem>
from the menu or drag them to the desktop or other location where you want the files to end up.
</simpara>
</sect2>
</sect1>
<sect1 id="page.eom">
<title>Image Viewer (Eye of MATE)</title>
<simpara>
<inlinemediaobject>
<imageobject>
<imagedata fileref="apps/eom.png" contentwidth="48px" />
</imageobject>
<textobject>The Eye of MATE icon.</textobject>
</inlinemediaobject>
The
<application>Eye of MATE Image Viewer</application>
application, found in the Ubuntu MATE menus at
<menuchoice>
<guimenu>Menu</guimenu>
<guimenuitem>Graphics</guimenuitem>
<guimenuitem>Eye of MATE Image Viewer</guimenuitem>
</menuchoice>
, enables you to view single image files, as well as large image collections.
</simpara>
<note>
<title>Note</title>
<simpara>
Your first Ubuntu MATE menu choice depends on which of the
<xref linkend="personalization-panel-layouts" />
you have selected.
</simpara>
<simpara>
If you chose the default
<xref linkend="panel-layouts-familiar" />
, the first menu item is
<guimenu>Menu</guimenu>
. It is also the first menu item for
<xref linkend="panel-layouts-contemporary" />
,
<xref linkend="panel-layouts-redmond" />
, and
<xref linkend="panel-layouts-pantheon" />
.
<guimenu>Applications</guimenu>
is the first item for the
<xref linkend="panel-layouts-traditional" />
. The
<xref linkend="panel-layouts-netbook" />
,
<xref linkend="panel-layouts-mutiny" />
, and
<xref linkend="panel-layouts-cupertino" />
have no label and simply display the Ubuntu MATE logo to represent the menu.
</simpara>
</note>
<simpara>
The
<application>Image Viewer</application>
can open a wide variety of image file formats including animated graphics (ANI), bitmaps (BMP, PNG, ICO, PCX, WBMP, XBM, XPM), vector graphics (SVG), and other popular formats like JPEG, GIF, TIFF, and more. Files can be saved in BMP, ICO, JPEG and PNG formats.
</simpara>
<simpara>
The
<application>Image Viewer</application>
window contains the elements listed in the sections below.
</simpara>
<tip>
<title>Image Viewer</title>
<simpara>
For help topics on this application, see the
<ulink url="ghelp:/usr/share/help/C/eom/index.docbook">Image Viewer manual</ulink>
by pressing
<keycap>F1</keycap>
while
<application>Image Viewer</application>
is open.
</simpara>
</tip>
<sect2 id="eom-menubar">
<title>Menu Bar</title>
<simpara>
The menus on the menubar contain all of the commands you need to work with images in
<application>Image Viewer</application>
. Note, if you have chosen a layout that uses the Global Menu, the menubar will be displayed in the Global Menu rather than in the
<application>Image Viewer</application>
window.
</simpara>
</sect2>
<sect2 id="eom-toolbar">
<title>Toolbar</title>
<simpara>
The toolbar contains icon buttons that represent a subset of the commands that you can access from the menubar.
</simpara>
</sect2>
<sect2 id="eom-using">
<title>Using Image Viewer</title>
<simpara>
<application>Image Viewer</application>
has features to help you view your images. You can zoom in and out or view the image full-screen. You can rotate and flip the image you are viewing.
</simpara>
<simpara>The collection view allows you to view and edit large image collections. In this view, image operations can be applied to all selected images at once.</simpara>
<simpara>
<application>Image Viewer</application>
has special support for digital camera pictures and displays EXIF metadata recorded with the image. All modifications made in JPEG images are lossless. That is, saving rotated and flipped JPEG images will not recompress the image. Besides this, all available metadata (like EXIF) will be preserved and updated accordingly.
</simpara>
<informaltable frame="all">
<tgroup cols="1">
<colspec colwidth="100%" />
<tbody>
<row>
<entry>
<mediaobject>
<imageobject>
<imagedata fileref="figures/exif-data.png" contentwidth="100%" />
</imageobject>
<textobject>The Image Viewer window.</textobject>
</mediaobject>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect2>