You are not logged in.

#1 2010-04-15 19:29:24

japtar10101
Member
Registered: 2009-08-08
Posts: 57

Opening Arch since Updates last weekend is...sketchy

Since the last Arch update last weekend, opening my ThinkPad T60 laptop have been very sketchy.  Problems included kernel panics when loading modules, frozen login manager, corrupt graphics, or more recently, keyboard not being detected.  The problem is, these problems seems to occur at random.  At times, I can log into the system and use it fine; other times, it fails miserably before or on login screen.

I use LXDE and Openbox as my desktop environment and window manager.  I use SLiM for the login screen.  Finally, here's what my rc.conf looks like:

#
# /etc/rc.conf - Main Configuration for Arch Linux
#

# -----------------------------------------------------------------------
# LOCALIZATION
# -----------------------------------------------------------------------
#
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
#   in the hardware clock being left untouched (useful for virtualization)
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
#
LOCALE="en_US.UTF-8"
HARDWARECLOCK="localtime"
TIMEZONE="America/New_York"
KEYMAP="us"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"

# -----------------------------------------------------------------------
# HARDWARE
# -----------------------------------------------------------------------
#
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
#
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
#
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
MODULES=(fuse iwl3945 vboxdrv vboxnetadp acpi-cpufreq cpufreq_ondemand cpufreq_powersave)

# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"

# -----------------------------------------------------------------------
# NETWORKING
# -----------------------------------------------------------------------
#
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
#
HOSTNAME="arch-laptop"

# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
#
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
#   - prefix an entry in INTERFACES with a ! to disable it
#   - no hyphens in your interface names - Bash doesn't like it
# 
# DHCP:     Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
#

#Static IP example
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
eth0="dhcp"
INTERFACES=(!eth0)

# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
#   - prefix an entry in ROUTES with a ! to disable it
#
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
 
# Enable these network profiles at boot-up.  These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
#   - set to 'menu' to present a menu during boot-up (dialog package required)
#   - prefix an entry with a ! to disable it
#
# Network profiles are found in /etc/network.d
#
# This now requires the netcfg package
#
#NETWORKS=(main)

# -----------------------------------------------------------------------
# DAEMONS
# -----------------------------------------------------------------------
#
# Daemons to start at boot-up (in this order)
#   - prefix a daemon with a ! to disable it
#   - prefix a daemon with a @ to start it up in the background
#
DAEMONS=(@syslog-ng hal !network networkmanager @openntpd @netfs alsa !acpid laptop-mode !cpufreq @crond uinput slim)

If you can tell me which log files to look into, I can post those up as well.

Offline

#2 2010-04-16 03:39:06

empthollow
Member
Registered: 2009-09-26
Posts: 168

Re: Opening Arch since Updates last weekend is...sketchy

This sounds like random unrelated problems which leads me to think to try an fsck on the drive.  I have had similar types of random problems when boot partition is nearly full.  If you want to find out if it's related to the update you can always use the Arch Rollback Machine to see if the problem goes away after you backdate your system.  Hope that helps.


--empthollow
Check out my Arch based live distro http://fluxcapacity.99k.org

Offline

#3 2010-04-22 01:28:13

japtar10101
Member
Registered: 2009-08-08
Posts: 57

Re: Opening Arch since Updates last weekend is...sketchy

empthollow wrote:

This sounds like random unrelated problems which leads me to think to try an fsck on the drive.  I have had similar types of random problems when boot partition is nearly full.  If you want to find out if it's related to the update you can always use the Arch Rollback Machine to see if the problem goes away after you backdate your system.  Hope that helps.

From what I understand, fsck checks and possibly re-writes the harddrive, no?

You're probably right about the main drive filling up and the distro crashing.  I'm getting dangerously close to filling up the / drive.  If you can enlighten me more on how to use fsck safely (ha!), that'll be great.

Offline

#4 2010-04-22 01:45:28

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: Opening Arch since Updates last weekend is...sketchy

The wiki has a basic write up: http://wiki.archlinux.org/index.php/Fsck

Google will give you the rest. Suffice to say, it is relatively painless...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#5 2010-04-22 01:51:19

cesura
Package Maintainer (PM)
From: Tallinn, Estonia
Registered: 2010-01-23
Posts: 1,867

Re: Opening Arch since Updates last weekend is...sketchy

japtar10101 wrote:
empthollow wrote:

This sounds like random unrelated problems which leads me to think to try an fsck on the drive.  I have had similar types of random problems when boot partition is nearly full.  If you want to find out if it's related to the update you can always use the Arch Rollback Machine to see if the problem goes away after you backdate your system.  Hope that helps.

From what I understand, fsck checks and possibly re-writes the harddrive, no?

You're probably right about the main drive filling up and the distro crashing.  I'm getting dangerously close to filling up the / drive.  If you can enlighten me more on how to use fsck safely (ha!), that'll be great.

I'd be extremely surprised if fsck actually hurt your drive smile I've never had a problem with it

Last edited by cesura (2010-04-22 01:51:39)

Offline

#6 2010-04-22 03:41:19

empthollow
Member
Registered: 2009-09-26
Posts: 168

Re: Opening Arch since Updates last weekend is...sketchy

I had a system crash after an fsck once, but that was a few years ago and not under arch linux.  I have run fsck many times on my arch system and it has always fixed the problems.  It has worked very well specifically in instances when my hard disk partition was relatively full.  This was recently with arch linux.


--empthollow
Check out my Arch based live distro http://fluxcapacity.99k.org

Offline

#7 2010-04-22 03:55:57

cesura
Package Maintainer (PM)
From: Tallinn, Estonia
Registered: 2010-01-23
Posts: 1,867

Re: Opening Arch since Updates last weekend is...sketchy

empthollow wrote:

I had a system crash after an fsck once, but that was a few years ago and not under arch linux.  I have run fsck many times on my arch system and it has always fixed the problems.  It has worked very well specifically in instances when my hard disk partition was relatively full.  This was recently with arch linux.

Just remember fellow users, never, and I mean never, run fsck on a mounted partition. I don't care how drunk you are smile

I edited the Fsck wiki page. I added that tip and a little bit more

Last edited by cesura (2010-04-22 04:07:55)

Offline

#8 2010-04-29 16:31:52

japtar10101
Member
Registered: 2009-08-08
Posts: 57

Re: Opening Arch since Updates last weekend is...sketchy

Hmm, this didn't seem to solve the problem:

# shutdown -Fr now

I might as well reinstall Arch again, after backing up my things.  I wanted to get rid of my Windows partition, anyways.

Offline

#9 2010-05-06 14:20:19

japtar10101
Member
Registered: 2009-08-08
Posts: 57

Re: Opening Arch since Updates last weekend is...sketchy

Whoa, disabling the fuse module stabilized my system.  Darn you, NTFS support!

Last edited by japtar10101 (2010-05-06 14:20:30)

Offline

Board footer

Powered by FluxBB