Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Felix Miata
Richard Owlett composed on 2018-09-26 06:47 (UTC-0500):

> On my laptop the default font size is unsuitably small.

My .Xresources makes Xterm fonts nice size:

xterm*faceName: Droid Sans Mono:antialias=true
xterm*faceSize: 11
xterm*vt100.geometry: 120x43
-- 
"Wisdom is supreme; therefore get wisdom. Whatever else you
get, get wisdom." Proverbs 4:7 (New Living Translation)

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

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



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Richard Owlett

On 09/26/2018 07:42 PM, Dominic Knight wrote:

On Wed, 2018-09-26 at 06:47 -0500, Richard Owlett wrote:

On 09/26/2018 06:24 AM, Dan Purgert wrote:

Richard Owlett wrote:

[...]
Also your phraseology joggled my thought process. Perhaps "file
manager"
hints at much more power than I  need. I only wish to _move_
files.
Which got me thinking that Tcl/Tk may be appropriate. I'll
experiment
with mc first.


Or perhaps just bash?  Although, your situation may have too many
clauses to really decide how/where something goes easily in a
script.



My essential need for a GUI is to select with a mouse click.
I've just downloaded it and browsed the man page.
I think mc will work.

On my laptop the default font size is unsuitably small.
A quick web search revealed that is not a mc parameter.
It is a function of the terminal emulator used. I have a MATE
desktop.
How do I determine what terminal emulator is in use?


Years ago I used to put this in an ~/.Xresources file that would change
the font sizes for _all_ the terminals.

Xft.dpi: 96
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight

Might still do the job for you.

Dom.


It didn't :{
Thanks for trying.
I need a good introductory read on xterm. Too much info in man page. Too 
little in "tutorials".






Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Dominic Knight
On Wed, 2018-09-26 at 06:47 -0500, Richard Owlett wrote:
> On 09/26/2018 06:24 AM, Dan Purgert wrote:
> > Richard Owlett wrote:
> > > [...]
> > > Also your phraseology joggled my thought process. Perhaps "file
> > > manager"
> > > hints at much more power than I  need. I only wish to _move_
> > > files.
> > > Which got me thinking that Tcl/Tk may be appropriate. I'll
> > > experiment
> > > with mc first.
> > 
> > Or perhaps just bash?  Although, your situation may have too many
> > clauses to really decide how/where something goes easily in a
> > script.
> > 
> 
> My essential need for a GUI is to select with a mouse click.
> I've just downloaded it and browsed the man page.
> I think mc will work.
> 
> On my laptop the default font size is unsuitably small.
> A quick web search revealed that is not a mc parameter.
> It is a function of the terminal emulator used. I have a MATE
> desktop. 
> How do I determine what terminal emulator is in use?
> 
Years ago I used to put this in an ~/.Xresources file that would change
the font sizes for _all_ the terminals.

Xft.dpi: 96
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight

Might still do the job for you.

Dom.



ncurses problem

2018-09-26 Thread Grzesiek Sójka

Hi there,

I compiled following test program:
==
#include 
#include 

int main()
{

initscr();

int key;
while ((key = getch()) != 27) {
if (key == KEY_RESIZE) {
clear();
mvprintw(0, 0, "COLS = %d, LINES = %d", COLS, LINES);
for (int i = 0; i < COLS; i++)
mvaddch(1, i, '*');
refresh();
}
}

endwin();
return 0;
}
==
It's supposed to show current window dimension when resizing terminal 
window. Unfortunately, dimensions are not updated and it shows initial 
geometry. Interesting thing is that it works perfectly after "ssh 
localhost" or "su -". I tested on both, sid and stretch. exactly the 
same result.


Any ideas??

PS. I use xfce4 and lxdm.

--
Pozdrawiam
Grzesiek

Wysłane z kompa wolnego od wirusów Billa Gatesa.



Scribus has stopped importing PDF files - repost - original thread was hijacked

2018-09-26 Thread Gary Dale
For the last few days, some Scribus documents I work with have stopped 
accepting PDF files within image frames. Prior to this, they would 
display a preview. Now new image frames that I create show just the file 
name, but some older frames within the document still show the preview.


When I export the document as a PDF, the frames that just display the 
file name export as empty/blank. The older frame that shows a preview 
causes the export to stop with an error saying it was unable to load the 
image.


I'm not sure if this is related to something in the PDFs or not. However 
it is happening on two documents I am working on.




Re: Decrypting LUKS from initramfs; was: Re: ext2 for /boot ???

2018-09-26 Thread deloptes
Jonathan Dowland wrote:

> What you describe is exactly how the dropbear/initramfs integration
> works. The data stored in /boot is the initramfs, and within that, the
> only material you might consider sensitive is an SSH server keypair
> (public) for the SSHD instance in the initramfs environment -
> this does not need to be the same as for your running system; and an
> authorized_keys file, containing your SSH *public* key. Are those too
> sensitive for you?
> 

thanks I read and this is what I think. I wanted to know how the other
project can be adapted.
I think dropbear is very close to what I wanted to have.

> I suspect you could probably do without the SSHD public/private keypair
> and have the initramfs environment generate a new pair each time, but
> then you'd have no chain of trust for connecting to it; so you have to
> weigh up those two scenarios.

Yes it is two faces of same evil, but I would trust the guys behind dropbear
and adopt what they suggest.

regards



Re: Why does Debian allow all incoming traffic by default

2018-09-26 Thread Jonathan Dowland

On Wed, Sep 26, 2018 at 04:07:33PM +0100, Joe wrote:

You're only moving the problem around. Some completely standard piece of
code *somewhere* has to know what is the right place to insert such a
rule. I'll give you an example: neither the beginning nor the end of my
INPUT chain is the right place, because I do some catch-all stuff about
RELATED and INVALID at the beginning of the chain, and some assorted
logging at the end. I don't want anything placed before or after those
parts. In fact, the right place for my server firewall isn't in the
INPUT chain at all, but in one of a few custom chains.


Exactly, it would not be worth attempting to support meshing your setup
with the system I sketched out. This is exactly the situation where I'd
say you go it alone instead, exactly as you do now.


--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Decrypting LUKS from initramfs; was: Re: ext2 for /boot ???

2018-09-26 Thread Jonathan Dowland

On Wed, Sep 26, 2018 at 06:14:42PM +0200, deloptes wrote:

so how can we do it with initram and without some external key server?
Imagine I have only boot not encrypted on the server.
I want to boot the machine and get a prompt via SSH or something like SSH,
where I can type in the password and decrypt root and all other volumes.
I do not want to store password or anything sensitive in the boot directory.
I can imagine one time ssh created when you try to login, but it is still
not secure enough.


