Archivo de la categoría: Nix

fmadm faulty clear

SH Procedural Article for ILOM-Based Diagnosis (Doc ID 1155200.1) To BottomTo Bottom In this Document Purpose Details Section A – Displaying Fault Event Information Section A.1 Using the Fault Management Shell Section A.2 Using the Standard ILOM Command Line Interface Section B – Submitting a Service Request Auto Service Request (ASR) Activated for the Product… Read More: fmadm faulty clear »

Kernel Panic – not syncing: VFS: Unable to mount root fs on unknown-block(0,0) solved ubuntu

Kernel Panic – not syncing: VFS: Unable to mount root fs on unknown-block(0,0) Start with a livecd, open a a terminal sudo fdisk -l sudo mount /dev/sdax /mnt sudo mount –bind /dev /mnt/dev sudo mount –bind /dev/pts /mnt/dev/pts sudo mount –bind /proc /mnt/proc sudo mount –bind /sys /mnt/sys sudo chroot /mnt and now you can… Read More: Kernel Panic – not syncing: VFS: Unable to mount root… »

fortinet vpn client IPSEC L2PT shrew client

install arch: yaourt qikec note: yaourt shrew (client gui vpn is not working, so manual mode )   convert psk to base64 for example 12345678 to base64    ->  MTIzNDU2Nzg5MA== b:auth-mutual-psk:MTIzNDU2Nzg5MA==   https://www.base64decode.org/   put configuration file .ike/sites n:version:4 n:network-ike-port:500 n:network-mtu-size:1380 n:client-addr-auto:1 n:network-natt-port:4500 n:network-natt-rate:15 n:network-frag-size:540 n:network-dpd-enable:1 n:network-notify-enable:1 n:client-banner-enable:0 n:client-dns-used:0 b:auth-mutual-psk:XXXXXXXXXXXXXXXXXXXXXX  <– PresharedKey in base64 n:phase1-dhgroup:5 n:phase1-keylen:0… Read More: fortinet vpn client IPSEC L2PT shrew client »

Beautiful fonts improve Arch Linux

This is what I do when I install Arch Linux to improve the fonts. You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality): Install some fonts, for example: sudo pacman -S ttf-dejavu ttf-liberation noto-fonts Enable font presets by creating symbolic links: sudo… Read More: Beautiful fonts improve Arch Linux »

install rtl8723de driver in arch (working maximum WiFi signal gain)

For kernels >4.11 git clone -b extended https://github.com/lwfinger/rtlwifi_new.git make sudo make install modprobe -v rtl8723de ant_sel=2 ant_sel=2 shows the maximum WiFi signal gain. added below lines in a separate conf file: echo «options rtl8723de ant_sel=2» >> /etc/modprobe.d/rtl8723de.conf

Bitacora install arch

Set up WIFI ifconfig wifi-menu iwconfig ip link set wlp0s20u3 up iwlist wlp0s20u3 scan ifconfig -a passwd root systemctl start sshd   To modify the layout, append a corresponding file name to loadkeys(1), omitting path and file extension. For example, to set a Latin keyboard layout: # loadkeys la-latin1 WIFI ENABLED 1ST: https://wiki.archlinux.org/index.php/WPA_supplicant 2d an… Read More: Bitacora install arch »

Upgrade Kernel on Centos7 via ELRepo

Install the ELRepo and GPG key rpm –import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org yum install -y http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm Enable kernel updates from elrepo yum-config-manager –enable elrepo-kernel Remove old kernel stuff yum remove -y kernel-{devel,tools,tools-libs} Install the ELRepo built kernel and grub2-tools yum install -y kernel-ml kernel-ml-{devel,tools,tools-libs} grub2-tools We ensure these exist on the off chance they were removed during the… Read More: Upgrade Kernel on Centos7 via ELRepo »