Re: Discussion? New names of betwork devices

2019-03-23 Thread Felix Miata
David Wright composed on 2019-03-23 23:03 (UTC-0400):

> On Sat 23 Mar 2019 at 04:39:21 (-0400), Felix Miata wrote:

>> The ATX is on the left when looking at the rear from the rear with
>> the slot openings facing up. ghe wanted a frame of reference. I gave the ATX
>> position, CPU position and PS/2 port position as usual "left" references, and
>> last PCI slot as "right" reference. A BTX is to an ATX oppositely situated
>> adjacent to the last (if any) slot.

> How does this differ from a race condition?

???

Relative physical positions of motherboard components are for the motherboard's
entire life.

Time is an implicit element of every race.

Time can't change motherboard components' relative physical positions.
-- 
Evolution as taught in public schools is religion, not science.

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata  ***  http://fm.no-ip.com/



Re: Discussion? New names of betwork devices

2019-03-23 Thread David Wright
On Sat 23 Mar 2019 at 04:39:21 (-0400), Felix Miata wrote:
> deloptes composed on 2019-03-23 07:29 (UTC+0100):
> > Felix Miata wrote:
> 
> >> IME, using net.ifnames=0, the motherboard NIC closer to an ATX power
> >> supply is always eth0. With BTX I've never had two NICs, but have to
> >> suppose it would be the opposite. I think PCI(e) resources flow the same
> >> direction, from CPU & PS/2 port end to last slot end.
> 
> > interesting theory, but I must disappoint you that it is not true. Usually
> > it is from the left to the right. It has nothing to do with the ATX, except
> > if it would be on the left.
> 
> What "if"? The ATX is on the left when looking at the rear from the rear with
> the slot openings facing up. ghe wanted a frame of reference. I gave the ATX
> position, CPU position and PS/2 port position as usual "left" references, and
> last PCI slot as "right" reference. A BTX is to an ATX oppositely situated
> adjacent to the last (if any) slot.

How does this differ from a race condition?

Cheers,
David.



en_DK.UTF-8 UTF-8

2019-03-23 Thread info

Hi debian

Why can I not fint "en_DK.UTF-8 UTF-8" when I install a normal os from 
you (it is not a server version)??


I know that I can set it after the installation, but it is not the same!!

/allan



Re: Flushing all Buffers Before Exiting

2019-03-23 Thread Martin McCormick
Lee  writes:
> https://unix.stackexchange.com/questions/25372/turn-off-buffering-in-pipe/
> 
> Regards,
> Lee

Thank you and all others.  It turns out that getting the
autoflush to work in perl is on a par with falling off of a log
for ease of execution.

There is a perl variable called $| which, when set to a
non-0 value can cause an immediate flush of a buffer but perl
experts recommend you not do it that way.  It's even clearer.

At the beginning of your perl program you add a line

use IO::Handle;

That is like an include in C so the perl language handler will
know what you mean when you add the next line right after you
write to your file:

FH->autoflush(1);

FH is just my example name for the open file handle.  Perl custom
is to use all caps for the name of the file descriptor so FH or
LOGDATA refers to that file and flushes that buffer.

In this case, it is an endless loop so the buffer gets
flushed after every new write, but that's how you make it happen.

Martin



Re: Discussion? New names of betwork devices

2019-03-23 Thread Nicholas Geovanis
I suppose I should add this. In datacenters of a certain size, when the
network cabling leaves control of the OS administrators (yes, even the
Wintel admins), network admins aren't there to make your life easier. You
do it yourself.
I encountered the same issue with SAN admins a bit later over fiber cabling
to my servers. If the OS adds complication you deal with it, even if you
didn't have to before. You can argue that admins should have been
explicitly configuring NICs with salt, cobbler, etc. We did.

On Sat, Mar 23, 2019, 2:30 PM Nicholas Geovanis 
wrote:

