Trying to move Root CA from Macbook to Ubuntu

The following is where I am having trouble. Not sure what or where to add this in my terminal. What am I doing wrong?

Configure Samba by adding the following to the end of the /etc/samba/smb.conf file:

using terminal. thought i had it but no

The Private Key for this Client Certificate is missing or invalid

I’m really not sure what you’re doing. You don’t “move” anything, you simply install the cert on the Ubuntu device. I’m also not sure what you’re doing with Samba or why.

This is the guide you should be following…

https://docs.start9.com/0.3.5.x/device-guides/linux/ca-linux#ca-linux

I am following this guide. My file is in my downloads folder. I change the adjective none to unfair-chest. Not sure if i entered this correctly. My terminal cannot find the file

Hi! Is this the command you’re having trouble with?

sudo cp “adjective-noun.crt” /usr/share/ca-certificates/start9/

Yes. I changed adjecrive-noun to unfair.chest.crt. Not sure if I downloaded it the correct way

It says no such file in directory

is this correct?

cd ~/Downloads
sudo mkdir -p /usr/share/ca-certificates/start9
sudo cp “unfair-chest” /usr/share/ca-certificates/start9/
sudo bash -c “echo ‘start9/unfair-chest’ >> /etc/ca-certificates.conf”
sudo update-ca-certificates

You need to use full name with file extansion unfair-chest.crt. See example below.

cd ~/Downloads
sudo mkdir -p /usr/share/ca-certificates/start9
sudo cp “unfair-chest.crt” /usr/share/ca-certificates/start9/
sudo bash -c “echo ‘start9/unfair-chest.crt’ >> /etc/ca-certificates.conf”
sudo update-ca-certificates

I copied your message. It continues to say no such file exists

When you are in the Downloads directory, check if the file is there by running ls -al. If the file is present, it should be listed. If not, you need to download it again and verify where your browser is saving the file. By default, it should be the Downloads directory.

The file is in my downloads folder. I do not understand ls -al. I entered that into my terminal. This is what shows

user@linux-laptop:~$ user@linux-laptop:~$ ls -al
total 104
drwxr-x— 19 user user 4096 Mar 31 17:47 .
drwxr-xr-x 3 root root 4096 Aug 19 2024 …
-rw------- 1 user user 5371 Apr 1 14:01 .bash_history
-rw-r–r-- 1 user user 220 Mar 31 2024 .bash_logout
-rw-r–r-- 1 user user 3771 Mar 31 2024 .bashrc
drwx------ 17 user user 4096 Mar 31 18:38 .cache
drwx------ 17 user user 4096 Mar 31 18:44 .config
drwxr-xr-x 2 user user 4096 Aug 19 2024 Desktop
drwxr-xr-x 2 user user 4096 Aug 19 2024 Documents
drwxr-xr-x 5 user user 4096 Apr 1 14:00 Downloads
drwxr-xr-x 2 user user 4096 Mar 1 00:02 .fontconfig
drwx------ 2 user user 4096 Apr 1 13:01 .gnupg
-rw------- 1 user user 20 Aug 23 2024 .lesshst
drwx------ 4 user user 4096 Aug 19 2024 .local
drwxr-xr-x 2 user user 4096 Aug 19 2024 Music
drwxr-xr-x 3 user user 4096 Apr 1 14:02 Pictures
drwx------ 3 user user 4096 Aug 20 2024 .pki
-rw-r–r-- 1 user user 807 Mar 31 2024 .profile
drwxr-xr-x 2 user user 4096 Aug 19 2024 Public
drwx------ 5 user user 4096 Aug 20 2024 snap
drwx------ 2 user user 4096 Aug 19 2024 .ssh
drwxrwxr-x 2 user user 4096 Mar 31 17:47 start9-backup
user@linux-laptop:~$ er 217 Aug 23 2024 .wget-hstsdmin_successful

You are currently in your Home directory. Try changing to the Downloads directory with the following command:

cd Downloads

Then, list all files by running ls -al