ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    What Are You Doing Right Now

    Water Closet
    time waster
    285
    88.9k
    41.7m
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • dbeatoD
      dbeato
      last edited by dbeato

      Just finished setup Deepin 15.7 on old IMac, works pretty well.

      DustinB3403D 1 Reply Last reply Reply Quote 1
      • hobbit666H
        hobbit666
        last edited by

        Thanks all, given me a few things to think about.

        @JaredBusch yeah was thinking of sticking veeam on our citrix controller

        1 Reply Last reply Reply Quote 1
        • DustinB3403D
          DustinB3403 @dbeato
          last edited by

          @dbeato said in What Are You Doing Right Now:

          Just finished setup Deeping 15.7 on old IMac, works pretty well.

          What's "Deeping" ?

          NerdyDadN dbeatoD wirestyle22W 3 Replies Last reply Reply Quote 0
          • NerdyDadN
            NerdyDad @DustinB3403
            last edited by

            @dustinb3403 said in What Are You Doing Right Now:

            @dbeato said in What Are You Doing Right Now:

            Just finished setup Deeping 15.7 on old IMac, works pretty well.

            What's "Deeping" ?

            Another Linux distro

            https://www.deepin.org/en/

            jmooreJ 1 Reply Last reply Reply Quote 0
            • dbeatoD
              dbeato @DustinB3403
              last edited by

              @dustinb3403 said in What Are You Doing Right Now:

              @dbeato said in What Are You Doing Right Now:

              Just finished setup Deeping 15.7 on old IMac, works pretty well.

              What's "Deeping" ?

              I misspelled it, but it is supposed to be written as Deepin

              1 Reply Last reply Reply Quote 0
              • J
                Jimmy9008
                last edited by

                Looking for a low cost cloud windows server, with static IP, 10 - 15GB usable is fine, low RAM... any suggestions? Ideally UK...

                1 Reply Last reply Reply Quote 0
                • wirestyle22W
                  wirestyle22 @DustinB3403
                  last edited by

                  @dustinb3403 said in What Are You Doing Right Now:

                  @dbeato said in What Are You Doing Right Now:

                  Just finished setup Deeping 15.7 on old IMac, works pretty well.

                  What's "Deeping" ?

                  It's when you've just had enough

                  1 Reply Last reply Reply Quote 0
                  • siringoS
                    siringo
                    last edited by

                    upgrading zedmed to v29.8, waiting for kettle to boil to murder some coffee.......

                    1 Reply Last reply Reply Quote 0
                    • RojoLocoR
                      RojoLoco
                      last edited by

                      Drooling over this recipe... will definitely be making it soon.

                      https://www.tastingtable.com/cook/recipes/roast-pork-sandwich-recipe-philadelphia

                      Also, to my friends in the northeast: is this similar or comparable to the famous "pork roll"?

                      1 Reply Last reply Reply Quote 0
                      • momurdaM
                        momurda
                        last edited by

                        Intel selling 8086k 40th Anniversary chip.
                        newegg link cuz full address didnt parse right.

                        1 Reply Last reply Reply Quote 1
                        • WrCombsW
                          WrCombs
                          last edited by

                          one more day this week, Hope everyone has a good friday

                          1 Reply Last reply Reply Quote 0
                          • momurdaM
                            momurda
                            last edited by

                            Why Newegg, why?
                            0_1535062209171_5e3e4727-157b-4d4a-b8ac-6e73866ef152-image.png

                            KellyK 1 Reply Last reply Reply Quote 0
                            • KellyK
                              Kelly @momurda
                              last edited by

                              @momurda said in What Are You Doing Right Now:

                              Why Newegg, why?
                              0_1535062209171_5e3e4727-157b-4d4a-b8ac-6e73866ef152-image.png

                              Because, like another site, Newegg is not a tech company.

                              1 Reply Last reply Reply Quote 0
                              • momurdaM
                                momurda
                                last edited by

                                Right, but Newegg sells stuff for $, 'the other site' needs ads for $.

                                1 Reply Last reply Reply Quote 0
                                • scottalanmillerS
                                  scottalanmiller
                                  last edited by

                                  Installing an RDS server.

                                  DustinB3403D 1 Reply Last reply Reply Quote 0
                                  • DustinB3403D
                                    DustinB3403 @scottalanmiller
                                    last edited by

                                    @scottalanmiller said in What Are You Doing Right Now:

                                    Installing an RDS server.

                                    A Windows one?

                                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                                    • travisdh1T
                                      travisdh1 @wirestyle22
                                      last edited by

                                      @wirestyle22 said in What Are You Doing Right Now:

                                      @scottalanmiller said in What Are You Doing Right Now:

                                      @wirestyle22 said in What Are You Doing Right Now:

                                      As expected, Guacamole doesn't like Deepin but this was my first test.

                                      Guacamole should be installed on a server. Deepin is a desktop client, not really designed for server use. As a client, it should work fine.

                                      It's as a client. I think part of it is the wallpaper. I had limited time last night but it didn't seem like I could turn it off via the normal settings. Have to figure out nginx/SSL for guac tonight anyway.

                                      My guacamole nginx reverse proxy settings.

                                      server {
                                      	client_max_body_size 40M;
                                      	listen 443 ssl;
                                      	server_name guacamole.myserver.domain.com;
                                      	ssl	on;
                                      	ssl_certificate	/etc/ssl/myserver.domain.com.pem;
                                      	ssl_certificate_key /etc/ssl/myserver.domain.com.key;
                                      	ssl_stapling_verify on;
                                      	ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
                                      	ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
                                      	ssl_prefer_server_ciphers	on;
                                      	ssl_session_cache shared:SSL:10m;
                                      	add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
                                      
                                      	location / {
                                      		proxy_set_header X-Real-IP $remote_addr;
                                      		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                                      		proxy_set_header Host $http_host;
                                      		proxy_set_header Connection $http_connection;
                                      		proxy_http_version 1.1;
                                      		proxy_pass http://10.10.10.2:8080;
                                      		proxy_redirect off;
                                      		access_log off;
                                      		proxy_buffering off;
                                      	}
                                      }
                                      
                                      server {
                                      	client_max_body_size 40M;
                                      	listen 80;
                                      	server_name guacamole.travisdh1.net;
                                      	rewrite	^ https://guacamole.myserver.domain.com$request_uri? permanent;
                                      }
                                      

                                      Turning off the proxy buffering is the important difference you need to add that isn't in @JaredBusch's guide to nginx reverse proxy.

                                      1 Reply Last reply Reply Quote 1
                                      • siringoS
                                        siringo
                                        last edited by

                                        trippin' out to maggot brain by funkadelic

                                        1 Reply Last reply Reply Quote 2
                                        • hobbit666H
                                          hobbit666
                                          last edited by hobbit666

                                          After sleeping on it and taking everything in, i've decided to give Hyper-V another chance (can some confirm that (i think i've seen this mentioned) hyper-v can replicate to another hyper-v server for FREE?)

                                          Installed Admin center on my machine and started to play with it. Already impressed when just looking at what it can do on my machine, going to add a few hosts and have a play. Can't do to much as i'm off on hols after today for a week and a half.

                                          *Also going to install Veeam Free on my RADIUS server and script some backups of my Linux machines.

                                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                                          • hobbit666H
                                            hobbit666
                                            last edited by

                                            New problem, install veeam free on a spare server.
                                            Added my Hyper-V host and tried doing a VeeamZip on a Linux VM. Failed. Rebooted all 3 (i.e. Veeam Server, Hyper-V host and VM) still no go.
                                            Shutdown the VM and it works 😞
                                            This is the error:-

                                            24/08/2018 13:07:17 :: Unable to allocate processing resources. Error: Job failed ('Checkpoint operation for 'VMNAME' failed. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)

                                            Production checkpoints cannot be created for 'VMNAME'. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)'). Error code: '32770'.
                                            Failed to create VM recovery snapshot, VM ID 'ed67a2c9-56f6-429d-ad2e-89ff8375cde3'.

                                            Getting the feeling instead of being like a "Ducks Arse" i should look at maybe a "paid" solution that will be Hyper-V and ESXi

                                            black3dynamiteB 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3107
                                            • 3108
                                            • 3109
                                            • 3110
                                            • 3111
                                            • 4443
                                            • 4444
                                            • 3109 / 4444
                                            • First post
                                              Last post