> My 0.02€
> It's interesting how this topic is so often resurrected. The first time we
> upgraded a RedHat server and the network interfaces were renamed, our
> supervisor was.angered :-)
> The issue is the order of enumeration of devices on a PCI bus. Even
> identical models of NIC at the same level of firmware will become ready in
> non-uniform ways. Temperature plays a role, etc. If the systemd designers
> (same as the udev guys, right?) made a mistake here, perhaps it was
> overreach.
>
> On Sat, Mar 23, 2019, 1:20 PM Mart van de Wege  wrote:
>
>> Hans  writes:
>>
>> > Am Freitag, 22. März 2019, 17:15:29 CET schrieb Reco:
>> >> Or, for instance, en0p2gibberish. They call them Unpredictable Device
>> >> Named for a reason.
>> >>
>> >
>> > Yes, thsis is another thing, which I am thinking of: The names could
>> change
>> > (in case, when there are more than one network devices are active or
>> the order
>> > of activing changed).
>>
>> No. Changes in the activation order or the number of devices do not
>> matter. The naming scheme is based on what bus the devices are on and
>> what position on that bus they hold[1]. Once a name is assigned, unless
>> you plug the card into a different slot, you will get the same name
>> (note that this may not apply on hotplug architectures that don't assume
>> fixed slot positions, like USB).
>>
>> It is the *old* way that lead to unpredictable renames unless you
>> implemented udev rules to hardcode names to e.g. MAC addresses.
>>
>> > In the past, I forced the order with persistent- net.rules. Dunno, if
>> > normal users can deal with it. Can it your Mom or your Dad? Grandpa?
>> > Grandma?
>> >
>> Is it any worse than expecting them to write a udev rule?
>>
>> In the end it is a hard problem to solve because the Linux kernel does
>> dynamic enumeration of devices, so you either need a deterministic
>> algorithm to assign a name (ask the firmware) or a userspace workaround
>> in identifying the device (e.g. using udev rules, or using UUIDs in
>> /etc/fstab, etc).
>>
>> Mart
>>
>> [1] OK, not *entirely* true, it's based on what the firmware reports as
>> the device position (it used to be called 'biosdevname'. Don't know if
>> that still is the name in these (U)EFI times).
>>
>> --
>> "We will need a longer wall when the revolution comes."
>> --- AJS, quoting an uncertain source.
>>
>>


Re: Discussion? New names of betwork devices

2019-03-23 Thread Nicholas Geovanis
My 0.02€
It's interesting how this topic is so often resurrected. The first time we
upgraded a RedHat server and the network interfaces were renamed, our
supervisor was.angered :-)
The issue is the order of enumeration of devices on a PCI bus. Even
identical models of NIC at the same level of firmware will become ready in
non-uniform ways. Temperature plays a role, etc. If the systemd designers
(same as the udev guys, right?) made a mistake here, perhaps it was
overreach.

On Sat, Mar 23, 2019, 1:20 PM Mart van de Wege  wrote:

> Hans  writes:
>
> > Am Freitag, 22. März 2019, 17:15:29 CET schrieb Reco:
> >> Or, for instance, en0p2gibberish. They call them Unpredictable Device
> >> Named for a reason.
> >>
> >
> > Yes, thsis is another thing, which I am thinking of: The names could
> change
> > (in case, when there are more than one network devices are active or the
> order
> > of activing changed).
>
> No. Changes in the activation order or the number of devices do not
> matter. The naming scheme is based on what bus the devices are on and
> what position on that bus they hold[1]. Once a name is assigned, unless
> you plug the card into a different slot, you will get the same name
> (note that this may not apply on hotplug architectures that don't assume
> fixed slot positions, like USB).
>
> It is the *old* way that lead to unpredictable renames unless you
> implemented udev rules to hardcode names to e.g. MAC addresses.
>
> > In the past, I forced the order with persistent- net.rules. Dunno, if
> > normal users can deal with it. Can it your Mom or your Dad? Grandpa?
> > Grandma?
> >
> Is it any worse than expecting them to write a udev rule?
>
> In the end it is a hard problem to solve because the Linux kernel does
> dynamic enumeration of devices, so you either need a deterministic
> algorithm to assign a name (ask the firmware) or a userspace workaround
> in identifying the device (e.g. using udev rules, or using UUIDs in
> /etc/fstab, etc).
>
> Mart
>
> [1] OK, not *entirely* true, it's based on what the firmware reports as
> the device position (it used to be called 'biosdevname'. Don't know if
> that still is the name in these (U)EFI times).
>
> --
> "We will need a longer wall when the revolution comes."
> --- AJS, quoting an uncertain source.
>
>


accesibilidad con configuración standard y usuario root

2019-03-23 Thread Fran Torres
Buenas,

He reinstalado debian9 en mi HP Pabilion 250G2 y dejado la
configuración que viene por defecto con el sistema, a excepción de los
ficheros:
/etc/default/speech-dispatcher y /etc/speech-dispatcher/speed.conf
Bmbos ficheros, se les han modificado (respectivamente) las siguientes líneas:

