• How to copy linux user from server to server.

    4
    4 Votes
    4 Posts
    342 Views
    stacksofplatesS

    I know you were just explaining how to do it but this is a simple task with Ansible.

    - name: Ensure user exists user: name: Joe state: present password: "password_hash" groups: wheel, libvirt

    Instead of needing the hash up front you can do things like:

    {{ Password1234 | password_hash('sha512') }}
  • 1 Votes
    4 Posts
    941 Views
    wrx7mW

    @Pete-S said in Digital Signage - Display HTML5 Page That Requires a Login:

    You could probably make a script with curl that will login to smartsheet every 5 minutes or whatever, downloads the html5 dashboard page and save it somewhere. Then your media player can access the saved data.

    As @Romo said, login details are not sent in the URL.

    Yeah. I was thinking it was a long shot. I have been trying to figure out ways to create a local dashboard or similar to what you were saying that does that, or pulls info via an API and then the signage player connects to that, sans login.

  • POS recommendation for a small bar

    34
    1 Votes
    34 Posts
    3k Views
    WrCombsW

    @Dashrender said in POS recommendation for a small bar:

    @WrCombs said in POS recommendation for a small bar:

    @Dashrender said in POS recommendation for a small bar:

    @WrCombs said in POS recommendation for a small bar:

    @syko24 said in POS recommendation for a small bar:

    I think the option we may go with is ehopper.com as it can be used in your browser, android, or ipad.

    the Free option doesn't have anything that small business would need, no support line, no way of building your own menu. Located in NY. Limited to 1 POS with almost no features that Small Businesses need in Hospitality.

    I was also looking at aronium.com which is a free Windows POS software. It has a lot of potential but no merchant services options yet.

    Based in Russia, No pricing on Website for Upgrades , All feaures seen are basic, No Storage of information was offered in the features section.

    @syko24 said in POS recommendation for a small bar:

    @JaredBusch said in POS recommendation for a small bar:

    @syko24 said in POS recommendation for a small bar:

    Run on Windows or possibly just browser based - not looking for iPad or Android App (screens are too small)

    This is a horrible requirement. I've never seen staff have problem with a tablet based system due to the form factor.

    How could it be too small? And if that is truly a problem, I have seen systems with oversized tablets. Used one to day as a customer when I took my wife's car to the carwash.

    I have a client looking to move from some old shitty Windows based POS to something tablet based in fact.
    https://www.republicofit.com/topic/19543/anyone-heard-of-rezku-pos

    I agree that there are larger sized Android tablets that could work. I have also looked at some of the Android emulators like BlueStacks.com . The reason I had said Windows was a requirement was because the two owners (both in their 70s) are familiar with Windows. Plus they want to use hardware they already own. It's called shit we got 🙂 .

    So, here's what I tell my customers when they say that they want to use their own hardware:
    I can bring in a bag of food to your restaurant, give it to you and say go cook this like you cook your (insert Food found at restaurant - usually steak for example) and you will?
    lets say you do, but it comes out under Par for the standard of your restaurant, then what?
    I'd obviously still want a steak, are you going to replace that steak with one of yours for the same price im paying your chief to cook it?

    for bars; am I allowed to bring my own alcohol into the bar?
    lets say I bring in stuff for a mixed drink, will you make it with what I have?
    (they usually stop me here. and say no,)

    So think about it like this/ explain it like this: your clients will not allow someone to bring their own liquor/cups/food into their place of business where they offer a service and have a standard of business and guarantee for their product and services.

    That's not exactly the same thing - at least in cases where the POS system does allow you to provide your own hardware.

    How many of those tablet based solutions make you buy your own iPads/Android tablets?

    I know for sure HRPOS says to buy your own.
    Makes it better/easeir that way for support.

    For aloha and Brink the analogy works, And for the last 6 years we only sold Aloha.

    This is a salesman gimmick to sell this system. Definitely not something a hired consultant should ever use. For the consultant, it should be about what's best for the buyer.

    Sure, other peoples equipment is a headache.
    We dont support it.
    In few cases, we let it go and help people out but they pay us to set up the terminals.
    cause it's not a part of our Business Model to allow customer equipment in the site.

  • High resolution small displays

    7
    0 Votes
    7 Posts
    497 Views
    T

    Honestly, anything higher than the 1080p resolution on a 13-inch laptop is a gimmick. The screen size is simply too small for any practical case of higher resolution. And even with 1080p, I have to scale my 13.3-inch laptop to 150%.

  • 0 Votes
    13 Posts
    694 Views
    1

    @Dashrender I just checked a couple of clients and Time To Live where set to 3600 at most and counting down.

    @Obsolesce If it's default then one hour it is.

  • Need a good example of getting powershell arguments

    Unsolved
    3
    1 Votes
    3 Posts
    797 Views
    ObsolesceO

    @JaredBusch said in Need a good example of getting powershell arguments:

    I'll hit the google later, because I am on other things, but I found that something I touched today could very easily be improved if I can add parameter handling to the powershell script.

    Now, the basics are easy as it is all in the $ARGS variable/object.

    But I want to have some safety checking. because it is easier to do things right the first time.

    Example: I want a parameter to note if I should make the thing being done the default.

    I can pass a 1 like dothing.ps1 1 and I can simply code something to check $ARG[0] eq "1" but that is not very explanatory to the person using the script.

    This is more explanatory dothing.ps1 -default for a command.

    So has anyone seen a good example of parameter handling that I can put into my dothing.ps1 script?

    I'm not sure I understand exactly what you mean.

    Taking a guess here, but how I understand is that you'd want to add this at the top of your script:

    [cmdletbinding()] param ( [Parameter()] [Switch]$Default ) if ($Default) { Write-Host "The -Default parameter was specified." } else { Write-Host "The -Default parameter was NOT specified." }

    Doing that will give you the following output:

    PS > .\JBTest.ps1 -Default The -Default parameter was specified. PS > .\JBTest.ps1 The -Default parameter was NOT specified.

    If you want to accept input from a pipeline to work with, let me know.

  • Looking for 50' long USB power cable

    20
    0 Votes
    20 Posts
    1k Views
    gjacobseG

    Would this work for you? Much smaller, and still POE - just need to set the port to 48v

    https://www.amazon.com/Tycon-Systems-POE-MSPLT-USB-POE-Converter-x/dp/B00PZ009AQ

    41cK-P30W7L.jpg

  • Setting up an HP DL185 G5

    7
    1 Votes
    7 Posts
    913 Views
    DashrenderD

    @DustinB3403 said in Setting up an HP DL185 G5:

    @Dashrender That is where I was thinking a surveillance system would be a good use. I could use it as a backup repo for my VMs as well with a simple NFS share.

    Just needing some things to do with it, maybe something the kid could eventually use. (years from now. . . she's almost 1 already.)

    All these things basically go directly to what Scott said - make it a giant storage array.

  • Email server options

    Solved
    213
    2 Votes
    213 Posts
    37k Views
    DashrenderD

    @JaredBusch said in Email server options:

    @Dashrender said in Email server options:

    This comparison misses taking it beyond year 5.

    Why take it beyond 5 years? Because if it is on premises, it will need to be upgraded again.

    @Dashrender said in Email server options:

    If you add SA to the original licenses - because you know the plan is the keep using Exchange going forward - it will raise the costs noticeably in the beginning, but come renewal time it will make it significantly less. Less enough to be under O365? not likely, hell, even the 5 year plan would be more expensive for onprem vs O365... but it might lower itself over time because of the SA difference.

    SA is a scam to get more money. Always has been for the SMB. With negotiated pricing for Enterprise, it is the right thing.

    If you're a company that only upgrades once every 10 years - then yeah... SA is a waste of money, but you're already talking about upgrading again in 5 years, so SA could very much make financial sense - show me the numbers before you poo poo it.

  • Cannot view contents of a samba share

    Solved
    11
    0 Votes
    11 Posts
    314 Views
    IRJI

    Got it working. I had to set the user to nobody instead of guest. Oddly enough it would mount as guest, but just not be readable.

  • Raspberry Pi down?

    4
    0 Votes
    4 Posts
    232 Views
    WLS-ITGuyW

    @scottalanmiller said in Raspberry Pi down?:

    Did it finally download?

    Yes, I think it might have been because I had my dropbox syncing in full speed as well.

  • UPS Radiation

    22
    0 Votes
    22 Posts
    2k Views
    scottalanmillerS

    Better Call SAM

  • 2 Votes
    29 Posts
    3k Views
    scottalanmillerS

    @JaredBusch said in Getting Familiar with Sangoma S500 running with FreePBX as back end. . .:

    I've given up on EPM for anything complicated with non Sangoma phones.

    Same, I don't find it to be valuable for us.

  • Disabling Mailbox disables another mailbox

    12
    0 Votes
    12 Posts
    742 Views
    T

    After I finish the damage control or real accounts getting nuked, I am going to test that theory. but I have a 90% hunch.

  • Ethical vs Legal for user mailboxes

    3
    1 Votes
    3 Posts
    186 Views
    JaredBuschJ

    @Fredtx said in Ethical vs Legal for user mailboxes:

    have all emails forwarded to them for a specific user

    This is stupid though.

    Instead access to the users mailbox can be granted. Gods, who want sot have multiple peoples email all showing up in their inbox..

    People are so fucking stupid.

  • EdgeRouter 4: IPSec, S2S vpn

    40
    0 Votes
    40 Posts
    3k Views
    FATeknollogeeF

    The problem is this:
    On the Meraki side, let's say you have 5 (this can be any number greater than 1) firewalls.
    In Meraki speak, if all 5 are in the same "organization", S2S is a few clicks & AutoVPN takes over. No pre-shared secret, no keys.
    You turn on VPN, say yes to whatever subnets you want in the vpn & save.

    On the ER side, I have to create 5 peers to connect to the Meraki side.
    Meraki will only expose one connection for a 3rd party S2S & therein lies the problem.
    Not all the tunnels connect & there's no good way to fix it.

  • 8 Votes
    1 Posts
    565 Views
    No one has replied
  • Vagrant Libvirt and Fedora 30

    1
    7 Votes
    1 Posts
    502 Views
    No one has replied
  • New PBX - on prem or off?

    106
    0 Votes
    106 Posts
    8k Views
    scottalanmillerS

    @Dashrender said in New PBX - on prem or off?:

    Damn I just saw a bill from cox.

    A single sip phone totally managed by them end to end, $51.00/m

    That includes:
    The phone
    DID
    Vmail
    Management of the line from the phone all the way to cox.
    Calling inside the USA, ie no long distance fees.

    Very expected when you buy from an ISP.

  • Opensource BI / Dashboard / Reporting solutions?

    27
    1 Votes
    27 Posts
    4k Views
    stacksofplatesS

    Here's another example in Kibana. You can pull the same data out and display in Grafana

    business-analytics-reporting.png