Results 1 to 3 of 3

Thread: Ubuntu 14.04 Trusty Apt Terminal Progress bar Install Permission Denied

  1. #1
    Join Date
    Oct 2012
    Location
    Eugene, Or
    Beans
    378
    Distro
    Ubuntu 18.04 Bionic Beaver

    Question Ubuntu 14.04 Trusty Apt Terminal Progress bar Install Permission Denied

    Trying Install Ubuntu Trusty Apt Terminal Progess Bar from this Links
    http://www.omgubuntu.co.uk/2014/04/h...l-progress-bar

    i have rtried without sudo & with sudo "sudo echo 'Dpkg:rogress-Fancy "1";' > /etc/apt/apt.conf.d/99progressbar"
    I am getting this "bash: /etc/apt/apt.conf.d/99progressbar: Permission denied"
    Any help is Appreciated Thanks.
    The Answer Please if at all Possible

  2. #2
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,824
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Ubuntu 14.04 Trusty Apt Terminal Progress bar Install Permission Denied

    Using sudo causes echo to be run with root privileges, but not the output redirect. Try
    Code:
    echo stuff | sudo tee /etc/path/filename

  3. #3
    Join Date
    Jul 2007
    Location
    Magic City of the Plains
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: Ubuntu 14.04 Trusty Apt Terminal Progress bar Install Permission Denied

    You could also run
    Code:
    sudo -i
    
    echo 'Dpkg:Progress-Fancy "1";' > /etc/apt/apt.conf.d/99progressbar
    
    exit

Tags for this Thread

Bookmarks

Posting Permissions

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