Results 1 to 2 of 2

Thread: Ubuntu SeedDms Install

  1. #1
    Join Date
    Apr 2023
    Beans
    1

    Ubuntu SeedDms Install

    Hello, I am new to Ubuntu. I am trying install seeddms on Ubuntu 22.04. I have set up the server and installed other dependencies for the seeddms but my problem now is how do i install the Seeddms. i have enter the dir for cd /var/www/html and i also tried to copy the seeddms file using cp /Home/Downloads/seeddms-quickstart-6.0.23.tar.gz so i can extract it but i keep getting this message that bash: cp/Home/lg/Downloads/seeddms-quickstart-6.0.23.tar.gz: No such file or directory.

  2. #2
    Join Date
    Feb 2015
    Beans
    Hidden!
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Ubuntu SeedDms Install

    Try changing your copy command path to either...
    Code:
    $HOME/Downloads/seeddms-quickstart-6.0.23.tar.gz
    or
    Code:
    /home/$USER/Downloads/seeddms-quickstart-6.0.23.tar.gz
    You appear to have capitalised "/home" and forgot to include your user-name. Using either of the 2 paths above in your copy command should fix your issue.
    The system variable "$HOME" inserts your home folder /home/<your username>.
    The system variable "$USER" simply inserts your username.

    Apart from missing your username, note that Linux is case sensitive ie. you need to use "/home" not "/Home"

    Regards, yeti
    Last edited by yetimon_64; June 22nd, 2023 at 07:47 AM. Reason: corrected first code box, removed leadinig "/" from $HOME

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
  •