User Tools

Site Tools


linux_faq

If you want to send us your comments, please do so. Thanks
More on comments


Linux FAQ

Audio and sound

How to unpack a .exe filecontainer

You can try:

unrar e
unzip
tar -xf
gzip -d

Diskette drive problems

When you get

end_request I/O error,dev fd0, sector 0

maybe it is solved by cleaning your diskette drive, remove the dust.

Detect webpage change

Detect if a webpage has changed and report if so
Ideas to use

watch --chgexitExits when output changes
watch --interval secondsSpecify update interval in seconds
curl --silent example.comSilent, quiet, mode. Don't show anything. The data you asked for has to be redirected to /dev/null (&> /dev/null)
wget --quiet example.comTurn off wget's output

Kernel Disabling IRQ #29

You can check with cat /proc/interrupts | less -S or lspci -v which device is affected

CherryTree

Toggle the menu bar: F12

diff two partitoins

diff --brief --recursive /partitionONE /partitionTWO > /tmp/diff.ONE.TWO.txt
grep -v ".cache" ~/diff.ONE.TWO.txt | grep -v "Only in /partitionONE/" | grep Files | s
ort > /tmp/diff.ONE.TWO.clean.txt
vi /tmp/diff.ONE.TWO.clean.txt
  # In vi run:
    # :%s/Files //g
    # :%s/ and//g
    # :%s/ differ//g
    # :x
for i in $( cat /tmp/diff.ONE.TWO.clean.txt ); do diff /partitionONE/$i /partitionTWO/$i; echo -e "\n$i"; echo -e "\e[32m===========================================\e[0m"; sleep 10; done

Main subjects on this wiki: Linux, Debian, HTML, Microcontrollers, Privacy

RSS
Disclaimer
Privacy statement
Bugs statement
Cookies
Copyright © : 2014 - 2024 Webevaluation.nl and the authors
Changes reserved.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
linux_faq.txt · Last modified: 24-02-2024 18:00 by wim