What you describe is exactly how the dropbear/initramfs integration
works. The data stored in /boot is the initramfs, and within that, the
only material you might consider sensitive is an SSH server keypair
(public) for the SSHD instance in the initramfs environment -
this does not need to be the same as for your running system; and an
authorized_keys file, containing your SSH *public* key. Are those too
sensitive for you?

I suspect you could probably do without the SSHD public/private keypair
and have the initramfs environment generate a new pair each time, but
then you'd have no chain of trust for connecting to it; so you have to
weigh up those two scenarios.

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Forgotten MATE tools

2018-09-26 Thread Richard Owlett

On 09/26/2018 10:41 AM, Frank McCormick wrote:



On 9/26/18 11:21 AM, Richard Owlett wrote:

I'm setting up a new machine with MATE desktop.

Some time back I had been pointed to two very convenient tools.

One added an option to the Caja that when clicking on a file/directory 
allowed opening as administrator.


The other was a tool used when two or more windows were open. A single 
click evenly divided the available screen space between them.


I've lost the references ;<
TIA




I believe what you are looking for is caja-extensions-common.


That was not installed. But did not solve the problem.
However, doing a different web search than before turned up caja-gksu.
That worked.
Thank you.





Re: Decrypting LUKS from initramfs; was: Re: ext2 for /boot ???

2018-09-26 Thread deloptes
Igor Cicimov wrote:

> An example for automation with AWS using SSM and KMS services
>
https://icicimov.github.io/blog/server/LUKS-with-AWS-SSM-and-KMS-in-Systemd/
> It can be modified for initramfs.

so how can we do it with initram and without some external key server?
Imagine I have only boot not encrypted on the server.
I want to boot the machine and get a prompt via SSH or something like SSH,
where I can type in the password and decrypt root and all other volumes.
I do not want to store password or anything sensitive in the boot directory.
I can imagine one time ssh created when you try to login, but it is still
not secure enough.
Can you help with some thoughts on how to implement it?

thanks



Re: Forgotten MATE tools

2018-09-26 Thread Frank McCormick




On 9/26/18 11:21 AM, Richard Owlett wrote:

I'm setting up a new machine with MATE desktop.

Some time back I had been pointed to two very convenient tools.

One added an option to the Caja that when clicking on a file/directory 
allowed opening as administrator.


The other was a tool used when two or more windows were open. A single 
click evenly divided the available screen space between them.


I've lost the references ;<
TIA




I believe what you are looking for is caja-extensions-common.




Re: Forgotten MATE tools

2018-09-26 Thread humbert . olivier . 1
> One added an option to the Caja that when clicking on a file/directory 
> allowed opening as administrator.

probably caja-admin

Hope that helps
Olivier



Forgotten MATE tools

2018-09-26 Thread Richard Owlett

I'm setting up a new machine with MATE desktop.

Some time back I had been pointed to two very convenient tools.

One added an option to the Caja that when clicking on a file/directory 
allowed opening as administrator.


The other was a tool used when two or more windows were open. A single 
click evenly divided the available screen space between them.


I've lost the references ;<
TIA




Re: Why does Debian allow all incoming traffic by default

2018-09-26 Thread Joe
On Wed, 26 Sep 2018 14:39:41 +0100
Jonathan Dowland  wrote:

> On Mon, Sep 24, 2018 at 08:21:55PM +0100, Joe wrote:
> >And there you have the problem: it would be necessary for the
> >installation of certain packages (e.g. MTA) to automatically poke
> >holes in the firewall.  
> 
> We agree this far.
> 
> > For this to be practical, a completely standardised
> >iptables architecture would be necessary, with limited user
> >customisation. That's how Windows does it.  
> 
> This is where we disagree. What would be needed would be a standard
> interface for a package to say "open this port", that was implemented
> by the iptables (say) package by default, but, if you were writing a
> very DIY ruleset, you could override the iptables-package's
> implementation and provide one yourself (or ignore the package hooks
> if you wished).
> 
You're only moving the problem around. Some completely standard piece of
code *somewhere* has to know what is the right place to insert such a
rule. I'll give you an example: neither the beginning nor the end of my
INPUT chain is the right place, because I do some catch-all stuff about
RELATED and INVALID at the beginning of the chain, and some assorted
logging at the end. I don't want anything placed before or after those
parts. In fact, the right place for my server firewall isn't in the
INPUT chain at all, but in one of a few custom chains.

There could be a standard custom chain in which such rules were
inserted so that they all arrived at a place to suit the user, but my
point is that enough such hooks must be defined and honoured to cover
all reasonable use cases. This is a significant project, one which
involves all IP-aware packages, and I don't think there is *yet*
sufficient need to justify the resources to do it right.

-- 
Joe



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Sep 26, 2018 at 02:53:26PM +, Curt wrote:

[...]

> You start by telling him not to call it open source [...]

A very daring interpretation of my e-mail (and there were other
bits in there, mind you).

> Nothing gets past you guys.

Absolutely nothing, Sir!

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlurn+oACgkQBcgs9XrR2kZqnQCfeh3C/wdzVJYkatmK+wGPfrIl
Nu8AnRQzhL2neRt/s9+6ZU4mcEGYZc0c
=CuN3
-END PGP SIGNATURE-



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread Curt
On 2018-09-26,   wrote:
>
> On Wed, Sep 26, 2018 at 01:57:14PM +, Curt wrote:
>> On 2018-09-26, John Hasler  wrote:
>> > Look at ledgersmb:
>> >
>> 
>> I looked briefly but remained unconvinced this is an ecommerce platform. 
>
> It is an accounting application, aka ledger (surprise!)
>
>   https://en.wikipedia.org/wiki/LedgerSMB
>
> I think the "usual" meaning of e-commerce (or ecommerce, as the OP
> put it) is different from that.

Righto.

Now, listen up, Tom, here's what we got so far:

A guy from Singapore asks what's the best open source e-commerce platform
around.

You start by telling him not to call it open source. Hasler suggests
accounting software. I wouldn't be surprised if Bernstein piped up
soon to inform us the whole deal smells suspiciously like Eichmann's
testimony at Nuremberg. 

Nothing gets past you guys.

> Cheers
> - -- t
>
>


-- 
“An oak is a tree. A rose is a flower. A deer is an animal. A sparrow is a
bird. Russia is our fatherland. Death is inevitable.” Russian school book.



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread Frank McCormick




On 9/26/18 10:21 AM, to...@tuxteam.de wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Sep 26, 2018 at 01:57:14PM +, Curt wrote:

