On 2021-01-27, Rick Thomas wrote:
> I'm trying to install Debian Buster [1] on my Cubox-i4P with an eSATA
> drive. Everything seems to be fine, but when it comes time to reboot,
> it boots into the installer again, rather than the installed system.
>
> Here's what I did, and what I observed:
>
> *)
On Mi, 27 ian 21, 20:03:22, Rick Thomas wrote:
> I'm trying to install Debian Buster [1] on my Cubox-i4P with an eSATA
> drive. Everything seems to be fine, but when it comes time to reboot,
> it boots into the installer again, rather than the installed system.
>
> Here's what I did, and what I
On 28/1/21 12:03 pm, Rick Thomas wrote:
I'm trying to install Debian Buster [1] on my Cubox-i4P with an eSATA drive.
Everything seems to be fine, but when it comes time to reboot, it boots into
the installer again, rather than the installed system.
Here's what I did, and what I observed:
*)
I'm trying to install Debian Buster [1] on my Cubox-i4P with an eSATA drive.
Everything seems to be fine, but when it comes time to reboot, it boots into
the installer again, rather than the installed system.
Here's what I did, and what I observed:
*) I downloaded the two parts of the SDcard in
On 2021-01-27 14:46:14 +0100, Emanuel Berg wrote:
> Vincent Lefevre wrote:
>
> > With zsh, you can avoid the pipe with zsh expansions:
> >
> > local ver=${${(M)${(f)"$(aptitude show $pack)"}:#Version:*}#* }
> >
> > or with apt-cache (which is faster than aptitude):
> >
> > local ver=${${(M)${(
Hi,
I don't know zentyal AD. But I was able to join Debian 8 to 10 and centos
7 to Active directory following red hat guide.
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/windows_integration_guide/introduction
I used realmd and sssd.
Based on this experience.
Chec
I'm trying to join a Debian Bullseye instance to Active Directory domain
powered by Zentyal Community Edition.
I'm not sure if I'm doing it wrong on the client or on the server side,
but the server is just a default Zentyal 6.2 CE setup with enabled AD
services.
I've tried following a few gu
Stefan Monnier wrote:
>> It is still in some interface but good enough for
>> a reference.
>
> https://sources.debian.org/data/main/u/units/2.18-1/definitions.units
>
> gives you the "raw" file.
#! /bin/zsh
file-url () {
local pack=$1
local ver=$(dpkg-query -f '${Version}\n' -W $pack)
Stefan Monnier wrote:
>> It is still in some interface but good enough for a reference.
>
> https://sources.debian.org/data/main/u/units/2.18-1/definitions.units
>
> gives you the "raw" file.
Great! :)
> Stefan
= king
--
underground experts united
http://user.it.uu.se/~embe8573
https://datasw
Vincent Lefevre wrote:
> With zsh, you can avoid the pipe with zsh expansions:
>
> local ver=${${(M)${(f)"$(aptitude show $pack)"}:#Version:*}#* }
>
> or with apt-cache (which is faster than aptitude):
>
> local ver=${${(M)${(f)"$(apt-cache show --no-all-versions
> $pack)"}:#Version:*}#* }
Co
Variante B.1.1.7 (Reino Unido), Variante 1.351 (Sudáfrica), Variante P.1
(Brasil)
PRUEBAS DE HISOPADO NASOFARINGEO
ABBOTT PANBIO™ COVID-19 Ag RAPID TEST (Cat. 41FK10)
Actualmente existen diferentes variantes del COVID-19 que están circulando a
nivel mundial, donde destaca:
Variante B.1.1.7 (R
On Mi, 27 ian 21, 12:38:07, Vincent Lefevre wrote:
> On 2021-01-27 12:02:53 +0100, Emanuel Berg wrote:
> > > Or even better, with dpkg-query(1)
> > >
> > > file-url () {
> > > local debian=https://sources.debian.org/src
> > > local pack=$1
> > > local ver=$(dpkg-query -f '${Version}\n'
> Or even better, with dpkg-query(1)
>
> file-url () {
> local debian=https://sources.debian.org/src
> local pack=$1
> local ver=$(dpkg-query -f '${Version}\n' -W $pack)
> local file=$2
> local url=$debian/$pack/$ver/$file
> echo $url
> }
Advantage compared to previous vers
Emanuel Berg [2021-01-27 10:49:49] wrote:
> tomas wrote:
>
>> https://sources.debian.org/src/units/2.18-1/definitions.units
>
> It is still in some interface but good enough for a reference.
https://sources.debian.org/data/main/u/units/2.18-1/definitions.units
gives you the "raw" file.
> Oh, forgot the awk + grep trick :)
Or even better, with dpkg-query(1)
file-url () {
local debian=https://sources.debian.org/src
local pack=$1
local ver=$(dpkg-query -f '${Version}\n' -W $pack)
local file=$2
local url=$debian/$pack/$ver/$file
echo $url
}
--
underground
> #! /bin/zsh
>
> file-url () {
> local debian=https://sources.debian.org/src
> local pack=$1
> local ver=$(aptitude show units | grep '^Version: ' | awk '{print $2}')
> local file=$2
> local url=$debian/$pack/$ver/$file
> echo $url
> } # [1]
>
> [1] https://dataswamp.org/~i
Still stuck on this one... I would really appreciate some insight... Is
what I'm trying to do possible with preseed and partman?
Le 23/01/2021 à 19:15, Antoine Mazeas a écrit :
As a follow-up, the following recipe (a truncated version of the
original in OP) results in a wrong partitioning:
> It is still in some interface but good enough for a reference.
>
> Good enough for government work!
>
> So it is: https://sources.debian.org/src/ + package name +
> package version + file name
$ file-url units definitions.units #
https://sources.debian.org/src/units/2.21-1/definitions.units
#!
tomas wrote:
> https://sources.debian.org/src/units/2.18-1/definitions.units
It is still in some interface but good enough for a reference.
Good enough for government work!
So it is: https://sources.debian.org/src/ + package name +
package version + file name
--
underground experts united
h
Hello, how can I get a hyperlink to a particular file in
a pack? e.g., definitions.units of the units pack, i.e.
units-2.21/definitions.units ? TIA
--
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal
On 2021-01-27 12:02:53 +0100, Emanuel Berg wrote:
> > Or even better, with dpkg-query(1)
> >
> > file-url () {
> > local debian=https://sources.debian.org/src
> > local pack=$1
> > local ver=$(dpkg-query -f '${Version}\n' -W $pack)
> > local file=$2
> > local url=$debian/$pack/$
On Wed, Jan 27, 2021 at 10:49:49AM +0100, Emanuel Berg wrote:
> tomas wrote:
>
> > https://sources.debian.org/src/units/2.18-1/definitions.units
>
> It is still in some interface but good enough for a reference.
>
> Good enough for government work!
:-)
> So it is: https://sources.debian.org/
Linux-Fan writes:
Rainer Dorsch writes:
Hi,
with virtualbox, it is possible that the guest system rescales its screen if
I change the window for the guest (and virtualbox guest tools are installed
at
least). Does anybody know if that is possible with virt-manager/libvirt/qemu/
kvm?
It
Rainer Dorsch writes:
Hi,
with virtualbox, it is possible that the guest system rescales its screen if
I change the window for the guest (and virtualbox guest tools are installed at
least). Does anybody know if that is possible with virt-manager/libvirt/qemu/
kvm?
It is certainly possible
On Wed, Jan 27, 2021 at 10:21:29AM +0100, Emanuel Berg wrote:
> Hello, how can I get a hyperlink to a particular file in
> a pack?
You mean... a Debian package?
> e.g., definitions.units of the units pack, i.e.
> units-2.21/definitions.units ? TIA
If I understood you correctly, there are several
On Tue, Jan 26, 2021 at 4:07 PM Rainer Dorsch wrote:
>
> Hi,
>
> I created a virtual machine using libvirt with qemu/kvm. To make it simple, I
> installed a Debian 10 guest on a Debian 10 host. I am wondering, if it is
> possible to access (pulse-)audio from the guest.
If you have - the optional
26 matches
Mail list logo