sudo pacman -Syu
Problema con "Failed to Start Setup Virtual Console" (Se da al no existir teclado latam, la-latin1 es el equivalente (mismo))
Chequear con systemctl status systemd-vconsole-setup.service -l
Si fallo indica "systemd-vconsole-setup[393]: cannot open file latam", entonces:
sudo nano /etc/vconsole.conf
Cambiar KEYMAP=latam
por KEYMAP=la-latin1
.
Reiniciar servicio o reiniciar equipo: sudo systemctl restart systemd-vconsole-setup.service
Chequear configuración: localectl status
sudo pacman -S zsh
chsh -l
chsh -s /bin/zsh
sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
(logout)
sudo pacman -S firefox firefox-i18n-es-cl
(Luego en algún textarea clic derecho y agregar diccionaro, buscar en español. Cambiar predeterminado en about:config
, buscar variable spellchecker.dictionary
y cambiar valor a es_ES
o según idioma de diccionario, si no funciona intentar con es-ES
)
sudo pacman -S xf86-video-intel
sudo pacman -R lib32-mesa-libgl
sudo pacman -S nvidia lib32-nvidia-libgl
# sudo pacman -R lib32-nvidia-libgl # Sera removido
sudo pacman -R xf86-video-nouveau
sudo pacman -R nouveau-dri
sudo pacman -S bumblebee mesa intel-dri xf86-video-intel lib32-intel-dri nvidia nvidia-utils lib32-nvidia-utils bbswitch nvidia-utils primus lib32-primus lib32-virtualgl lib32-mesa-libgl
sudo gpasswd -a $USER bumblebee
sudo systemctl enable bumblebeed.service
Reboot: sudo shutdown -r now
sudo nano /etc/bumblebee/bumblebee.conf
Write: Bridge=primus, Driver=nvidia
in the corresponding lines.
optirun pwd
optirun glxspheres
optirun glxgears
sudo pacman -R nvidia
sudo pacman -S nvidia-lts
, use this driver nvidia if in use kernel linux-lts
Edit file: /etc/mkinitcpio.conf
and edit MODULES="i915 bbswitch"
.
Execute: sudo mkinitcpio -p linux
After edit file /etc/default/grub
and add rcutree.rcu_idle_gp_delay=1
to the kernel parameter GRUB_CMDLINE_LINUX_DEFAULT
sudo pacman -S steam
sudo pacman -S thunderbird thunderbird-i18n-es-es
(Luego en cuadro de redacción clic derecho y agregar diccionaro, buscar en español. Cambiar diccionario predeterminado en: Preferencias > Redacción > Ortografía)
pacman -Ss --color auto namcap
yaourt -S obs-studio
yaourt -S spotify
sudo sh -c "sudo echo \"/dev/sdb1 /run/media/Datos ntfs-3g root,uid=0,gid=users 0 0\" >> /etc/fstab"
(After create folder destination: sudo mkdir /run/media/Datos
)
folder="Desktop" && rm -Rf ~/$folder && ln -s /run/media/Datos/Users/Jorge/$folder ~/$folder
(Repeat for each folder is required)
sudo pacman -S nodejs npm && yaourt -S atom-editor
sudo pacman -S flashplugin
sudo pacman -S cmus
a: add to library
y: add to playlist
e: add to queue
c: play/pause
z: back
b: next
v: stop
x: stop and play
sudo pacman -S jdk8-openjdk
(This auto-install jre8-openjdk)
Search the java location: whereis java
Identify path until find absolute path of the symbolic link found in bin/:
ls -lah /usr/bin/java
ls -lah /usr/lib/jvm/default-runtime/bin/java
(So the absolute path is "/usr/lib/jvm/default-runtime
")
Edit and add in "/etc/profile" the environment variables according to results:
# JAVA
export JAVA_HOME=/usr/lib/jvm/default-runtime
export PATH=$PATH:$JAVA_HOME/bin
Re-login and execute: source /etc/profile
sudo pacman -S icedtea-web
yaourt -S gnome-shell-system-monitor-applet-git
(Alt+F2 -> r and active with GNOME Tweak)
yaourt -S dropbox nautilus-dropbox
sudo pacman -S codeblocks
yaourt -S telegram-desktop-bin
Antergos include this app by default, for install:
sudo pacman -R gufw
sudo pacman -S gimp
sudo pacman -S pinta
yaourt -S teamviewer
After execute "sudo systemctl start teamviewerd
" for start daemon. Or sudo systemctl enable teamviewerd
for auto start on start forever.
yaourt -S gnome-todo
(For now in pre-release, manual installation)
Force to use GTK2:
Edit sudo nano /etc/profile.d/libreoffice-fresh.sh
and sudo nano /etc/profile.d/libreoffice-fresh.csh
, uncomment export SAL_USE_VCLPLUGIN=gtk
.
Save!
Execute: export SAL_USE_VCLPLUGIN=gtk
And restart system
Tu gist me ayudo con "Failed to Start Setup Virtual Console". Gracias!