Jump to content

frakman1

Community Developer
  • Posts

    169
  • Joined

  • Last visited

Posts posted by frakman1

  1. On 6/10/2017 at 3:46 PM, saarg said:

    Just click info in the webgui and tell me what it says after iommu.

    This option is no longer available in Unraid 6.7.2. Can you please tell me where this information is now located? I have the same problem with it not seeing my GPU

  2. On 9/6/2017 at 8:44 AM, tillkrueger said:

    my thought exactly, Squid...since I have no other way of knowing what Krusader is doing...it's a really cool file manager, I must say! if the UI could be configured to always show the Queue at the bottom and the file manager at the top, that would make it an over the top solution for my file management duties on the server...if I were better at using rsync in Terminal, maybe I'd feel different about that, but for a GUI guy like me, Krusader is pretty great...sure beats Dolphin, in my mind.

     

    @tillkrueger I've used Dolphin on Kubuntu and find it very functional. Can you tell me how Krusader is better as I am interested in knowing what features I'm missing out on.

  3. On 11/26/2018 at 7:06 AM, ElectricBadger said:

    I've got this in my nginx config (in proxy-confs/gitlab-ce.subdomain.conf):

    
    server {
      listen *:80;
      server_name  registry.subdomain.duckdns.org;
      server_tokens off;
      return 301 https://$http_host:$request_uri;
      access_log  /config/log/nginx/gitlab_registry_access.log;
      error_log   /config/log/nginx/gitlab_registry_error.log;
    }
    
    server {
      listen *:443 ssl;
      server_name  registry.subdomain.duckdns.org;
      server_tokens off;
    
      include /config/nginx/ssl.conf;
      client_max_body_size 0;
      chunked_transfer_encoding on;
    
      access_log  /config/log/nginx/gitlab_registry_access.log;
      error_log   /config/log/nginx/gitlab_registry_error.log;
    
      location / {
        include /config/nginx/proxy.conf;
        proxy_pass http://gitlab:9381;
      }
    
      location /v2/ {
        include /config/nginx/proxy.conf;
        add_header 'Docker-Distribution-Api-Version' 'registry/2.0' always;
        proxy_pass http://gitlab:9381;
      }
    }
    
    

    and this as the container's extra parameters (minus setup for email, backups and container registry):

    
    --env GITLAB_OMNIBUS_CONFIG="external_url 'https://git.subdomain.duckdns.org';registry_external_url 'https://registry.subdomain.duckdns.org';gitlab_rails['gitlab_ssh_host']='git.subdomain.duckdns.org';nginx['listen_port']=9080;nginx['listen_https']=false;nginx['hsts_max_age']=0;registry_nginx['listen_port']=9381;registry_nginx['listen_https']=false;registry_nginx['enable']=true;registry['enable']=true;"

    If you want to use ssh rather than https for cloning/pushing, you'll need to add a port to the container for it: host port 9022 (or whatever you like that isn't being used), container port 22. I then add this in ~/.ssh/config:

    
    Host gitlab
    HostName git.subdomain.duckdns.org
    Port 9022
    User gitlab

    although I have to say that, while this works for Mac and Linux/BSD, I have no idea what the equivalent is for Windows!

    Thank you for sharing your config. I don't understand, however, what the "registry" means in this case and why you are using port 9381 since the default host port is 9080 (and 9022). 

  4. Thank you for the hints @scorcho99

    Is this the command you would use to do the conversion?

    qemu-img convert -f raw -O qcow2 /path/to/your/hdd/vm01.img /path/to/your/hdd/vm01.qcow2

    and is this the XML line to change it from raw to qcow2?

    <driver name='qemu' type='raw' cache='writeback'/>

     

  5. Thank you for the link. Does this mean that I can change the "Storage format" field from raw to qcow2 and continue to use the VM ? That storage format option was not available within the Unraid VM settings page when I created it,

     

    Actually, I just answered my own question when attempting to change it.

     

    image.png.005e02bdfa3d919d7c06c91541b143cd.png

     

    So it looks like I would need to have created the VM from within virt-manager to start with and use a qcow2 storage format in order to use the snapshot manager. Is that how you use it?

  6. I've installed this docker container :djaydev/docker-virt-manager

    I can open its WebUI and connect to my Unraid server and view my VM. 

    I don't see anywhere to save a snapshot of my VM. Can you tell me where that feature is?

     

    image.thumb.png.66f1ca45721f4c748f2b25220b746c81.png

×
×
  • Create New...