Announcement

Collapse
No announcement yet.

ERROR /etc/apt/sources.list

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    ERROR /etc/apt/sources.list

    I am trying to install cinelerra, so I am following along the tut and I have to edit /etc/apt/sources.list but when I save I get a error

    "The document could not be saved, as it was not possible to write to file:///etc/apt/sources.list

    Cheak that you have write access to this file or that enough disk space is available"

    I use su ans sudo and it doesn't do anything

    #2
    Re: ERROR /etc/apt/sources.list

    Hi

    You could try switching to root (sudo -s in the terminal) and then do kate /etc/apt/sources.list.

    Comment


      #3
      Re: ERROR /etc/apt/sources.list

      Hello
      I am new in Linux. So I am sorry if this does not help you
      I think if u use kate (under GUI) u should try "kdesu" and type ur password. If u wish to run it under the terminal/BASH/konsole/Shell (eg. vi editor) u should type "su".
      CMIIW

      Comment


        #4
        Re: ERROR /etc/apt/sources.list

        Originally posted by pramur
        I think if u use kate (under GUI) u should try "kdesu" and type ur password. If u wish to run it under the terminal/BASH/konsole/Shell (eg. vi editor) u should type "su".
        CMIIW
        You're on the right track, to open with root privileges in kate (or the GUI editor of your choice), use:
        Code:
        kdesu kate /etc/apt/sources.list
        To open in a CLI editor like nano (or vi if you prefer), use:
        Code:
        sudo nano /etc/apt/sources.list
        CLI editors are especially useful when the X-server (GUI) won't start for some reason or other (like messed up xorg.conf)

        Comment

        Working...
        X