On 2018-09-26, John Hasler  wrote:

Look at ledgersmb:



I looked briefly but remained unconvinced this is an ecommerce platform.


It is an accounting application, aka ledger (surprise!)

   https://en.wikipedia.org/wiki/LedgerSMB

I think the "usual" meaning of e-commerce (or ecommerce, as the OP
put it) is different from that.

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlurleYACgkQBcgs9XrR2kZfBACfQjmG0CpG7L6NLtOYBI8DYQeb
w60AnRBQHxGdMHMNUSUdmQ0F1nYStO+G
=kCP5
-END PGP SIGNATURE-



One of these might interest you.

https://www.cmscritic.com/top-10-open-source-ecommerce-platforms/



Shell Bash Linux - Dropbox en ligne de commande

2018-09-26 Thread G2PC
Bonjour, j'ai installé sur Debian 9.5 le script suivant qui me permet de
me connecter à Dropbox.


Je souhaite pouvoir couper Dropbox toute la journée, et, le mettre en
route uniquement au moment de la sauvegarde.
Pour cela, il me faudrait arriver à réaliser les actions suivantes,
uniquement via un script, qui sera appelé par cron.
Il ne faudrait aucune intervention humaine pour les clics de connexion
au service Dropbox.

# Établir manuellement la connexion avec Dropbox.
# (/home/UTILISATEUR/.dropbox-dist/dropboxd &)&
# Nécessite d'ouvrir le lien qui est proposé en console.  
<< How to ?
# Nécessite de valider le bouton depuis le site de dropbox.  
<<< How to ?
# Terminer avec un équivalent ctrl c pour récupérer l'accès au terminal.  
<< How to ?
# Effectuer la sauvegarde et killall le service de Dropbox jusqu'à la prochaine 
sauvegarde.


Le script suivant est fonctionnel, mais, c'est à un utilisateur humain
de connecter le service Dropbox en cliquant sur le lien du terminal,
puis, le bouton du navigateur.

# Installation fonctionnelle depuis une Debian 9.5 Stretch avec xfce ou encore 
en mode serveur sans interface graphique.

# Prérequis : Avoir un compte Dropbox.
# Se connecter à son serveur, local, ou, distant via SSH, avec un compte 
utilisateur.

# Vérifier si le système d'exploitation est en 32 ou 64 bit.
uname -m

# Récupérer dropbox 64 bit dans le dossier home/utilisateur.
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64; | tar xzf -

# Lancer le démon dropbox
# ~/.dropbox-dist/dropboxd

# Lancer le démon dropboxd comme un service linux (Et / ou lancer dropbox dans 
/etc/rc.local)
# Alternative, détacher le processus de son terminal réel et le mettre en 
arrière-plan réel.
# Utiliser le simple utilisateur, depuis le dossier /home/UTILISATEUR/
($HOME/.dropbox-dist/dropboxd &)&

# Le message suivant va s'afficher :
Please visit 
https://www.dropbox.com/cli_link_nonce?nonce=4acb40dd3xxbdcbd93 to link 
this device.
# Laisser le démon s'exécuter en affichant régulièrement le message précédent.

# Aller sur votre PC de bureau et connecter vous avec votre navigateur à 
dropbox.com avec votre compte Dropbox.
# Saisir l'url  précédente 
https://www.dropbox.com/cli_link_nonce?nonce=4acb40dd3xxbdcbd93
# Cliquer sur le bouton "Connecter".
# Le démon dropboxd affiche alors le message : This computer is now linked to 
Dropbox. Welcome xxx.

# Sortir de l'éventuel code affiché.
Ctrl + c

# Arrêter le démon de Dropbox pour fermer totalement la connexion avec Dropbox.
killall dropbox

Source : 
https://www.visionduweb.eu/wiki/index.php?title=Sauvegarder_et_reinstaller_Linux#Connecter_son_serveur_.C3.A0_Dropbox

Une fois connecté, on peut s'occuper de synchroniser nos données vers
Dropbox.

# Installer le paquet nécessaire pour pouvoir se connecter à Dropbox
Connecter son serveur à Dropbox
.

# Sur votre serveur, le dossier Dropbox a été dans le dossier 
/home/UTILISATEUR/ lors de l'installation.
# Créer dans le dossier Dropbox un dossier Unis-pour-le-climat qui sera destiné 
a recevoir la sauvegarde de Redmine.

# Créer un nouveau script dans le dossier script-maintenance
sudo touch script-maintenance/export-sauvegarde-dropbox.sh

# Éditer le fichier export-sauvegarde-dropbox.sh
sudo nano script-maintenance/export-sauvegarde-dropbox.sh

# Établir manuellement la connexion avec Dropbox.
# (/home/UTILISATEUR/.dropbox-dist/dropboxd &)&
# Nécessite d'ouvrir le lien qui est proposé en console.
# Nécessite de valider le bouton depuis le site de dropbox.
# Terminer avec un équivalent ctrl c pour récupérer l'accès au terminal.

cd /home/UTILISATEUR/
# Copier les données dans le dossier local Unis-pour-le-climat de Dropbox
cp -r backup/ Dropbox/Unis-pour-le-climat/
# Changer les droits sur le dossier local servant de dépôt pour la sauvegarde.
sudo chmod -R 655 Dropbox/Unis-pour-le-climat/backup/
# La syncronisation vers Dropbox est automatique et immédiatement.

# Cloturer la connexion avec Dropbox.
# killall dropbox
# Ne pas fermer Dropbox si le service ne se connecte pas tout seul.

# Exécuter le script de déplacement des données locales vers le cloud distant 
de Dropbox.
sudo sh script-maintenance/export-sauvegarde-dropbox.sh

Source : 
https://www.visionduweb.eu/wiki/index.php?title=Installer_Redmine_sur_Debian#Exporter_une_copie_de_la_sauvegarde_locale_vers_Dropbox



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Sep 26, 2018 at 01:57:14PM +, Curt wrote:
> On 2018-09-26, John Hasler  wrote:
> > Look at ledgersmb:
> >
> 
> I looked briefly but remained unconvinced this is an ecommerce platform. 

It is an accounting application, aka ledger (surprise!)

  https://en.wikipedia.org/wiki/LedgerSMB

I think the "usual" meaning of e-commerce (or ecommerce, as the OP
put it) is different from that.

Cheers
- -- t
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlurleYACgkQBcgs9XrR2kZfBACfQjmG0CpG7L6NLtOYBI8DYQeb
w60AnRBQHxGdMHMNUSUdmQ0F1nYStO+G
=kCP5
-END PGP SIGNATURE-



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread Curt
On 2018-09-26, John Hasler  wrote:
> Look at ledgersmb:
>

