This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hello,
I'm trying to do a silent install of CCS v10 inside of a docker ubuntu container. I am using --mode unattended. This seems to execute for a while, and seems to complete without any error message. However, when I check ti_ccs10 , I'm not able to find anything installed. The directory is empty. This works when I used CCS v9.0.0, and it also didn't work with v9.3. This becomes an issue, because with the installed CCSv9.0, I am getting errors when trying to import and build projects (eclipse errors) and I think that starting out by being able to install the newest version of Code Composer Studio will help me when I'm trying to debug some of those errors on this forum and on other forums.
Here's what I did:
$ wget software-dl.ti.com/.../CCS10.0.0.00010_linux-x64.tar.gz $ tar -xvf CCS10.0.0.00010_linux-x64.tar.gz $ cd CCS10.0.0.00010_linux-x64 $./ccs_setup_10.0.0.00010.run --mode unattended --prefix $HOME/ti_ccs10
Hello,
The installer cli did change a bit starting with 9.2.0, but the below command:
Samyukta Ramnath1 said:$./ccs_setup_10.0.0.00010.run --mode unattended --prefix $HOME/ti_ccs10
That looks correct. I ran the same command to install CCS 10 on Ubuntu 18.04 and it worked fine (I see a ti_ccs10 folder in my home directory with content inside). Is ti_ccs10 folder created in your case, but with no contents (empty)?
Thanks
ki
I created the ti_ccs10 folder (as I created the ti folder for version 9.0.0) and when I ran that command, the directory was still empty.
But when I ran the command for version 9.0.0, I see the ccs directory and other resultant directories made.
As mentioned earlier, the installer did change a bit since CCSv9.0.0. Perhaps some issue with the new installer and docker containers. We do not officially support this type of setup. Are you able to manually install CCS at least?
I was able to install CCS 10 in a ubuntu docker container.
I faced the problem that the ccs installer did not run successfully.
Workaround: You must install udev before, because some post scripts of emulation packages want to play around with udev rules.
Thomas Dorsch said:Workaround: You must install udev before, because some post scripts of emulation packages want to play around with udev rules.
Thank you for sharing your workaround!