• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Error chmod and install commands

 
Ranch Hand
Posts: 1402
3
Netbeans IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

when following this lines:


For this line:


I find this error:


and for this line:



the error:


Any idea, please?

Regards, Isaac
 
Marshal
Posts: 5955
409
IntelliJ IDE Python TypeScript Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where are those instructions coming from? Perhaps there's some misinterpretation going on here.
 
Angus Ferguson
Ranch Hand
Posts: 1402
3
Netbeans IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got them from amazon

And I am running it in a virtual box on my local host
 
Marshal
Posts: 80666
478
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I presume from the presence of apt‑get that you are using Ubuntu or similar.
There is not necessarily any such file as install; rather it is an option you pass to apt‑get, followed by a space‑separated list of packages to install.

You should only run ./install if you are in a folder corresponding to a package (often zipped as a .tar.gz or similar) which has an install program/script. You tend to have configure and make instructions too. The details should be in a readme or similar file if you actually have such a package. Most packages have changed in the last few years, and can now be installed by simpler means.
 
Campbell Ritchie
Marshal
Posts: 80666
478
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where did you get the AWS package from? What did you use for bucket name and region name?
 
Angus Ferguson
Ranch Hand
Posts: 1402
3
Netbeans IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok now Im searching the folder which should contain the script to run

As bucket name:



as region:Cologne (Germany)
 
Campbell Ritchie
Marshal
Posts: 80666
478
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It would appear that aws is an instruction added by one of the earlier instructions; it takes those three arguments one of them apparently an instruction to copy the bucket name etc. I don't appear to be able to run aws

campbell@campbellsComputer:~$ aws
The program 'aws' is currently not installed. You can install it by typing:
sudo apt-get install awscli

I presume your installation of awscli ran normally?
 
Ranch Hand
Posts: 310
18
MS IE Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you type


or



Both errors you get are saying that "install" file does not exist. The "install" file is created by the command above, which implies the problem lies in execution of that command.
 
Angus Ferguson
Ranch Hand
Posts: 1402
3
Netbeans IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

this is what I type:



Or if also this case:



Or this case:



or this:



Any idea?

Regards, Isaac
 
Andrew Polansky
Ranch Hand
Posts: 310
18
MS IE Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you configure your instance profile? Read how to do this.
 
reply
    Bookmark Topic Watch Topic
  • New Topic