I looked briefly but remained unconvinced this is an ecommerce platform. 

-- 
“An oak is a tree. A rose is a flower. A deer is an animal. A sparrow is a
bird. Russia is our fatherland. Death is inevitable.” Russian school book.



Re: Why does Debian allow all incoming traffic by default

2018-09-26 Thread Jonathan Dowland

On Mon, Sep 24, 2018 at 03:27:51PM -0400, Henning Follmann wrote:

And there are also reasons not to install by default one. And this is
what the OP was about. The default is to not install listening
services a thus no need for a firewall.


You must have misread or misunderstood my message, because the point I
was making was that the point of a firewall was not just to protect you
from the things you *know* are listening, but the scenarios I outline
where you have things happening you *don't* know about.


Any  default firewall would then force maintainers of packages to test
for the default firewall and if present inject a default rule to make
the service available. Otherwise you will have endless rants about
"why is my ssh not working.." etc.


Yes, we'd need an inter-package scheme for opening service ports when
packages were installed (or services enabled, a subtle distinction). I
outline a high-level approach to that in my last email to this thread (a
reply to Joe).

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Why does Debian allow all incoming traffic by default

2018-09-26 Thread Jonathan Dowland

On Mon, Sep 24, 2018 at 08:21:55PM +0100, Joe wrote:

And there you have the problem: it would be necessary for the
installation of certain packages (e.g. MTA) to automatically poke holes
in the firewall.


We agree this far.


For this to be practical, a completely standardised
iptables architecture would be necessary, with limited user
customisation. That's how Windows does it.


This is where we disagree. What would be needed would be a standard
interface for a package to say "open this port", that was implemented by
the iptables (say) package by default, but, if you were writing a very
DIY ruleset, you could override the iptables-package's implementation
and provide one yourself (or ignore the package hooks if you wished).


Fine for Brian, and others who use no firewall at the moment, not so
good for anyone with an existing hand-made set of iptables rules. My
netbook, for example, has three sets of rules which are selected
according to the environment and whether a VPN is in use. My server has
a set of rules appropriate to a network firewall plus VPN server, with
suitable named chains and 'subroutine' structure. All of this would be
swept away by a standard firewall structure, and would need to be
rebuilt in conformance with the standard. Such a standard would have to
encompass all possible use-cases, including multiple NICs and multiple
VPN arrangements. Any volunteers?


The approach I outline above would mean you would have the choice of
reworking your configuration to work in harmony with the new
arrangement, or override and ignore it, and continue as you are.

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Felix Miata
Richard Owlett composed on 2018-09-26 06:47 (UTC-0500):

> On my laptop the default font size is unsuitably small.
> A quick web search revealed that is not a mc parameter.
> It is a function of the terminal emulator used. I have a MATE desktop. 
> How do I determine what terminal emulator is in use?

Open the TE first, then do 'mc'. Open as many as you have TEs, and more.

mc is an "OFM" http://www.softpanorama.org/OFM/Paradigm/
https://en.wikipedia.org/wiki/File_manager#Orthodox_file_managers

I always have multiple mc instances open. I normally have a filecommander
instance open too, filling one virtual desktop. http://silk.apana.org.au/fc.html
Font in it is handled by its own ini file, as are its row and column counts. It
has two different sets of directory hotkeys, one "permanent", one history-based.

In Linux, fc & mc are the only file managers I use. Both are heavily used.
-- 
"Wisdom is supreme; therefore get wisdom. Whatever else you
get, get wisdom." Proverbs 4:7 (New Living Translation)

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

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



Re: bless hex editor - unexpectedly ends

2018-09-26 Thread Steve Kemp
> program - Bless hex editor
> When I export to a text file I have the following error and the
> program ends unexpectedly

  Please report your issue upon the Debian bug-tracker, rather than 
 sending it to all users upon this list.

  If you've never reported a bug this page will be helpful:

https://www.debian.org/Bugs/Reporting

  (It's great you wanted to report it, and it's even better you
 included all the details.  But chances are high your report
 would be lost in this list.)

Steve
-- 
https://steve.fi/



bless hex editor - unexpectedly ends

2018-09-26 Thread zkubin...@gmail.com
program - Bless hex editor
When I export to a text file I have the following error and the
program ends unexpectedly

$ lsb_release -a
Distributor ID: Debian
Description:Debian GNU/Linux 9.5 (stretch)
Release:9.5
Codename:   stretch

$ uname -a
Linux debian-pc 4.9.0-4-686 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23)
i686 GNU/Linux

