Posts

Showing posts with the label Linux

fixed unknown mount error

The most useful video on YT, maybe: solve NTFS mount problem on ubuntu, or unable to access "drive " ubuntu  sudo ntfsfix /your/drive Works on Fedora 38 using Acer Aspire V (almost unassembled, I suspected an electrical fault) inserting an external hard disk.  

Debian es Linux no Unix

¡Por fin ha quedado FreeBSD con acceso a Internet! (ahora está instalando 525 archivos para Gnome 3) Los puntos clave: "search" va con el nombre proporcionado por el ISP y su DNS Route en uno de los IPv4; usar Atheros, no RealTek (Acer Aspire V5). Y ya con eso. He sufrido mucho, desde el domingo, pero ha quedado este mediodía del martes. We are the champions, my friend.  Queríamos SmartOS para empezar con el tema de virtualización bare metal, para aprovechar que ese equipo en cualquier momento truena debido a que se le han saltado los tornillos del lado izquierdo de la batería -que ya no carga-, pero nunca pudimos levantar la red. Ahora ya sé por qué: estamos muertos en networking. No sabemos nada de monitorear la red.

extracting multipart RAR on linux

Get a global file from multipart RAR archives: $ cat learn-git-3-hours-video.part* > full.rar Extract the complete structure using  unrar (freeware): $ unrar x full.rar This is a better way: Only extract since last part, if it was well done zipped, this will realize the job.

instalando phpstorm

PARA DESEMPACAR :~$ sudo tar -xf PhpStorm-2018.1.6.tar.gz -C /opt DESPUES DE DESEMPACAR Leer Install-Linux-tar.txt INSTALANDO :~$ sudo /opt/PhpStorm-181.5281.35/bin/phpstorm.sh DESPUES DE LA INSTALACION :~$ export PATH="$PATH:/opt/PhpStorm-181.5281.35/bin" :~$ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/opt/PhpStorm-181.5281.35/bin Nota 1: la licencia de evaluación dura 30 días. Nota 2: Me parece que PHPstorm, como Laravel o Aptana Studio 3, está probado para Ubuntu pero no para Debian.

SOLVED Impossible to change the brightness

Image
UPDATE: 27082022 Source: Ask Ubuntu This made the job with Vorago Stela100 in Debian 11: sudo vi /usr/share/X11/xorg.conf.d/20-intel.conf: # begin file contents Section "Device" Identifier "card0" Driver "intel" Option "Backlight" "intel_backlight" BusID "PCI:0:2:0" EndSection # end file contents sudo vi /etc/default/grub: GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi= pci=noaer" sudo update-grub o0o Yes yes yes! I'm happy: this works for me (using Debian): sudo vim /etc/default/grub  GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_osi=Linux acpi_backlight=video"  GRUB_CMDLINE_LINUX=""  sudo update-grub  sudo reboot ACPI error messages still persists when the system startup (AE_NOT_FOUND), but Fn+F11 and Fn+F12 keys are driving the brightness correctly. When I type in the command line this: ~$ for i in /sys/class/backlight/*; do echo -e "\n $i"; cat $i/{brightness,max_brightness,actual_brightness}; do...