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
Copy file name to clipboardExpand all lines: README.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,31 +46,36 @@ Auto Off: Similarly, "auto off" refers to a feature that automatically stops or
46
46
47
47
## To install and remove package
48
48
Packages in TCET Linux is managed by package manager.
49
-
Before installing packages it is always recommended to synchronize and update your package database for that use command:
49
+
Before installing any package it is always recommened to synchronize your package database. For that use command:
50
50
```
51
-
sudo pacman -Syu
51
+
sync package-name
52
52
```
53
53
To install a package and its necessary depedencies use command:
54
54
```
55
-
sudo pacman -S package-name
55
+
install package-name
56
56
```
57
57
To remove a package from your package database use command:
58
58
```
59
-
sudo -R package-name
59
+
remove package-name
60
60
```
61
-
Packages often come with dependencies that it relies on in order to function properly.To remove a package with it dependencies use command:
61
+
Packages also come with dependencies on which package relies on in order to function properly.To remove package with its dependencies use command:
62
62
```
63
-
sudo -Rs package-name
63
+
autoremove package-name
64
64
```
65
+
65
66
## Autosuggestion and autocompletion
66
67
`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.
67
68
68
69
You can add autosuggestions to your terminal in Linux by installing the `zsh-autosuggestions package`. You can run following command on terminal-
69
70
```
70
-
sudo apt install zsh-autosuggestions
71
+
install zsh-autosuggestions
71
72
```
72
73
73
74
`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.
75
+
You can add Autocompletion to your terminal by running command:
76
+
```
77
+
install zsh-auto-completion
78
+
```
74
79
75
80
## Xfce
76
81
`Xfce` is and `open-source desktop environment` for Unix and Unix like operating systems like Linux. Xfce provides user friendy interface while also being visually appealing. Its key feature includes `fast, lightweight and highly configurable`.In addition to this features,it runs `low on system resources` which makes it a perfect desktop environment for TCET Linux.
0 commit comments