RUN=yes (/etc/default/speech-dispatcher)
output_mode="libao" (etc/speech-dispatcher/speed.conf
  Tengo sonido sin problemas con el usuario root y con el normal pero,
en el normal se activa el lector de pantallas sin problemas, mientras
que con root ocurre lo siguiente:
1. El lector de pantallas no se activa.
2. Si en el diálogo ejecutar aplicación de mate escribimos: orca
--setup, se abre el diálogo de preferencias de orca pero, no habla.
3. Dentro del diálogo, si vamos al apartado configuracióon de voz,
encontramos que los siguientes parámetros: sintetizador, sistema de
voz, y relacionados están deshabilitados.
Cuando en sintetizador debería aparecer: por defecto del sistema,
espeak, espeak-ng, etc. EN sistema de voz, debería aparecer:
speech-dispatcher.
  E incluso, el propio orca debería arrancar hablando. A alguien se le
ocurreo como hacerlo sin tener que recurrir a la fuerza bruta, que es
como está documentado en debian, lo cual sospecho que me altera otros
comportamientos, de firefox por ejemplo?

Fran.
PD: la línea: autospaun=yes de /Etc/pulse/client.conf está tanto en
interfaz gráfica como en la consola igual, y en consola speakup
funciona sin problemas, orca funciona sin problemas en interfaz
gráfica con user normal. Pero, no funciona con root. Quiero que
funcione con este último, para tener una accesibilidad completa.
Ideas?



Re: youtube video downloader for chrome

2019-03-23 Thread Pierre Frenkiel

On Fri, 22 Mar 2019, David Wright wrote:


almost invariably up-to-date enough, and I don't have to check
for upgradesthey just appear, like mainstream updates.


  what do  you mean by "enough" ?
  why don't use the simple command:

  wget https://yt-dl.org/latest/youtube-dl -O /usr/local/bin/youtube-dl
  chmod 755 /usr/local/bin/youtube-dl

  the debian stretch version is 2018.09.10
  the last one is 2019.03.18
  But the most important is that the command "youtube-dl --update" is then 
valid,
  and you can put it in a crontab
  An other important feature is that if you have the bad luck to find a bug, you
  can only report it if you use the last version.

best regards,
--
Pierre Frenkiel



Re: Discussion? New names of betwork devices

2019-03-23 Thread Mart van de Wege
Hans  writes:

> Am Freitag, 22. März 2019, 17:15:29 CET schrieb Reco:
>> Or, for instance, en0p2gibberish. They call them Unpredictable Device
>> Named for a reason.
>> 
>
> Yes, thsis is another thing, which I am thinking of: The names could change 
> (in case, when there are more than one network devices are active or the 
> order 
> of activing changed).

No. Changes in the activation order or the number of devices do not
matter. The naming scheme is based on what bus the devices are on and
what position on that bus they hold[1]. Once a name is assigned, unless
you plug the card into a different slot, you will get the same name
(note that this may not apply on hotplug architectures that don't assume
fixed slot positions, like USB).

It is the *old* way that lead to unpredictable renames unless you
implemented udev rules to hardcode names to e.g. MAC addresses.

> In the past, I forced the order with persistent- net.rules. Dunno, if
> normal users can deal with it. Can it your Mom or your Dad? Grandpa?
> Grandma?
>  
Is it any worse than expecting them to write a udev rule?

In the end it is a hard problem to solve because the Linux kernel does
dynamic enumeration of devices, so you either need a deterministic
algorithm to assign a name (ask the firmware) or a userspace workaround
in identifying the device (e.g. using udev rules, or using UUIDs in
/etc/fstab, etc).

Mart

[1] OK, not *entirely* true, it's based on what the firmware reports as
the device position (it used to be called 'biosdevname'. Don't know if
that still is the name in these (U)EFI times).

-- 
"We will need a longer wall when the revolution comes."
--- AJS, quoting an uncertain source.



Re: Discussion? New names of betwork devices

2019-03-23 Thread Hans
Hi folks, 

interesting thing, I found this little article in internet:

https://www.freedesktop.org/wiki/Software/systemd/
PredictableNetworkInterfaceNames/

So, it looks like, since systemd v197, all devicenames are now predictable by 
udev.

If so (just an idea) packagers or developers may add a routine for the 
installation, which may ask for the actual names of the devices in the system 
and add them automatically into the configuration of the installing 
application.

As these (the devicenames) will never change, also non experienced users have 
to quarrel with the devicenames any more.

Just an idea, I do not know, how difficult it is, to write and add such a 
routine into the installer as a script (I am no coder). 

However, if one gets such a thing working, it can be used for EVERY package. 
My idea is, to add a variable or a special keyword into the configuration file, 
which will be automatically exchanged with the correct devicename.

Sorry, I can not do this myself (I am no coder, did I tell you?), just sharing 
my ideas. Maybe someone think my ideas usefull. If not - just ignore them.

In this case I apologize for all the noise.

Have a nice weekend!

Best

Hans




signature.asc
Description: This is a digitally signed message part.


Re: Flushing all Buffers Before Exiting

2019-03-23 Thread tomas
On Sat, Mar 23, 2019 at 10:27:01AM -0500, David Wright wrote:
> On Fri 22 Mar 2019 at 17:45:50 (+0100), to...@tuxteam.de wrote:

> Reading the OP's problem, I wonder how you're meant to detect
> "any whiff of a problem" [...]

Torture tests.

> The main concern raised in the OP was flushing before termination,
> for which a signal is ideal. And for best performance, I'd forget
> tee and just look at the output file occasionally, with tail.

A signal handler is definitely an option, but it can be pretty tricky.
Especially if you are catching things like SEGV (you dare a write()
after that?)

Cheers
-- t


signature.asc
Description: Digital signature


Mailvelope in firefox: "GnuPG is not available"

2019-03-23 Thread Georgios
Hi!

I'm running debian testing and I'm trying to use mailvelope with Firefox
in order to encrypt/sign my emails. I plan to use it with my yubikey.

I'm getting "GnuPG is not available". Any ideas how to solve it?

One solution i could try is downloading the packages from
https://www.gnupg.org/download/index.html and installing them.
The problem is that this option means i must manual update them.

I already tried putting a file called gpgmejson.json inside
/home/gpdsbe/.mozilla/native-messaging-hosts/

gpgmejson.json
{
"name": "gpgmejson",
"description": "Integration with GnuPG",
"path": "/usr/bin/gpgme-json",
"type": "stdio",
"allowed_extensions": ["jid1-AQqSMBYb0a8ADg@jetpack"]
}


I'm thinking that the problem is that there is no gpgme-json.
Any ideas what package i should install?

Or any other solution?


Thanks in advance.



Re: Create a custom debian Live ISO

2019-03-23 Thread Linux-Fan

Trevis Schiffer writes:


Hi,

I am trying to build a custom ISO from this guide:  
https://willhaley.com/blog/custom-debian-live-environment/


But the ISO fails to boot, with a message that it can't find the init system.

Then trying to understand: https://wiki.debian.org/DebianCustomCD but the  
whole page is bit overkill for what I want to do.


Do you know any simple, minimalist, up-to-date guide to create a custom  
minimal live ISO?


I do not know of any guide (btw. thanks for sharing the link, I think it  
will also be useful for me in the future...).


Might be too trivial a question, but: If the message is about a missing init  
system, have you cheked some options around that? If I understand the guide  
correctly, it recommends using


apt-get update && \
apt-get install --no-install-recommends \
linux-image-686 \
live-boot \
systemd-sysv

You might try using regular sysvinit? In my scripts I use
package `live-config-systemd` (which is not sysvinit but still another  
package as recommended in the guide). As a debugging measure it might also  
be interesting to omit the `--no-install-recommends` because the missing  
package might be reommended by another and it would be easy if the fix is  
just installing some more packages (one can find out which exactly are  
needed later).


Also, it is fine if you want to know all the details and create the live-iso  
with the guide, but other more automated approaches exist, e.g. I used  
`remastersys` (now seems to be continued as Linux Respin?  
http://www.linuxrespin.org/) in the past which most often produced good  
results (except images were sometimes too large but that was my fault of  
wanting to include too much software).


In case you try a remastersys-like approach and it fails for some reason, I  
have some modified version of (the original) remastersys which continues to  
work to today with systemd and new kernels, although I have not tried it with  
Debian Sid yet and my automation still fails to setup the desired keyboard  
layout and timezone for the resulting live system :)



I want some network audit tools, emacs-nox, zfs-fuse  etc with a sid ISO.


Definitely doable. If you want to run it on a live CD/DVD you need to follow  
your guide or remastersys or such. If it later runs on an USB pendrive, you  
could also consider just "installing" Debian to the drive and see how far  
you can get with making the essential parts read-only afterwards? This would  
enable you to upgrade the system later (which is good for everyhting network- 
connected?)


Just a collection of thoughts, nothing precise at the moment :(

HTH
Linux-Fan


pgpPkz3NhuYeB.pgp
Description: PGP signature


Re: Framework LISP pour application web

2019-03-23 Thread Basile Starynkevitch


On 3/23/19 4:22 PM, kaliderus wrote:

Le bonjour,

Je souhaite intégrer en environnement (common) LISP un framework web.
Glouglou me donne quelques résultats mais je me vois mal les tester un
par un ou faire confiance à une unique source telle que :
https://lisp-journey.gitlab.io/web-dev
ou
https://www.cliki.net/web%20framework

Si vous avez quelques recommandations de solutions mises en oeuvre
dans le monde réel ce serait bien.
En vous remerciant par avance.



Ca dépend ce que tu appelles Lisp. Mais si une variante de Scheme est 
pour toi un Lisp, je te conseilles vivement Hop (un derivé de Bigloo). 
http://hop.inria.fr/home/index.html & 
https://en.wikipedia.org/wiki/Hop_(software) developpé par Manuel Serrano


(pour des raisons "commerciales" Manuel Serrano a tristement parfois 
besoin de présenter son oeuvre comme un dérivé de JavaScript; en 
réalité, c'est un dérivé de Scheme).


Si tu veux plus généralement un language fonctionnel similaire à Ocaml, 
regardes bien Ocsigen. http://ocsigen.org/ dévelopé par Vincent Belat et al.



Je connais assez bien Manuel Serrano et Vincent Belat. Ce sont des 
chercheurs confirmés, et des développeurs exceptionnels et des fans du 
logiciel libre.


(je ne leur arrive pas à la cheville, j'aurais aimé être aussi bon 
développeur qu'eux; je travaille sur Bismon 
.).


Cordialement

--
Basile STARYNKEVITCH   == http://starynkevitch.net/Basile
opinions are mine only - les opinions sont seulement miennes
Bourg La Reine, France



Re: Flushing all Buffers Before Exiting

2019-03-23 Thread David Wright
On Fri 22 Mar 2019 at 17:45:50 (+0100), to...@tuxteam.de wrote:
> On Thu, Mar 21, 2019 at 07:52:33PM -0500, Martin McCormick wrote:
> 
> [...]
> 
> > Opening, appending and closing for each new line of
> > output made me a bit squeamish.  The program is monitoring a
> > stream of data from a radio scanner.  The data spew in at about
> > 20 or 30 lines per second.
> 
> Don't fear. Measure :-)
> 
> Doesn't sound outrageous to line-buffer your output to file.
> 
> The output to screen is already line-buffered (by default,
> at least) and isn't killing you, so if I were you, I'd set
> up a benchmark run and torture things a bit. Then, *if* you
> notice any whiff of a problem, you could try a more clever
> scheme like timeout based flush to better get hold of bursts
> (if I understood your description, things go out in bursts).

Reading the OP's problem, I wonder how you're meant to detect
"any whiff of a problem". All we know is that the maximum rate
*might* be 30 lines per second, but is that a guess? Are we
already losing the odd line? How would we replicate test runs?

Probably not, at 30 lps, but in principal I would say that
this is a sticking plaster while you write your better method.

The main concern raised in the OP was flushing before termination,
for which a signal is ideal. And for best performance, I'd forget
tee and just look at the output file occasionally, with tail.

Cheers,
David.



Framework LISP pour application web

2019-03-23 Thread kaliderus
Le bonjour,

Je souhaite intégrer en environnement (common) LISP un framework web.
Glouglou me donne quelques résultats mais je me vois mal les tester un
par un ou faire confiance à une unique source telle que :
https://lisp-journey.gitlab.io/web-dev
ou
https://www.cliki.net/web%20framework

Si vous avez quelques recommandations de solutions mises en oeuvre
dans le monde réel ce serait bien.
En vous remerciant par avance.



Create a custom debian Live ISO

2019-03-23 Thread Trevis Schiffer

Hi,

I am trying to build a custom ISO from this guide: 
https://willhaley.com/blog/custom-debian-live-environment/


But the ISO fails to boot, with a message that it can't find the init 
system.


Then trying to understand: https://wiki.debian.org/DebianCustomCD but 
the whole page is bit overkill for what I want to do.


Do you know any simple, minimalist, up-to-date guide to create a custom 
minimal live ISO?


I want some network audit tools, emacs-nox, zfs-fuse  etc with a sid ISO.



Re: Acess Devian 9 laptop by another devica via wifi

2019-03-23 Thread Tom Browder
On Sat, Mar 23, 2019 at 5:12 AM Tom Browder  wrote:
>
> > > Is there any reliable way to either (1) always connect via the LAN or (2)
> > > make the laptop broadcast its own LAN so I can login to it wirelessly from
> > > the iPad?

Solved!!

I tried using my iPhjone as a personal hotspot and connected the
laptop AND iPad to it and I can ssh into the laptop with no problems.

-Tom



Re: Acess Devian 9 laptop by another devica via wifi

2019-03-23 Thread Dan Ritter
Tom Browder wrote: 
> I travel often with a hefty laptop running Debian 9 and like to do casual
> programming on it remotely via a terminal app (Termius) on an iPad. In many
> situations I am able to access the laptop when on a wireless LAN by getting
> its IP address with "sudo ifconfig" and simply using that address in
> Termius to ssh in to the laptop.
> 
> However, someteimes that does not work until I edit the wireless connection
> and declare it public. And in still other cases I cannot access the laptop
> at all.
> 
> Is there any reliable way to either (1) always connect via the LAN or (2)
> make the laptop broadcast its own LAN so I can login to it wirelessly from
> the iPad?

The times that you can't connect are probably due to the
configuration of the network you are connecting to, not anything
under your control.

One easy and cheap workaround would be to add a second wifi interface to
the laptop via a USB interface -- find one that's compatible
with hostapd, and run that. You'll get a private wifi network
for your laptop and your iPad.

-dsr-



Re: Bluetooth audio problem

2019-03-23 Thread Nicholas Geovanis
On Fri, Mar 22, 2019 at 9:29 AM Mark Fletcher  wrote:

>
> So this turned out to be a weirdie -- if I dropped the "sudo" my
> original command worked.
> So now, suddenly from that update that started this thread, if I run the
> pactl command as an unprivileged user, it works fine.


Is it possible that you had previously started pulseaudio as root, and
could no longer communicate with it as an unprivileged user?
I ask this having been a pulseaudio victim myself sometimes.


> Mark
>
>


Re: Acess Devian 9 laptop by another devica via wifi

2019-03-23 Thread Tom Browder
> > Is there any reliable way to either (1) always connect via the LAN or (2)
> > make the laptop broadcast its own LAN so I can login to it wirelessly from
> > the iPad?
...
> It is unclear to me if you have one internal network (network behind
> your laptop) or if both the Ipad and the laptop are connected to the
> wireless infrastructure of the guest (hotel airport ...).

Both are connected to the same wireless LAN.

Thanks.

-Tom



Re: Discussion? New names of betwork devices

2019-03-23 Thread Felix Miata
deloptes composed on 2019-03-23 07:29 (UTC+0100):

> Felix Miata wrote:

>> IME, using net.ifnames=0, the motherboard NIC closer to an ATX power
>> supply is always eth0. With BTX I've never had two NICs, but have to
>> suppose it would be the opposite. I think PCI(e) resources flow the same
>> direction, from CPU & PS/2 port end to last slot end.

> interesting theory, but I must disappoint you that it is not true. Usually
> it is from the left to the right. It has nothing to do with the ATX, except
> if it would be on the left.

What "if"? The ATX is on the left when looking at the rear from the rear with
the slot openings facing up. ghe wanted a frame of reference. I gave the ATX
position, CPU position and PS/2 port position as usual "left" references, and
last PCI slot as "right" reference. A BTX is to an ATX oppositely situated
adjacent to the last (if any) slot.
-- 
Evolution as taught in public schools is religion, not science.

 Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!

Felix Miata  ***  http://fm.no-ip.com/



Organic optimization of Kangry.com!!

2019-03-23 Thread robert

Kangry Group,

Hope you are well.


I came across your wonderful website and really appreciate the hard work  
done. However never expected such simple flaws!



You won't believe these basic flaws are dampening your web performance.  
Still I would like to bring few of the key points in our notice were  
overall performance can be improved.



Technical SEO Errors are the most important factor which should be  
corrected in order to make your website eligible for search engine ranking.




Getting optimal visibility and incorporate competitive keywords.

Approaching local Customers for swift outcomes.

Maximum engagement on Social Media sites.

Unique Contents makes a website noticeable.

Eliminating technical issues will help search engines to index your web  
pages.



Back-Link Again “Which sites your target audience visits”

Back links are no- more just links that adds to your authority, rather it's  
a meaning full way to reach your target audience. Identifying your target  
market is only one-fifth of the battle. Now Opportunity is to deliver on  
their key searches.



Measuring Social Outreach is an essence for any websites traffic  
improvement. A single post can make or break your brand out reach. Hence,  
careful consideration is required while distributing your links.



In case you were wondering why this is relevant? Sustainable success in the  
web is only possible with a well functioning and neatly optimized website.  
Hence, professional help can make you compete against your competitors to  
achieve new milestones.



Please reply us back for a no-obligation site audit report. We will give  
you a detailed insight of what to and how to achieve your bottom line.



Robert Rainmaker

Digital Marketing Analyst



Note: If you're not interested in this service, please reply with a simple  
\"NO\" and we will not contact you again.




Note: This is an advertisement and a promotional mail in adherence to the  
guidelines of CAN-SPAM act 2003. We have clearly mentioned the source id of  
this mail, also clearly mentioned the subject line; and they are in no way  
misleading in any form. We are sorry if you get email 2 or 3 times. We have  
found your email address through our own efforts on the web search and not  
through any illegal way.





Re: Acess Devian 9 laptop by another devica via wifi

2019-03-23 Thread john doe
On 3/23/2019 12:48 AM, Tom Browder wrote:
> I travel often with a hefty laptop running Debian 9 and like to do casual
> programming on it remotely via a terminal app (Termius) on an iPad. In many
> situations I am able to access the laptop when on a wireless LAN by getting
> its IP address with "sudo ifconfig" and simply using that address in
> Termius to ssh in to the laptop.
>
> However, someteimes that does not work until I edit the wireless connection
> and declare it public. And in still other cases I cannot access the laptop
> at all.
>
> Is there any reliable way to either (1) always connect via the LAN or (2)
> make the laptop broadcast its own LAN so I can login to it wirelessly from
> the iPad?
>

I guess you would need to use (1)

It is unclear to me if you have one internal network (network behind
your laptop) or if both the Ipad and the laptop are connected to the
wireless infrastructure of the guest (hotel airport ...).


The former would be your best bet here including improve security.
If the latter, you can't control the restriction put on the guest
wireless. So advertising services on a guest network might never work.


https://en.wikipedia.org/wiki/Bonjour_(software)

--
John Doe



Re: Bluetooth audio problem

2019-03-23 Thread Mark Fletcher
On Fri, Mar 22, 2019 at 08:44:46PM +0100, deloptes wrote:
> Mark Fletcher wrote:
> 
> > So this turned out to be a weirdie -- if I dropped the "sudo" my
> > original command worked.
> > 
> > So now, suddenly from that update that started this thread, if I run the
> > pactl command as an unprivileged user, it works fine. I have no idea why
> > it changed but I'm just happy I have it working again.
> 
> you can mark also as solved, if solved
> 

True, I could have. But I don't think it will kill interested people who 
follow after to read a 3-mail thread to see the resolution.



Re: Reco - Re: iotop - or, checking what is accessing a drive

2019-03-23 Thread Tixy
On Sat, 2019-03-23 at 11:31 +1100, David wrote:
> Hi deb
> 
> I don't know why you have a habit of editing the message
> subject to add people's names, but I ask you to stop doing it.

I second that request for the same reasons David said, also seeing
someone else's name at the start of subject lines makes it look a lot
like spam.

-- 
Tixy



Re: Discussion? New names of betwork devices

2019-03-23 Thread deloptes
Felix Miata wrote:

> IME, using net.ifnames=0, the motherboard NIC closer to an ATX power
> supply is always eth0. With BTX I've never had two NICs, but have to
> suppose it would be the opposite. I think PCI(e) resources flow the same
> direction, from CPU & PS/2 port end to last slot end.

interesting theory, but I must disappoint you that it is not true. Usually
it is from the left to the right. It has nothing to do with the ATX, except
if it would be on the left.
Thinking is good but knowing is better!

regards