Chromebox for Clerks and Data Entry
-
Going back to this topic.
Finally had a moment to take an old desktop, install Fedora 29 stock on it, run updates and installed remmina. It now connects to our ERP system just fine. Opened Firefox to O365 web portal for email and Excel Online. Boss was impressed. Informed him that, instead of Group Policy, we would place these types of machines in an untrusted zone with just access to the Internet and open ports to the Salt Stack master and the ERP system between the trusted and untrusted zones. Boss still impressed.
He asked about comparison between Fedora Linux management and Google Chromebook management. Where SaltStack is free, we would have to pay for Google Enterprise administration on an annual basis.
Not there yet, but a step in the right direction.
-
@NerdyDad sounds like good progress.
-
And now I have been given the green light to build a fedora 29 salt stack server. Testing only, not production yet.
-
@NerdyDad said in Chromebox for Clerks and Data Entry:
And now I have been given the green light to build a fedora 29 salt stack server. Testing only, not production yet.
Good steps!
-
Was working on this and working in state files (SLS). I can remotely install Remmina on the minions, but is it possible to configure the RDP configurations within remmina? For example, some needs RDP to the ERP system, while others may need RDP to one-off servers once in a while. Is there a way for me to configure these RDP connections within the sls file?
-
@NerdyDad said in Chromebox for Clerks and Data Entry:
Was working on this and working in state files (SLS). I can remotely install Remmina on the minions, but is it possible to configure the RDP configurations within remmina? For example, some needs RDP to the ERP system, while others may need RDP to one-off servers once in a while. Is there a way for me to configure these RDP connections within the sls file?
You should be able to supply a config file into the reminna directory, yes.
-
@NerdyDad said in Chromebox for Clerks and Data Entry:
Was working on this and working in state files (SLS). I can remotely install Remmina on the minions, but is it possible to configure the RDP configurations within remmina? For example, some needs RDP to the ERP system, while others may need RDP to one-off servers once in a while. Is there a way for me to configure these RDP connections within the sls file?
You can push files to minions, so save the config, and have that pushed out to the minions. Getting it in the right place is the hardest part.
-
https://github.com/FreeRDP/Remmina/wiki/Remmina-Usage-FAQ
The numero uno is the connections and preferences.
So you can
sed
the changes in or just copy a over what is there. -
@DustinB3403 said in Chromebox for Clerks and Data Entry:
@NerdyDad said in Chromebox for Clerks and Data Entry:
Was working on this and working in state files (SLS). I can remotely install Remmina on the minions, but is it possible to configure the RDP configurations within remmina? For example, some needs RDP to the ERP system, while others may need RDP to one-off servers once in a while. Is there a way for me to configure these RDP connections within the sls file?
You should be able to supply a config file into the reminna directory, yes.
@travisdh1 said in Chromebox for Clerks and Data Entry:
@NerdyDad said in Chromebox for Clerks and Data Entry:
Was working on this and working in state files (SLS). I can remotely install Remmina on the minions, but is it possible to configure the RDP configurations within remmina? For example, some needs RDP to the ERP system, while others may need RDP to one-off servers once in a while. Is there a way for me to configure these RDP connections within the sls file?
You can push files to minions, so save the config, and have that pushed out to the minions. Getting it in the right place is the hardest part.
According to Remmina's FAQ here, they store their configs in different places. Remmina's main configuration files are stored in
$HOME/.config/remmina/
asremmina.pref
. Connections are stored individually under$HOME/.local/share/remmina
asXXXXXXXXXXXXX.remmina
. If I can rename these files to be more SysAdmin friendly, then it would be easy to know who gets what connection.After that, it is just a matter of setting up a local file server for IT to serve out config files and other stuff.
-
@NerdyDad If you create an individual connection and call it "User-RDP-1"
Does it get that name in
$HOME/.local/share/remmina/User-RDP-1.remmina
? -
@DustinB3403 said in Chromebox for Clerks and Data Entry:
@NerdyDad If you create an individual connection and call it "User-RDP-1"
Does it get that name in
$HOME/.local/share/remmina/User-RDP-1.remmina
?It's bee a while since I looked, but I don't think so. Would be VERY happy to be proven wrong!
-
@travisdh1 I can probably check this when I get home.
-
Yeah the file names are random
-
You can rename the files obviously, but you can't import them if you change the name it seems.
-
@DustinB3403 said in Chromebox for Clerks and Data Entry:
You can rename the files obviously, but you can't import them if you change the name it seems.
actually...maybe I cant import because it's already listed.
-
Yeah so the import / export seems to need some work as it allows you to "export" something but you can't import it. At least it doesn't seem that way.
But you can rename the connections. And they'll show up with that name in the list at the bottom of the connection screen.
-
@DustinB3403 said in Chromebox for Clerks and Data Entry:
@DustinB3403 said in Chromebox for Clerks and Data Entry:
You can rename the files obviously, but you can't import them if you change the name it seems.
actually...maybe I cant import because it's already listed.
Copy it and change the name, then reload Remmina. You'll now see a copy of the same thing. Go back and delete the original in the file system and reload Remmina again. Original disappears.
Tells me that one should be able to simply dump the connection configs on the minions, tighten down the permission to read only for the user and let them operate.