Rätt så ofta är det samma grundläggande hänvisningar man ger till nya Ubuntuanvändare, inte minst i IRC-kanalen.
Därför undrade jag om ett sånt skript skulle hjälpa att göra hela processen smidigare:
Kod: Markera allt
#!/bin/bash
# Simple script to gather relevant information when troubleshooting Ubuntu
# Copy/paste the script in an empty text file and save it as
# logscript
# Make it executable with the following command (in a terminal) from the
# folder you saved it to
# chmod +x logscript
#
# After running the script with ./logscript from the relevant folder,
# the resulting text file should be in the Log folder in your home directory.
FILENAME=`date +%Y%m%d-%H%M%S`
# Copy/paste the content to http://pastebin.ubuntu.com/ and refer people to the
# resulting URL.
#
# Step 1: check for a Log folder in $HOME and create it if missing
mkdir -p ~/Log
# Step 2: copy the content of xorg.conf into a log file (arranged by date)
echo "--- xorg.conf ---" > ~/Log/$FILENAME.log
cat /etc/X11/xorg.conf >> ~/Log/$FILENAME.log
# Step 3: add dmesg
echo "--- dmesg ---" >> ~/Log/$FILENAME.log
cat /var/log/dmesg >> ~/Log/$FILENAME.log
# Step 4: add warning messages from Xorg.0.log
echo "--- Warnings from Xorg.0.log ---" >> ~/Log/$FILENAME.log
grep WW /var/log/Xorg.0.log >> ~/Log/$FILENAME.log
# Step 5: add error messages from Xorg.0.log
echo "--- Errors from Xorg.0.log ---" >> ~/Log/$FILENAME.log
grep EE /var/log/Xorg.0.log >> ~/Log/$FILENAME.log
# Done!
echo "--- End of file ---" >> ~/Log/$FILENAME.log
echo "Check for the log file with date and time of execution (yyyymmdd-hhmmss)."
echo "Paste its content to http://pastebin.ubuntu.com/"

