Operation Environment: Windows 10 Thunderbird version 68.3.1 Make sure you know the following information: Email Address: UMPASS_User_ID@wkg1.um.edu.mo Username: UMPASS User ID Password: UMPASS password Server name: wkg1.um.edu.mo 1. Click “View settings for this account” 2. “Add Mail Account” 3. Input your name and {yourname}@wkg1.um.edu.mo address. 4-1. Choose IMAP incoming. 4-2. Choose POP3 incoming. 5-1. Incoming POP3 […]
Category: UNIX System
How do I create a Latex PDF Document in UNIX System?
In each of the Linux Workstation, we have installed the default Latex Linux distribution package, teTex. Latex is a type-setting language to procedure professional document with advanced mathematics symbols, equation, figures, tables and cross-reference supports in academic paper writing. Currently, Linux Workstation supports Latex engine in English. If you can be familiar with Latex, it […]
How do I open a command terminal in UNIX System?
How do I check my current quota usage of UNIX System?
How do I change the input methods in UNIX System?
Once login to vdesktop, you can input Traditional Chinese.
How to delete the files heading with ‘-‘ e.g. ‘-foo’ in UNIX System?
To delete a file whose name starts with a ‘-‘, for example ‘-foo’, use one of these commands: % rm — -foo % rm ./-foo
How to delete the files with the sub-directory in UNIX System?
In UNIX system, to delete all files and sub-directories reside in the directory “mydir”, execute the following command: % rm -rf mydir Please be reminded that the deleted files will not store in the trash but delete permanently.
How to use VI editor in UNIX?
In UNIX, vi (full screen editor) are most commonly used, although there are many GUI editors. To start editing , use vi <filename>, e.g. umuxremote% vi test If the file is not already existed, it is created when you save the file. Otherwise the content of the file will be retrieved for editing. Vi has […]
Some useful UNIX Commands
Files Manipulation Commands ls displays the files and subdirectories in the current working directory. pwd displays the current directory. Normally, a user will be placed in his home directory after logging-in. mkdir <dir name> makes the subdirectory called <dir name> under the current directory. rmdir <dir name> removes the subdirectory called <dir name> under the […]
What is file protection in UNIX?
In order to create, access or remove a file, a user must have the appropriate permission right in accordance with the protection mode accompanying the file. If a user types “ls -ls” under shell, the information about the files is shown: total 4 2 -rwxr-xr– 1 C01 914 Feb 28 15:23 prog.x 1 drwx—— 2 […]