Date: Fri, 22 Apr 2016 07:58:01 +0000 (UTC) From: Mikhail Zakharov <zmey20000@yahoo.com> To: "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org> Subject: FreeBSD based dual-controller storage system concept Message-ID: <1362535907.181503.1461311881501.JavaMail.yahoo@mail.yahoo.com> References: <1362535907.181503.1461311881501.JavaMail.yahoo.ref@mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi Community, I=E2=80=99m testing FreeBSD as the OS for a reliable dual-controller storag= e system with ZFS, mirrored cache and etc. I have some progress on it and m= y notes on the model are already took 30 of A4 format pages and their numbe= r is still growing. Looks like I need to publish it somehow to show the mod= el to the guys who may be interested. Do you know where is the best place t= o start? From owner-freebsd-questions@freebsd.org Fri Apr 22 13:07:40 2016 Return-Path: <owner-freebsd-questions@freebsd.org> Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BDF0B189DA for <freebsd-questions@mailman.ysv.freebsd.org>; Fri, 22 Apr 2016 13:07:40 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54D431A88 for <freebsd-questions@freebsd.org>; Fri, 22 Apr 2016 13:07:39 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [62.216.201.207] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from <guru@unixarea.de>) id 1atanx-0000n1-CK; Fri, 22 Apr 2016 15:07:30 +0200 Received: from localhost.my.domain (c720-r292778-amd64 [127.0.0.1]) by localhost.unixarea.de (8.15.2/8.14.9) with ESMTPS id u3MD7QFI002533 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 22 Apr 2016 15:07:26 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.15.2/8.14.9/Submit) id u3MD7Pbc002532; Fri, 22 Apr 2016 15:07:25 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Fri, 22 Apr 2016 15:07:24 +0200 From: Matthias Apitz <guru@unixarea.de> To: freebsd-questions@freebsd.org Cc: kde-freebsd@kde.org Subject: QML hello.qml Message-ID: <20160422130724.GA2488@c720-r292778-amd64.oa.oclc.org> Reply-To: Matthias Apitz <guru@unixarea.de> Mail-Followup-To: Matthias Apitz <guru@unixarea.de>, freebsd-questions@freebsd.org, kde-freebsd@kde.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Operating-System: FreeBSD 11.0-CURRENT r292778 (amd64) User-Agent: Mutt/1.5.24 (2015-08-30) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 62.216.201.207 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: User questions <freebsd-questions.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-questions>, <mailto:freebsd-questions-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/freebsd-questions/> List-Post: <mailto:freebsd-questions@freebsd.org> List-Help: <mailto:freebsd-questions-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-questions>, <mailto:freebsd-questions-request@freebsd.org?subject=subscribe> X-List-Received-Date: Fri, 22 Apr 2016 13:07:40 -0000 Hello, I'm doing first steps in QML and follow the tutorial. The system is CURRENT on amd64 with qt5 from ports head: # pkg info | grep '^qt5-' qt5-core-5.4.1_2 Qt core non-graphical module qt5-dbus-5.4.1 Qt D-Bus inter-process communication module qt5-gui-5.4.1_3 Qt graphical user interface module qt5-imageformats-5.4.1 Qt plugins for additional image formats qt5-network-5.4.1 Qt network module qt5-opengl-5.4.1 Qt 5-compatible OpenGL support module qt5-printsupport-5.4.1 Qt print support module qt5-qml-5.4.1 Qt QML and JavaScript language module qt5-quick-5.4.1 Qt declarative framework for dynamic user interfaces qt5-sql-5.4.1 Qt SQL database integration module qt5-svg-5.4.1 Qt SVG support module qt5-testlib-5.4.1 Qt unit testing module qt5-webkit-5.4.1_2 Qt WebKit implementation qt5-widgets-5.4.1 Qt C++ widgets module qt5-xml-5.4.1 Qt SAX and DOM implementations qt5-xmlpatterns-5.4.1 Qt support for XPath, XQuery, XSLT and XML Schema With the example below the command $ /usr/local/lib/qt5/bin/qmlscene hello.qml gives only a grey box, but no text in it. What do I wrong? Thanks matthias // http://doc.qt.io/qt-5/qml-tutorial1.html // import QtQuick 2.0 Rectangle { id: page width: 320; height: 480 color: "lightgray" Text { id: helloText text: "Hello world!" y: 30 anchors.horizontalCenter: page.horizontalCenter font.pointSize: 24; font.bold: true } } -- Matthias Apitz, ✉ guru@unixarea.de, ⌂ http://www.unixarea.de/ ☎ +49-176-38902045 ¡Dios querido denos otra vez los problemas de ayer, los que tuvimos en la RDA! My Lord, give us back the problems of yesterday, those we have had in the GDR.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1362535907.181503.1461311881501.JavaMail.yahoo>