X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=fLuXrWxdrpYxWyJTl9vXkZOVzfKB9+N3wFM0AW22/Nk=; b=XcpabYJjXrgCVmNRLy2H4+D+BcizBvFXlGOmBUOUyF7zmUJCIS+KCdpWHOw3jm1xE0 CySVHKR2UWiRYHV9aX7xgAvHMtkHYqK/IGoTTFXkoHtugeR4L+pvrkbwfMrorPamGDUu Y24WJEIjxAi5AWDBQv2lrYraz+UYvBb50AF3+0s3VT6oyquz6P8arSlFYSeuTPxdqi/T T35bHWcFawOzTCN3NamMCaBum+ZKSKbKc3MxRysHUSnLD7oWPE63VvqsyoXhi3nf4OCE ft/Tr+75yNa7IBXjX/PHHevdVPWZbcAjyNsV84Pg1RIK91BpAh99xcs59ToPPXJn4AYG aWuw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=fLuXrWxdrpYxWyJTl9vXkZOVzfKB9+N3wFM0AW22/Nk=; b=Ue7Dpx6TemhUXnEgnA0TuBW8DQUde0Imsbo/2c5vmJZ14R+zyqpcCSgRb0TkXBvL8n 8WOQtdqfhlV4QD815xQcsYxN0lD3lWPsWqlWwLc65cChXxIhij/itU9+3xbDb++5ywxb 4ifdPV9E36INRhJ9iUkeM3ota92ZBnU5D2Mhlx8dZhxpHICRYf/Z6ItGMbQzDar4ca1g 7DnbFNUrgGhyWUs17XbgwSmDYLycmqcT01MHG7Mohr/8nxtN/tNecDn3CuO9OrkqhTp6 2m7MGJ6IHFLsi3JMKD8Nx+GkWa6e+q+7Lf8XC77fWLxQ6y5fTxpdLhrGeFbgOr38gTYm C2og== X-Gm-Message-State: APjAAAVlWVrScoWRj2dqeL7Vzt1htpCRA6qWU6q41x/vNn2HFsgG2y2W +5G12kEBnc1jutZlPXaea13fN3pt X-Google-Smtp-Source: APXvYqw8UJIo5ZzeVhaX46L90xZ+5Aw2Kcnuo5oTca1HW9bLU9lQxD79ynXnO7dbgQK/w43FvnmBXg== X-Received: by 2002:a19:a401:: with SMTP id q1mr7974691lfc.40.1554129391380; Mon, 01 Apr 2019 07:36:31 -0700 (PDT) Date: Mon, 1 Apr 2019 17:36:27 +0300 From: "(graahnul DOT grom AT gmail DOT com) [via geda-user AT delorie DOT com]" To: geda-user AT delorie DOT com Subject: Re: [geda-user] running mult. versions of kicad Message-ID: <20190401173627.5c03239f@demon> In-Reply-To: <20190329142529.0883A81FA169@turkos.aspodata.se> References: <20190329142529 DOT 0883A81FA169 AT turkos DOT aspodata DOT se> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; amd64-portbld-freebsd11.2) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Fri, 29 Mar 2019 15:25:28 +0100 (CET) karl AT aspodata DOT se wrote: > I'm doing some pcb-rnd/pcb <-> pcbnew file conversion > test. > > Is there anyone here who knows how to run kicad v4.0.7 > and v5.1.0 side by side so I can test and compare ? > > Currently I build and istalled kicad, footprints, > libraries and the 3dthings in: > /usr/local/kicad_4.0.7/ > /usr/local/kicad_5.1.0/ > and I can start them as /usr/local/kicad_xxx/bin/pcbnew, > but they are using the same config files in > ~/.config/kicad/. > I would try to create two separate folders to be used as home directories for each kicad instance, then launch it with $HOME environment variable set to point to appropriate directory. Hopefully, kicad will use /.config/kicad/ subdirectories from these "homes". E.g.: $ mkdir /tmp/kicad4home /tmp/kicad5home $ HOME=/tmp/kicad4home /usr/local/kicad_407/bin/pcbnew $ HOME=/tmp/kicad5home /usr/local/kicad_510/bin/pcbnew regards, Dmitry.