$ connmanctlconnmanctl> scan wificonnmanctl> servicesconnmanctl> agent onconnmanctl> connect wifi_<alphanumeric string>_managed_pskPassphrase? Type in passphraseconnmanctl> quitNote: You can use TAB key to autocomplete the wifi access point
Once connection is established, you can change settings on /var/lib/connman/
https://wiki.archlinux.org/index.php/ConnMan#Connecting_to_a_protected_access_point
Edit /etc/network/interfaces file and add:
auto wlp3s0iface wlp3s0 inet dhcp wpa-ssid MOVISTAR_CFCD wpa-psk QlatrCMgyBpDGySYSekK# usermod -aG sudo cheocheo must log out and log in again for the changes to take effect
Vi Editor:
# visudoadd this line:
cheo ALL=(ALL:ALL) ALLsudo apt updatesudo apt upgradesudo apt updatesudo apt install --only-upgrade firefoxsudo apt install xcalibxcalib -invert -altercontrib and non-free to /etc/apt/sources.list# apt-get update# apt-get install linux-headers-$(uname -r|sed 's/[^-]*-[^-]*-//')# apt-get update# apt-get install nvidia-drivertar -czf example.tar.gz -C /var/www/example.com/public_html .tar -xzf example.tar.gz -C wordpressHow to export database:
$ mysqldump -u wpuser -p example --single-transaction --quick --lock-tables=false > example-dump.sql$ sudo mariadb -u root -pMariaDB> CREATE DATABASE example;MariaDB> EXIT$ mariadb -u wpuser -p example < example-dump.sql$ sudo ./wp_importer$ sudo systemctl restart nginx php-fpm mariadbYou can login to Wordpress dashboard by navigating to: http://example.com/wp-admin
Connect to remote machine:
$ ssh user@remote_machine_ipNote: if the remote machine you used to ssh has been deleted and a new system has been installed in the same remote machine with the same user and IP address, issue this command:
ssh-keygen -f "/home/cheo/.ssh/known_hosts" -R "192.168.1.43"Generate a Key Pair:
$ ssh-keygenCopy the Public Key to remote machine:
$ ssh-copy-idHow to copy a file from local to remote (from local shell):
scp file_name user@remote_machine_ip:/home/remoteuser/How to copy a file from remote to local (from local shell):
scp user@remote_machine_ip:file_name /home/localuser/Edit ~/.config/lxqt/session.conf and append the following lines:
[Keyboard]numlock=truesudo apt install nvidia-driver-390WARNING: Don't restart the computer after installation. Instead, follow next steps intermediately:
sudo apt install ffmpeg obs-studio IMPORTANT: After recording with OBS, in order to reproduce and listen to the video with fidelity, OBS must be closed.
Copy the application .desktop file into ~./local/share/applications folder. For instance:
cp Downloads/Blender/blender.desktop .local/share/applicationsExec=/home/cheo/Downloads/Blender/blender %fIf the application folder doesn't contain any .desktop file, you can create one from scratch using this Blender template (replace Blender with your application):
[Desktop Entry]Name=BlenderExec=/home/cheo/Downloads/Blender/blender %fIcon=blenderType=ApplicationCategories=Graphics;3DGraphicsMimeType:applicationThe Icon file must be a valid .svg file. Note that the Exec file and the Icon file must be in the same folder.
The configuration file is /boot/grub/grub.cfg, but you shouldn't edit it directly. This file is generated by grub v2's update-grub(8), based on:
/etc/grub.d/ /etc/default/grub To configure GRUB "v2", you should do any or both of these:
/etc/default/grub, then run update-grub/etc/grub.d/Also check the GRUB2 page for more detailed configuration instructions, ideas and suggestions.