Find the answer to your Linux question:
Results 1 to 6 of 6
I'm getting errors during boot; things aren't starting because of a write error: no space left on device. df tells me /var is full, 100% used up. i think that's ...
  1. #1
    Just Joined!
    Join Date
    Mar 2007
    Posts
    3

    write error: no space left on device

    I'm getting errors during boot; things aren't starting because of a write error: no space left on device.

    df tells me /var is full, 100% used up. i think that's why.

    what can I delete from /var without killing my system?

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    hi redivivus,

    Welcome to the LinuxForums.

    its safe to delete message files.
    Code:
    cd /var/log
    rm -f messages.*
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Mar 2007
    Posts
    3
    did that. only gave me 0.1 G of space out of a 1.3 G partition.

    will it ruin anything besides my future bandwidth if I delete the .deb packages in /var/cache/apt/archives ?

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    you can delete those packages too.
    Code:
    sudo apt-get clean cache
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Mar 2007
    Posts
    3
    Thanks. fixed my problem right up, there was well over a gig of packages there.

    I've had this problem before. never thought that it might just be because a partition was actually full. good to know it was so easy to fix.

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    i usually clean cache after every update/install. debian keeps packages for re-installation untill you purge those.
    glad to help you.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •