replace reemplazar
$ grep -rl 'windows' ./ | xargs sed -i 's/windows/linux/g' # texto en archivos
$ find /home/toto -type d -name 'windows' -exec mv {} linux \; # directorios
$ find /home/toto -type f -exec sed -i 's/texto_viejo/texto_nuevo/g' {} \; # texto en archivos/etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
Identifier "card0"
Driver "intel"
Option "Backlight" "intel_backlight"
BusID "PCI:0:2:0"
EndSection
mount /dev/sda7 /mnt
mount --bind /dev /mnt/dev
mount -t proc /proc /mnt/proc
mount -t sysfs /sys /mnt/sys
chroot /mnt