mirror of https://github.com/tiyn/wiki
parent
cf69eaa409
commit
bdbbda34af
@ -0,0 +1,31 @@
|
|||||||
|
# Intel
|
||||||
|
|
||||||
|
[Intel](https://www.intel.de/content/www/de/de/homepage.html) is a vendor and
|
||||||
|
manufacturer of semiconductor chips.
|
||||||
|
They provide motherboard chips, network interface controllers, flash memory,
|
||||||
|
[graphics chips](#intel-graphics) and more.
|
||||||
|
|
||||||
|
## Intel Graphics
|
||||||
|
|
||||||
|
Intel graphics is the name for various intel made integrated graphics
|
||||||
|
processors.
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
|
#### Screen Tearing
|
||||||
|
|
||||||
|
Linux systems that use intel graphics can sometimes have problems with screen
|
||||||
|
tearing.
|
||||||
|
To get this working you need to change the `/etc/X11/xorg.conf.d/20-intel.conf`
|
||||||
|
as explained on
|
||||||
|
[maketecheasier](https://www.maketecheasier.com/get-rid-screen-tearing-linux)
|
||||||
|
to:
|
||||||
|
|
||||||
|
```txt
|
||||||
|
Section "Device"
|
||||||
|
Identifier "Intel Graphics"
|
||||||
|
Driver "intel"
|
||||||
|
Option "TearFree" "true"
|
||||||
|
EndSection
|
||||||
|
```
|
||||||
|
|
@ -1,13 +1,15 @@
|
|||||||
# Shells
|
# Shell
|
||||||
|
|
||||||
## Change /bin/sh
|
A shell is a command-line interpreter that provides a command-line interface to
|
||||||
|
interact with the many unix-like system.
|
||||||
|
|
||||||
### Arch-Linux
|
## Change /bin/sh
|
||||||
|
|
||||||
The Shell in Arch-Linux is made up by a POSIX compliant mode of bash.
|
The Shell in some distributions is made up by a POSIX compliant mode of bash.
|
||||||
Problem with that is the speed.
|
Problem with that is the speed.
|
||||||
A shell like dash would be much faster.
|
A shell like dash would be much faster.
|
||||||
This is a guide on how to persistently change the symlink /bin/sh from bash to dash.
|
This is a guide on how to persistently change the symlink /bin/sh from bash to
|
||||||
|
dash.
|
||||||
|
|
||||||
- `yay -S dash` - Install dash
|
- `yay -S dash` - Install dash
|
||||||
- `sudo ln -sfT /bin/dash /bin/sh` - link /bin/sh to dash
|
- `sudo ln -sfT /bin/dash /bin/sh` - link /bin/sh to dash
|
Loading…
Reference in new issue