You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***Install TCET Linux**: This starts the TCET Linux Installer
29
+
30
+
***Fix Screen Resolution(VM)**: Adjusting the screen resolution to match the native resolution of the monitor, which can help improve image quality and prevent scaling issues.
31
+
32
+
***Arch User Repository** (Main Page)
33
+
34
+
***Link to our Discord Server**
35
+
36
+
***Updating the PC**
37
+
38
+
***Updating the Mirrors**: It provides the user with the lastest mirrors.
39
+
40
+
***Arch Wiki** (Main Page)
41
+
42
+
***How you can contribute to TCET Linux**
43
+
44
+
***Toggle autostart for the Welcome App**: It is a toggle for the welcome app itself, which decides the launching of the "Welcome app" on user login.
45
+
46
+
***About us**
38
47
---
39
48
49
+
### To Install and Remove packages
50
+
Packages in TCET Linux is managed by package manager.
51
+
Before installing any package it is always recommened to synchronize your package database. For that use command:
52
+
```
53
+
sync
54
+
```
55
+
To install a package and its necessary depedencies use command:
56
+
```
57
+
install package_name
58
+
```
59
+
To remove a package from your package database use command:
60
+
```
61
+
remove package_name
62
+
```
63
+
Packages also come with dependencies on which package relies on in order to function properly. To remove package with its dependencies use command:
64
+
```
65
+
autoremove package_name
66
+
```
67
+
---
68
+
## Terminal Features
69
+
`Autosuggestion` is for the people who are using terminal frequently, sometimes users forget about previously entered command and their parameters. It is also helpful for beginners who often make mistakes.
70
+
71
+
You can add autosuggestions to your terminal in Linux by installing the `zsh-autosuggestions package`. You can run following command on terminal:
72
+
```
73
+
install zsh-autosuggestions
74
+
```
75
+
<br>
76
+
77
+
`Autocompletion` allows user to automatically complete the command by typing partial commands. It is one of the most useful tools in any operating system. Linux distribution with *bash* as their default shell has inbuilt auto-completion feature. Type your command partially and then hit `tab` key to autocomplete rest of your command.TCET Linux comes with autocompletion and autosuggestion as a `default in-built` feature.
78
+
You can add Autocompletion to your terminal by running command:
79
+
```
80
+
install zsh-auto-completion
81
+
```
82
+
---
83
+
### Xfce
84
+
`Xfce` is and `open-source desktop environment` for Unix and Unix like operating systems like Linux. We made this choice to ensure a smooth and intuitive user experience, recognizing Xfce's reputation for being lightweight, yet feature-rich, making it an ideal match for our operating system's philosophy.In addition to this features,it runs `low on system resources` which makes it a perfect desktop environment for TCET Linux.
85
+
86
+
---
87
+
88
+
# Important Links:
89
+
90
+
-[TCET Linux Website](https://linux.tcetmumbai.in/)
91
+
-[TCET Linux Documentation](https://opensource.tcetmumbai.in/docs/projects/tcet-linux/about-tcet-linux)
0 commit comments