ERROR
Starting export
*** Error in `mono': free(): invalid pointer: 0x010a05c8 ***
=== Backtrace: =
/lib/i386-linux-gnu/libc.so.6(+0x6738a)[0xb758838a]
/lib/i386-linux-gnu/libc.so.6(+0x6dfc7)[0xb758efc7]
/lib/i386-linux-gnu/libc.so.6(+0x6e806)[0xb758f806]
/lib/i386-linux-gnu/libglib-2.0.so.0(g_free+0x20)[0xb3f7b9e0]
[0xb0e85fc4]
[0xb1116625]
[0xb11164fc]
[0xb0e85f69]
[0xb0e8585c]
mono(+0x1d8b6c)[0x62cb6c]
=== Memory map: 
00454000-0085c000 r-xp  08:05 523586 /usr/bin/mono-sgen
0085d000-0086 r--p 00408000 08:05 523586 /usr/bin/mono-sgen
0086-00865000 rw-p 0040b000 08:05 523586 /usr/bin/mono-sgen
00865000-0088 rw-p  00:00 0
00a43000-0124d000 rw-p  00:00 0  [heap]
ad50c000-ad58c000 rw-p  00:00 0
ad59-ad61 rw-p  00:00 0
ad611000-ad619000 rw-p  00:00 0
ad619000-ad61b000 rw-p  00:00 0
ad61b000-ad624000 ---p  00:00 0
ad624000-ad71c000 rw-p  00:00 0
ad71c000-ad725000 ---p  00:00 0
ad725000-ad81d000 rw-p  00:00 0
ad81d000-ad826000 ---p  00:00 0
ad826000-ad83e000 rw-p  00:00 0
ad83e000-ad847000 ---p  00:00 0
ad847000-ad93f000 rw-p  00:00 0
ad93f000-ad948000 ---p  00:00 0
ad948000-ada4 rw-p  00:00 0
ada4-ada41000 ---p  00:00 0
ada41000-ae241000 rw-p  00:00 0
ae241000-ae242000 ---p  00:00 0
ae242000-aea42000 rw-p  00:00 0
aea42000-aeade000 r--p  08:05 1441233
/usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf
aeade000-aeb32000 r--p  08:05 1439700
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf
aeb32000-aeb3b000 ---p  00:00 0
aeb3b000-aec33000 rw-p  00:00 0
aec33000-aece r--p  08:05 1439697
/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf
aece-aece1000 ---p  00:00 0
aece1000-af4e1000 rw-p  00:00 0
af4e1000-af4e2000 ---p  00:00 0
af4e2000-afce2000 rw-p  00:00 0
afce2000-afcfd000 r-xp  08:05 924364
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
afcfd000-afcff000 r--p 0001a000 08:05 924364
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
afcff000-afd0 rw-p 0001c000 08:05 924364
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
afd0-afd26000 rw-p  00:00 0
afd26000-afe0 ---p  00:00 0
afe0-afe15000 rw-p  00:00 0
afe15000-afe75000 rw-s  00:05 11370521   /SYSV (deleted)
afe75000-afe76000 ---p  00:00 0
afe76000-b0676000 rw-p  00:00 0
b0676000-b0677000 ---p  00:00 0
b0677000-b0e77000 rw-p  00:00 0
b0e77000-b0e79000 r-xp  08:02 392934
/lib/i386-linux-gnu/libutil-2.24.so
b0e79000-b0e7a000 r--p 1000 08:02 392934
/lib/i386-linux-gnu/libutil-2.24.so
b0e7a000-b0e7b000 rw-p 2000 08:02 392934
/lib/i386-linux-gnu/libutil-2.24.so
b0e7b000-b0e7e000 rw-p  00:00 0
b0e7e000-b0e8e000 rwxp  00:00 0
b0e8e000-b0e92000 rw-p  00:00 0
b0e92000-b0ec9000 r-xp  08:05 924359
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
b0ec9000-b0ecc000 r--p 00036000 08:05 924359
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
b0ecc000-b0ecd000 rw-p 00039000 08:05 924359
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
b0ecd000-b0f03000 r-xp  08:05 924365
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
b0f03000-b0f04000 ---p 00036000 08:05 924365
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
b0f04000-b0f05000 r--p 00036000 08:05 924365
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
b0f05000-b0f06000 rw-p 00037000 08:05 924365
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
b0f06000-b0f0a000 r--p  08:05 1438667
/usr/share/icons/hicolor/icon-theme.cache
b0f0a000-b0f0e000 r--p  08:05 1438667
/usr/share/icons/hicolor/icon-theme.cache
b0f0e000-b0f25000 r--p  08:05 12198
/usr/share/icons/gnome/icon-theme.cache
b0f25000-b0f3c000 r--p  08:05 12198
/usr/share/icons/gnome/icon-theme.cache
b0f3c000-b0f5a000 r--p  08:05 1321029
/usr/share/locale/pl/LC_MESSAGES/glib20.mo
b0f5a000-b0f6a000 rwxp  00:00 0
b0f6a000-b0f7a000 r--p  08:05 409256
/usr/share/texlive/texmf-dist/fonts/type1/adobe/courier/pcrr8a.pfb
b0f7a000-b0f8 r-xp  08:05 1045049
/usr/lib/cli/gdk-sharp-2.0/libgdksharpglue-2.so
b0f8-b0f81000 r--p 5000 08:05 1045049
/usr/lib/cli/gdk-sharp-2.0/libgdksharpglue-2.so
b0f81000-b0f82000 rw-p 6000 08:05 1045049
/usr/lib/cli/gdk-sharp-2.0/libgdksharpglue-2.so
b0f82000-b0f92000 rwxp  00:00 0
b0f92000-b0faa000 

Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Dan Purgert
Richard Owlett wrote:
> [...]
>
> On my laptop the default font size is unsuitably small.
> A quick web search revealed that is not a mc parameter.
> It is a function of the terminal emulator used. I have a MATE desktop. 
> How do I determine what terminal emulator is in use?

I think it's gnome-terminal; but I haven't used MATE in a while.
Although, I do recall from my time using it, that one could right-click
on the main portion of the window (i.e. where the text is), and you'd
get a context menu that'd let you select the settings (font size, color,
etc.)

NOTE - you may need to do this while mc is not running (IDK if it has
its own interpretation of a right click that may get in the way).


-- 
|_|O|_| Registered Linux user #585947
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5  4AEE 8E11 DDF3 1279 A281



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread John Hasler
Look at ledgersmb:

Description-en: financial accounting and ERP program
 LedgerSMB is a full featured double-entry financial accounting and Enterprise
 Resource Planning system accessed via a web browser (Perl/JS with a PostgreSQL
 backend) which offers "Accounts Receivable", "Accounts Payable" and "General
 Ledger" tracking as well as inventory control and fixed assets handling. The
 LedgerSMB client can be a web browser or a programmed API call. The goal of
 the LedgerSMB project is to bring high quality ERP and accounting capabilities
 to Small and Midsize Businesses.
 .
 The application now defaults to being made available locally on port 5762 and
 being run directly by Starman instead of by Apache. If other access is needed,
 a Reverse Proxy can be configured locally using Apache, Nginx, Lighttpd, or
 Varnish.
 .
 For more information, please see /usr/share/doc/ledgersmb/README.Debian.
Description-md5: 21df2ca4302a3f1e63d6878e32aa4d88
Homepage: http://www.ledgersmb.org/

Consulting, paid support, and custom solutions are available.
-- 
John Hasler 
jhas...@newsguy.com
Elmwood, WI USA



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread mick crane

On 2018-09-26 12:58, mick crane wrote:

On 2018-09-26 10:52, Richard Owlett wrote:

I'm setting up a new machine and copying files from the old machine's
home directory. At the same time I'm creating a new directory
structure to better match how I work.

I found it expedient to have at least three instances of the file
manager open - [one for source directory and at least two for
destination (sub)directories].

Suggestions?
Is it even possible?

Brief web search was not encouraging. But my search terms may have
been the problem. Suggested search terms?

TIA


what you want is a GUI. doing all that at the prompt would be a pain.
There doesn't seem to be anything like the nice WinScp for linux but
what seems to work is 2 instances of thunar.
you'll need ssh / sshd working first I think to have sftp
I always have ssh and sftp seems to be there.

In one instance of thunar type
"sftp://address-of-new-box;
navigate to /home/you and make your new directory structure by right 
clicking.

in the other instance of thunar navigate to the files you want to keep
and drag them across.
This copies them so you'll need to keep track of what you've done with
a pencil and paper just to save time.


perhaps better is to copy the whole lot across as above to a temp 
directory on the new machine then with 2 instances of thunar on the new 
machine the files will disappear from the source directory as you drag 
them across so you know what you've done.


mick






--
Key ID4BFEBB31



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread mick crane

On 2018-09-26 10:52, Richard Owlett wrote:

I'm setting up a new machine and copying files from the old machine's
home directory. At the same time I'm creating a new directory
structure to better match how I work.

I found it expedient to have at least three instances of the file
manager open - [one for source directory and at least two for
destination (sub)directories].

Suggestions?
Is it even possible?

Brief web search was not encouraging. But my search terms may have
been the problem. Suggested search terms?

TIA


what you want is a GUI. doing all that at the prompt would be a pain.
There doesn't seem to be anything like the nice WinScp for linux but 
what seems to work is 2 instances of thunar.

you'll need ssh / sshd working first I think to have sftp
I always have ssh and sftp seems to be there.

In one instance of thunar type
"sftp://address-of-new-box;
navigate to /home/you and make your new directory structure by right 
clicking.
in the other instance of thunar navigate to the files you want to keep 
and drag them across.
This copies them so you'll need to keep track of what you've done with a 
pencil and paper just to save time.


mick




--
Key ID4BFEBB31



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Richard Owlett

On 09/26/2018 06:24 AM, Dan Purgert wrote:

Richard Owlett wrote:

[...]
Also your phraseology joggled my thought process. Perhaps "file manager"
hints at much more power than I  need. I only wish to _move_ files.
Which got me thinking that Tcl/Tk may be appropriate. I'll experiment
with mc first.


Or perhaps just bash?  Although, your situation may have too many
clauses to really decide how/where something goes easily in a script.



My essential need for a GUI is to select with a mouse click.
I've just downloaded it and browsed the man page.
I think mc will work.

On my laptop the default font size is unsuitably small.
A quick web search revealed that is not a mc parameter.
It is a function of the terminal emulator used. I have a MATE desktop. 
How do I determine what terminal emulator is in use?






Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread hdv@gmail
On 2018-09-26 11:52, Richard Owlett wrote:
> I'm setting up a new machine and copying files from the old machine's home
> directory. At the same time I'm creating a new directory structure to better
> match how I work.
> 
> I found it expedient to have at least three instances of the file manager 
> open -
> [one for source directory and at least two for destination (sub)directories].
> 
> Suggestions?
> Is it even possible?
> 
> Brief web search was not encouraging. But my search terms may have been the
> problem. Suggested search terms?

I use Krusader for similar purposes. It is like a GUI version of Midnight
Commander (mc). If needed just open multiple instances. When performing actions
within one instance you can do almost everything purely by keyboard, which is
great (to me) and speeds up things as well. No need to grab the mouse all the 
time.

HTH

Grx HdV



Re: OT: The vagaries of English [Was: Re: calibre ebook project?

2018-09-26 Thread Dan Purgert
Erik Christiansen wrote:
> On 25.09.18 20:19, Brian wrote:
>> On Tue 25 Sep 2018 at 14:08:23 -0500, Nicholas Geovanis wrote:
>> 
>> > Brian wrote:  Note to non-English speakersnatural English politeness
>> > will get you a nod of the head but there will be incomprehension
>> > in the mind
>> > 
>> > That also works with Americans who are native English speakers, that same
>> > mute incomprehension. I think that works with Australians too.. :-)
>> 
>> Americans? Are you referring to the ones who live in Patagonia?
>> 
>> Are Australians native English speakers?
>
> That depends. Youth less so¹, I find, but those of us who had the benefit
> of schoolteachers who were educated prior to WWII retain a certain
> mastery of English - even realising that it once had a grammar.

Hey now, we were still taught grammar (and cursive[1]!) in the 1990s.

Granted, since life in general has gotten considerably less "formal"
(for lack of a better word) since the 1940s; I wouldn't even begin to
argue that in general, that increased informality hasn't also slipped
into our use of language.  Or, perhaps it's always been this bad, and
the comparative ease of global communications today simply sheds light
onto how impaired the general population's grammatical skills are.

NOTE - I'm spefically talking about the typical errors in short, yet
"proper(tm)" methods of communication (mainly email); rather than the
evolution of "txt-spk", which was originally a workaround for clumsy
interfaces (i.e. 0-9 keypads).


[1] I am quite thrilled that I now have a secret method of communication
that my children will likely never be able to decipher. Not that they're
likely to ever be able to read my chicken-scratch handwriting anyway.


-- 
|_|O|_| Registered Linux user #585947
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5  4AEE 8E11 DDF3 1279 A281



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Dan Purgert
Richard Owlett wrote:
> [...]
> Also your phraseology joggled my thought process. Perhaps "file manager" 
> hints at much more power than I  need. I only wish to _move_ files. 
> Which got me thinking that Tcl/Tk may be appropriate. I'll experiment 
> with mc first.

Or perhaps just bash?  Although, your situation may have too many
clauses to really decide how/where something goes easily in a script.

Good luck :)


-- 
|_|O|_| Registered Linux user #585947
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5  4AEE 8E11 DDF3 1279 A281



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Richard Owlett

On 09/26/2018 05:26 AM, Dan Purgert wrote:

Richard Owlett wrote:

[...]
Suggestions?
Is it even possible?


Never seen that myself.  Wouldn't know where to start, honestly --
perhaps skipping the GUI would be a better option -- maybe something
like mc or one of the other terminal-based managers would be more what
you're looking for?

I mean, mc will do side-by-side of a pair of directories OOTB.



Hmmm. It may be GUI-enough for my purposes.
http://midnight-commander.org/ describes it as "GNU Midnight Commander 
is a visual file manager...".
Section 3 - Mouse of http://midnight-commander.org/wiki/doc/faq hints 
that it may perhaps have enough mouse functionality (enough qualifiers ;).


Also your phraseology joggled my thought process. Perhaps "file manager" 
hints at much more power than I  need. I only wish to _move_ files. 
Which got me thinking that Tcl/Tk may be appropriate. I'll experiment 
with mc first.


Thank you.






OT: The vagaries of English [Was: Re: calibre ebook project?

2018-09-26 Thread Erik Christiansen
On 25.09.18 20:19, Brian wrote:
> On Tue 25 Sep 2018 at 14:08:23 -0500, Nicholas Geovanis wrote:
> 
> > Brian wrote:  Note to non-English speakersnatural English politeness
> > will get you a nod of the head but there will be incomprehension
> > in the mind
> > 
> > That also works with Americans who are native English speakers, that same
> > mute incomprehension. I think that works with Australians too.. :-)
> 
> Americans? Are you referring to the ones who live in Patagonia?
> 
> Are Australians native English speakers?

That depends. Youth less so¹, I find, but those of us who had the benefit
of schoolteachers who were educated prior to WWII retain a certain
mastery of English - even realising that it once had a grammar.

But back to coaches; here they are only sports coaches. Any other
connotation will whistle over the head of an Aussie, unless you put
"stage-" in front, to trigger recollection of wild west movies.


¹ Now the young resort to a tautological pidgin indistinguishable from
  A-mayorkhan, complete with major disregard for singular/plural and many
  other grammatical niceties. (I thought Socrates had made a similar
  complaint, but it was more general, it seems.)

Erik



Re: Distinguish instances of GUI file manager by color

2018-09-26 Thread Dan Purgert
Richard Owlett wrote:
> [...]
> Suggestions?
> Is it even possible?

Never seen that myself.  Wouldn't know where to start, honestly --
perhaps skipping the GUI would be a better option -- maybe something
like mc or one of the other terminal-based managers would be more what
you're looking for?

I mean, mc will do side-by-side of a pair of directories OOTB. 


-- 
|_|O|_| Registered Linux user #585947
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: 05CA 9A50 3F2E 1335 4DC5  4AEE 8E11 DDF3 1279 A281



Distinguish instances of GUI file manager by color

2018-09-26 Thread Richard Owlett
I'm setting up a new machine and copying files from the old machine's 
home directory. At the same time I'm creating a new directory structure 
to better match how I work.


I found it expedient to have at least three instances of the file 
manager open - [one for source directory and at least two for 
destination (sub)directories].


Suggestions?
Is it even possible?

Brief web search was not encouraging. But my search terms may have been 
the problem. Suggested search terms?


TIA






Re: btrfs and deduplication

2018-09-26 Thread Markus Raps

On 2018-09-26 00:40, Anders Andersson wrote:
On Tue, Sep 25, 2018 at 9:56 AM, Markus Raps  
wrote:

Hi there,

currently iam trying to get deduplication working in debian/btrfs

#so i created a btrfs filesystem

mkfs.btrfs /dev/vdb1
mkdir /mnt/btrfs
mount /dev/vdb1 /mnt/btrfs

# create some random file
dd if=/dev/urandom of=/mnt/btrfs/img bs=1M count=1024
for i in {1..30}; do cp /mnt/btrfs/img /mnt/btrfs/img$i; done

# dedup this stuff
jdupes -S -B -r /mnt/btrfs/
Examining 31 files, 1 dirs (in 1 specified)
Deduplication done (30 files processed)

raps-debian btrfs # btrfs fi df /mnt/btrfs/
Data, single: total=31.50GiB, used=30.96GiB
System, DUP: total=32.00MiB, used=16.00KiB
Metadata, DUP: total=222.94MiB, used=33.69MiB
GlobalReserve, single: total=33.56MiB, used=0.00B

raps-debian btrfs # btrfs fi usage /mnt/btrfs/
Overall:
Device size:  32.00GiB
Device allocated: 32.00GiB
Device unallocated:1.04MiB
Device missing:  0.00B
Used: 31.03GiB
Free (estimated):549.41MiB  (min: 549.41MiB)
Data ratio:   1.00
Metadata ratio:   2.00
Global reserve:   33.56MiB  (used: 0.00B)

Data,single: Size:31.50GiB, Used:30.96GiB
   /dev/vdb1  31.50GiB

Metadata,DUP: Size:222.94MiB, Used:33.69MiB
   /dev/vdb1 445.88MiB

System,DUP: Size:32.00MiB, Used:16.00KiB
   /dev/vdb1  64.00MiB

Unallocated:
   /dev/vdb1   1.04MiB
raps-debian btrfs #



hm ... hasn't worked.
wrong tool ? did i missed something
or have i completely misunderstood deduplication?



I can not answer this, but as a long time user of btrfs who has never
tried deduplication I got curious, so I tried to recreate your result
on my debian testing workstation, and for me it worked. Here is the
log of exactly how I created the filesystem, and the output from btrfs
fi usage before and after running jdupes. As you can see from the
usage after deduplication, both the allocated and used space has
decreased to what would be expected.

Perhaps your kernel is too old? It is possible that you are being hit
by the issue described here:
https://btrfs.wiki.kernel.org/index.php/Changelog#By_feature

"The range for out-of-band deduplication implemented by the
EXTENT_SAME ioctl will split the range into 16MiB chunks. Up to now
this was the overall limit and effectively only the first 16MiB was
deduplicated."

I can't say I understand much about it, but it was fixed in kernel
4.18 which happens to be what I use.



# btrfs --version
btrfs-progs v4.17
# uname -a
Linux spacelab 4.18.0-1-amd64 #1 SMP Debian 4.18.6-1 (2018-09-06)
x86_64 GNU/Linux
# lvcreate spacelab -n dedup -L 100G
# mkfs.btrfs /dev/spacelab/dedup
# mount /dev/spacelab/dedup /mnt/
# dd if=/dev/urandom of=/mnt/img bs=1M count=1024
# for i in {1..30}; do cp /mnt/img /mnt/img$i;done
# btrfs fi usage /mnt
Overall:
Device size: 100.00GiB
Device allocated:  33.02GiB
Device unallocated:  66.98GiB
Device missing: 0.00B
Used:  31.04GiB
Free (estimated):  67.98GiB(min: 67.98GiB)
Data ratio:  1.00
Metadata ratio:  1.00
Global reserve:  33.23MiB(used: 0.00B)

Data,single: Size:32.01GiB, Used:31.01GiB
   /dev/mapper/spacelab-dedup  32.01GiB

Metadata,single: Size:1.01GiB, Used:33.36MiB
   /dev/mapper/spacelab-dedup   1.01GiB

System,single: Size:4.00MiB, Used:16.00KiB
   /dev/mapper/spacelab-dedup   4.00MiB

Unallocated:
   /dev/mapper/spacelab-dedup  66.98GiB
# jdupes -S -B -r /mnt
Scanning: 31 files, 1 items (in 1 specified)
Deduplication done (30 files processed)
# btrfs fi usage /mnt
Overall:
Device size: 100.00GiB
Device allocated:   2.02GiB
Device unallocated:  97.98GiB
Device missing: 0.00B
Used:   1.00GiB
Free (estimated):  97.99GiB(min: 97.99GiB)
Data ratio:  1.00
Metadata ratio:  1.00
Global reserve:  16.00MiB(used: 0.00B)

Data,single: Size:1.01GiB, Used:1.00GiB
   /dev/mapper/spacelab-dedup   1.01GiB

Metadata,single: Size:1.01GiB, Used:1.38MiB
   /dev/mapper/spacelab-dedup   1.01GiB

System,single: Size:4.00MiB, Used:16.00KiB
   /dev/mapper/spacelab-dedup   4.00MiB

Unallocated:
   /dev/mapper/spacelab-dedup  97.98GiB


just updated the kernel to 4.18
now it works

thank you



--
Mit freundlichen Grüßen / best regards
Markus Raps



Re: calibre ebook project?

2018-09-26 Thread Jonathan Dowland

On Mon, Sep 24, 2018 at 04:06:27PM -0400, Bob Bernstein wrote:

Everyone gets good faith from me first shot out of the box. The OP
had it, but subsequently it was withdrawn.


You are entitled to have your own personal policy on good faith for your
own personal communication but this is a public mailing list with a Code
of Conduct that enshrines "assume good faith", if you are not happy with
the rule, please do not post.

https://www.debian.org/code_of_conduct



--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread Richard Owlett

On 09/26/2018 03:59 AM, to...@tuxteam.de wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Sep 26, 2018 at 08:00:59AM +, Turritopsis Dohrnii Teo En Ming wrote:

Good afternoon from Singapore, There are far too many choices when
it comes to open source ecommerce solutions.


This is a good thing, isn't it?
(BTW: I prefer to spell "open source" as "free software". Yes, I do
have an agenda).


Are there any credible rankings of open source ecommerce platforms?
Which open source ecommerce solution do you think is the best and
tell me why. Thank you.


I guess "ecommerce platform" isn't a one-dimensional space, so you
won't be able to sort it along "one and only one" quailty criterion.

You'll first have to define (perhaps incompletely) your criteria
yourself, look at what is there, learn, adjust your criteria.

Hopefully, the process converges, somehow.

Since you are asking on Debian, I just queried "apt search ecommerce":
You get a couple of hits, all related to Business::OnlinePayment, which
is an online payment interface written in Perl. Hardly a complete survey.



I just tried
  https://duckduckgo.com/html?q=linux%20%2B%22ecommerce%22%20review
The hits there may give ideas on refining your search.





Re: ext2 for /boot ???

2018-09-26 Thread Jonathan Dowland

On Sat, Sep 15, 2018 at 11:52:01PM +0200, deloptes wrote:

I also wish I knew how to get ssh into initrd and the whole networking, so
that I could do it remotely when needed.


That's easy enough: install the dropbear package, reconfigure the keys /
authorized_keys files in /etc/initramfs-tools to trust whatever you need
and regenerate your initramfs.

When you SSH into the pre-boot environment, you get a shell and need to
write the decryption passphrase to /lib/cryptsetup/passfifo.

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: ext2 for /boot ???

2018-09-26 Thread Jonathan Dowland

On Fri, Sep 14, 2018 at 08:37:45AM -0400, Stefan Monnier wrote:

So, make /boot a big larger, say couple GiBs, and set data=journalled


BTW, am I the only one here bothered that his 250MB /boot partition
tends to fill up, even though a 500MB HDD was plenty to hold the whole
OS plus lots and lots of free space, on a 64bit workstation like the
original DEC Alphas?


This reminds me that I filed a d-i bug to increase the default size of
/boot for normal installations, I need to chase that up.

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: ext2 for /boot ???

2018-09-26 Thread Jonathan Dowland

On Wed, Sep 12, 2018 at 11:36:22AM +0200, Sven Joachim wrote:

This sounds like you put /boot/efi on the same filesystem as /boot which
is not recommended or supported at all[1].  On my laptop there is only a
single file under /boot/efi, namely /boot/efi/EFI/debian/grubx64.efi -
which will be written to on updates to the grub-efi package, but not
when installing a new kernel or rebuilding an initramfs.


No, I didn't: /boot was ext4, journalled, and could recover from most
unexpected power failures. The issue  was /boot/efi being mandated to
vfat, not journalled, and requiring a fsck on just about every power
outage.

--

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Jonathan Dowland
⢿⡄⠘⠷⠚⠋⠀ https://jmtd.net
⠈⠳⣄ Please do not CC me, I am subscribed to the list.



Re: Which is the best open source ecommerce platform?

2018-09-26 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Sep 26, 2018 at 08:00:59AM +, Turritopsis Dohrnii Teo En Ming wrote:
> Good afternoon from Singapore, There are far too many choices when
> it comes to open source ecommerce solutions.

This is a good thing, isn't it?
(BTW: I prefer to spell "open source" as "free software". Yes, I do
have an agenda).

> Are there any credible rankings of open source ecommerce platforms?
> Which open source ecommerce solution do you think is the best and
> tell me why. Thank you.

I guess "ecommerce platform" isn't a one-dimensional space, so you
won't be able to sort it along "one and only one" quailty criterion.

You'll first have to define (perhaps incompletely) your criteria
yourself, look at what is there, learn, adjust your criteria.

Hopefully, the process converges, somehow.

Since you are asking on Debian, I just queried "apt search ecommerce":
You get a couple of hits, all related to Business::OnlinePayment, which
is an online payment interface written in Perl. Hardly a complete survey.

Cheers
- -- tomás
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlurSl4ACgkQBcgs9XrR2kZH8wCfZpTu3Ag8pGws/LbRxw+2gdk8
HugAmwcjThXbCDJ4ZxLAwpybvRfccs2l
=qOmF
-END PGP SIGNATURE-



Which is the best open source ecommerce platform?

2018-09-26 Thread Turritopsis Dohrnii Teo En Ming
Good afternoon from Singapore, There are far too many choices when it comes to 
open source ecommerce solutions. Are there any credible rankings of open source 
ecommerce platforms? Which open source ecommerce solution do you think is the 
best and tell me why. Thank you.


===BEGIN SIGNATURE===

Turritopsis Dohrnii Teo En Ming's Academic Qualifications as at 30 Oct 2017

[1] https://tdtemcerts.wordpress.com/

[2] http://tdtemcerts.blogspot.sg/

[3] 
https://www.scribd.com/user/270125049/Teo-En-Ming

===END SIGNATURE===


keymap multimedia pour un chromebook Asus

2018-09-26 Thread Bernard Schoenacker
bonjour,

je recherche un fichier pour pouvoir activer les touches
annexes du clavier Asus T100 TAF

un grand merci à steve qui à réussi à faire fonctionner
le son ...

pour l'instant j'utilise une carte réseau usb pour 
me connecter dessus ...

reste à essayer d'activer le module broadcom et c'est
pas gagné d'avance ...


merci
slt
bernard