Re: WiFi works during install, not after

2016-10-24 Thread Jude DaShiell

On Mon, 24 Oct 2016, to...@tuxteam.de wrote:


Date: Mon, 24 Oct 2016 04:16:12
From: to...@tuxteam.de
To: Carl Fink 
Cc: Debian Users 
Subject: Re: WiFi works during install, not after
Resent-Date: Mon, 24 Oct 2016 08:16:29 + (UTC)
Resent-From: debian-user@lists.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Oct 23, 2016 at 05:09:06PM -0400, Carl Fink wrote:

So I have a ThinkPad Yoga 11s ultrabook.

If I copy over the firmware-realtek package, Debian can install just
fine over the WiFi connection. (I don't have wired internet at my
home.)

After install, everything is fine, except I can't connect to the
WiFi. I know it's possible because the installer does it!


Yes, this is an irritating aspect of Debian installation. But, to
be honest, I don't know how one could do better, since the kernel
at installation doesn't need to be the finally installed kernel.

You have to make the firmware available to the installer at install
time in a directory /firmware in some removable media. The installer
usually stops to give you a chance to do that. If I read it correctly,
the installer looks somewhere below /media, where the removable
media is found.

See also [2] and [3] for more background and alternatives.


The wlan0 interface exists and is up, but "dhclient wlan0" ends up
assigning 169.169.254.8.192, which is not a routable address. As you
might expect, attempts to ping/connect to external systems via IP
address fail with "Destination host unreachable" and of course, DNS
lookups universally fail.


Yeah (I think there's one 169 too much). This is a link-locak address,
after RFC3927. I try to keep my nets free of those ;-)


This ultrabook is supposed to have the rtl8723au chipset, which is a
USB 802.11/Bluetooth chipset that for some reason Lenovo used in the
laptop, with an inside-the-case-only USB connection.


Sic transit gloria mundi ;-/

regards

[1] https://wiki.debian.org/Firmware#Firmware_during_the_installation
[2] 
https://raphaelhertzog.com/2011/03/14/missing-firmware-in-debian-learn-how-to-deal-with-the-problem/
[3] https://wiki.debian.org/DebianInstaller/NetbootFirmware

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

iEYEARECAAYFAlgNw0wACgkQBcgs9XrR2kZddwCfYY+MiNH1iZYqdRk58LY3Wf5A
Y3EAnAhyB2nUWBEPeNpCiNgArhrD59sz
=HO0l
-END PGP SIGNATURE-

Debian already has lots of freedesktop.org stuff in it, so why not add 
netctl and make dialog package a dependency of it?  True you don't get 
wifi working at start up after install, but a few commands and you make 
your network profile and are up on the internetwith netctl.  To make 
network profiles you run wifi-menu -o and scan and select networks then 
key in your passphrase and if all goes well get returned to the command 
prompt.  Then as root or equivalent netctl switch-to `netctl list`.  If 
that command exits with no complaints reboot and you should have 
internet.  The only thing is, if your network runs into problems you'll 
need to shut the network interface down or no more internet until that's 
done.  You're effectively jammed.






--



Re: bash NEWBIE I/O and I/O redirection problems

2016-10-24 Thread der.hans

Am 24. Oct, 2016 schwätzte Richard Owlett so:

moin moin Richard,

"to stdout AND "logfile" can be accomplished with tee.

# puts the results of ls in the file and also shows results on STDOUT
# the -a tells tee to append so repeated calls will get all of the output
# from your script
ls | tee -a /tmp/ls.out

By default tee truncates so without the -a it will first zero out the
file, then start adding text.

$ rm /tmp/ls.out
$ ls -l /etc/issue | tee -a /tmp/ls.out; ls -l /tmp/ls.out
-rw-r--r-- 1 root root 26 Nov 30  2014 /etc/issue
-rw-r--r-- 1 lufthans lufthans 50 Okt 24 20:06 /tmp/ls.out
$ ls -l /etc/issue | tee -a /tmp/ls.out; ls -l /tmp/ls.out
-rw-r--r-- 1 root root 26 Nov 30  2014 /etc/issue
-rw-r--r-- 1 lufthans lufthans 100 Okt 24 20:06 /tmp/ls.out
$ ls -l /etc/issue | tee /tmp/ls.out; ls -l /tmp/ls.out
-rw-r--r-- 1 root root 26 Nov 30  2014 /etc/issue
-rw-r--r-- 1 lufthans lufthans 50 Okt 24 20:06 /tmp/ls.out
$

ciao,

der.hans

I suspect an appropriate response would be being pointed an *atypical* 
tutorial.
A Google search for "bash tutorial pipe redirect" [w/o quotes] gave results 
for "normal" users. I have and odd use case. I had assumed bash as shell but 
am open to using another shell if it is more appropriate.


The following, though using bash syntax, should be considered *PSEUDO* code.

# stdout and stderr will be a MATE terminal window
# this was required to address a problem outside scope of this post
gsettings set org.mate.media-handling automount false


while true
 do
   echo "Insert medium, press Enter key (or Ctrl+C to end)"
   read dummyvar
# need code here for /dev/sr0 to be "ready" - I had been watching drive 
activity light

   blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048)
   echo "Block count: "$blocks;# to stdout AND "logfile"
   echo "Byte count: $(expr $blocks '*' 2048)" ;# to stdout AND "logfile"
   DEVICEBLKCOUNT=$(expr $(cat /sys/class/block/sr0/size) / 4)
   echo "Device block count: "$DEVICEBLKCOUNT ;# to stdout AND "logfile"
   echo "";# to stdout AND "logfile"
   echo "*"   ;# to stdout ONLY
   echo "The output file will be $FILENAME"   ;# to stdout AND "logfile"
   xorriso -indev /dev/sr0  -data_cache_size 512 1024 -check_media 
data_to=$FILENAME

   echo "";# to stdout AND "logfile"
   echo "next lines are output of ls and isosize commands" ;# to stdout ONLY
   ls -l $FILENAME  ;# to stdout AND "logfile"
   /sbin/isosize $FILENAME  ;# to stdout AND "logfile"
   echo "about to repeat loop";# to stdout ONLY
   echo "";# to stdout AND "logfile"
 done




--
#  http://www.LuftHans.com/http://www.PhxLinux.org/
#  "It's not that I'm so smart, it's just that I stay with problems longer."
#  -- Albert Einstein

bash NEWBIE I/O and I/O redirection problems

2016-10-24 Thread Richard Owlett
I suspect an appropriate response would be being pointed an 
*atypical* tutorial.
A Google search for "bash tutorial pipe redirect" [w/o quotes] 
gave results for "normal" users. I have and odd use case. I had 
assumed bash as shell but am open to using another shell if it is 
more appropriate.


The following, though using bash syntax, should be considered 
*PSEUDO* code.


# stdout and stderr will be a MATE terminal window
# this was required to address a problem outside scope of this post
gsettings set org.mate.media-handling automount false


while true
  do
echo "Insert medium, press Enter key (or Ctrl+C to end)"
read dummyvar
# need code here for /dev/sr0 to be "ready" - I had been watching 
drive activity light

blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048)
echo "Block count: "$blocks   ;# to stdout AND "logfile"
echo "Byte count: $(expr $blocks '*' 2048)" ;# to stdout AND 
"logfile"

DEVICEBLKCOUNT=$(expr $(cat /sys/class/block/sr0/size) / 4)
echo "Device block count: "$DEVICEBLKCOUNT	;# to stdout AND 
"logfile"

echo ""   ;# to stdout AND "logfile"
echo "*"  ;# to stdout ONLY
echo "The output file will be $FILENAME"	;# to stdout AND 
"logfile"
xorriso -indev /dev/sr0  -data_cache_size 512 1024 
-check_media data_to=$FILENAME

echo ""   ;# to stdout AND "logfile"
echo "next lines are output of ls and isosize commands" ;# 
to stdout ONLY

ls -l $FILENAME ;# to stdout AND "logfile"
/sbin/isosize $FILENAME ;# to stdout AND "logfile"
echo "about to repeat loop"   ;# to stdout ONLY
echo ""   ;# to stdout AND "logfile"
  done




Fwd: WiFi works during install, not after

2016-10-24 Thread Carl Fink

So, I gather no one has any insights and I should just file a bug against
... firmware-realtek? The installer? Can anyone maybe suggest which package
the bug should be filed against?

Thanks.
Carl

 Forwarded Message 
Subject:WiFi works during install, not after
Resent-Date:Sun, 23 Oct 2016 21:09:25 + (UTC)
Resent-From:debian-user@lists.debian.org
Date:   Sun, 23 Oct 2016 17:09:06 -0400
From:   Carl Fink 
To: Debian Users 



So I have a ThinkPad Yoga 11s ultrabook.

If I copy over the firmware-realtek package, Debian can install just
fine over the WiFi connection. (I don't have wired internet at my home.)

After install, everything is fine, except I can't connect to the WiFi. I
know it's possible because the installer does it!

The wlan0 interface exists and is up, but "dhclient wlan0" ends up
assigning 169.169.254.8.192, which is not a routable address. As you
might expect, attempts to ping/connect to external systems via IP
address fail with "Destination host unreachable" and of course, DNS
lookups universally fail.

This ultrabook is supposed to have the rtl8723au chipset, which is a USB
802.11/Bluetooth chipset that for some reason Lenovo used in the laptop,
with an inside-the-case-only USB connection.

The firmware-realtek package is installed on the ultrabook.

Interestingly, the rtl8723au module is NOT loaded, and "modprobe
rtl8723au" fails with a message about the module not being found, even
though it's right there if I "locate rtl8723au", in the drivers/staging
directory. Maybe the staging area isn't used by default? I confess I
don't remember how to change the path that is searched for loadable modules.

Any insights would be most gratefully received.

--
Carl Fink
c...@finknetwork.com



Re: comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread William Satterthwaite
I think a table; something like this would be prudent. I only know about
FPM2 as that is what I use, would be interesting in seeing a summary of
alternatives.

Password Manager
Supports snycing
Features
FPM2
No
Cipher: ACS-256
- Generates passwords up to 255 characters long, with options for
numbers, symbols and avoiding ambiguous characters (1 and I etc.)
- Password categories and filtering
- Search on typing
- Store addition reference information (url, notes, username)
- Password launchers
- Copy password to Primary selection or clipboard without showing it.
- Can use a key file
- Export/Import passwords to/from XML for moving between managers


About syncing, I use Mega.nz, because client side encryption, but some
inbuilt syncing system would be better, ideally peer to peer, so it
never leaves my devices.

On 25/10/16 06:44, deloptes wrote:
> Daniel Pocock wrote:
>
>>
>> On 24/10/16 13:05, Daniel Pocock wrote:
>>>
>>> There have been various discussions in here and in some derivative
>>> projects like Ubuntu about choosing and using password managers,
>>> especially the way to sync their password lists across multiple devices.
>>>
>>> Given the way we do things in Debian it is important not to depend on a
>>> service like Dropbox to sync the password files.
>>>
>>> Therefore, how are people choosing a password manager and solving this
>>> in practice?
>>>
>>> - which password managers have a built-in mechanism for synchronizing or
>>> merging password lists on multiple devices?
>>>
>>> - who is using some other mechanism such as Git or ownCloud to sync?
>>>
>>> I've made a list of some of the password managers in Debian:
>>>
>>> https://packages.qa.debian.org/a/assword.html
>>> https://packages.qa.debian.org/p/password-gorilla.html
>>> https://packages.qa.debian.org/p/password-store.html
>>> https://packages.qa.debian.org/r/revelation.html
>>> https://packages.qa.debian.org/k/keepass2.html
>>> https://packages.qa.debian.org/k/keepassx.html
>>> https://packages.qa.debian.org/k/kedpm.html
>>> https://packages.qa.debian.org/f/fpm2.html
>>> https://packages.qa.debian.org/c/cpm.html
>>> https://packages.qa.debian.org/p/passwordsafe.html
>>>
>>> There are quite a few and so it is hard for somebody to know the best
>>> place to start, maybe a comparison table in the wiki will be needed.
>> Wiki now created:
>>
>> https://wiki.debian.org/PasswordManagement
>>
>>
>>> Some other factors that come to mind for a comparison table:
>>>
>>> - support for PGP
>>> - support for other strong crypto (e.g. smartcard)
>>> - merging algorithm for multiple devices
>>> - multi-user / team capabilities
>>> - browser integration
>>>
>>> I notice that Tails chose to include KeePassX, although there is some
>>> uncertainty how it was selected:
>>>
>>> https://labs.riseup.net/code/issues/9231
>>>
>>> Can anybody comment on its history there?
>>>
> What about the wallet? In KDE4 and former KDE3 now Trinity Desktop we use
> the kwallet now tdewallet to store the passwords. I know gnome has also
> one, but I don't know it's name. I think each desktop has or should have a
> kind of integrated password manager. It is worth mentioning this.
>
> https://userbase.kde.org/KDE_Wallet_Manager
> https://utils.kde.org/projects/kwalletmanager/
> https://en.wikipedia.org/wiki/KWallet
>
> regards
>
>
>



signature.asc
Description: OpenPGP digital signature


Re: comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread Ben Finney
Daniel Pocock  writes:

> Therefore, how are people choosing a password manager and solving this
> in practice?

A primary criterion for my data is: Avoid depending on a service I can't
quickly replicate elsewhere with all my data intact.

This tends strongly toward standard protocols, and services that are
published as free software.

So, for a password manager:

* The database must be in a format already known to be readable by
  other, mature, well-maintained software.

  (This disqualifies an application-specific storage format that might
  have been readable when I first checked but doesn't remain compatible
  over time.)

* The encryption must be immediately available to decrypt with standard
  tools, using keys in a standard format and available in an obvious
  place to use.

  (This disqualifies software that says it supports a standard
  encryption algorithm but its keys or encrypted data are not right
  there for me to try decrypting in a hurry with standard tools.)

* The synchronisation must default to, and encourage, standard
  widely-implemented file synchronisation systems.

  (This disqualifies software that has a non-default option for some
  protocol that most of the application's users don't use, therefore
  it's not as widely user-tested and more likely to be unreliable when I
  need it.)

* The synchronisation must default to, and encourage, choosing an
  independently-maintained hosting provider.

  (Similar to the above, if most people default to a single hosting
  provider then the federated hosting will not be nearly well tested
  enough to assure reliability in a pinch.)

* The synchronisation must easily and obviously allow a user to set up
  their own (or ask a skilled friend to set up) hosting, on at least an
  equal standing with other synchronisation methods.

For me, at present the best option is Password Store (a.k.a. ‘pass’).

> - which password managers have a built-in mechanism for synchronizing
> or merging password lists on multiple devices?

By setting a Git remote to a private hosted repository, all my devices
can sync the password database by Git push and pull.

> - who is using some other mechanism such as Git or ownCloud to sync?

Git is not an other method, it's built in to the application :-)

> Some other factors that come to mind for a comparison table:
>
> - support for PGP

Password Store uses standard OpenPGP, as implemented by GnuPG.

> - support for other strong crypto (e.g. smartcard)

Don't know about this.

> - merging algorithm for multiple devices

Password Store uses a separate encrypted file for each entry, so merges
are only a matter of managing a directory tree.

> - multi-user / team capabilities

I've seen discussion of this in the Password Store community; it usually
comes down to managing one's GnuPG keys.

Password Store allows the database to be encrypted to (i.e. unlockable
by any of) multiple GnuPG keys.

> - browser integration

I prefer integration to *all* applications on the desktop: i.e., the
program should simply place the passphrase in the clipboard, allowing me
to paste it into whatever form I visit. That covers the browser as well.

-- 
 \“But it is permissible to make a judgment after you have |
  `\examined the evidence. In some circles it is even encouraged.” |
_o__)—Carl Sagan, _The Burden of Skepticism_, 1987 |
Ben Finney



Re: Multiple versions of postgesql installed

2016-10-24 Thread Ben Caradoc-Davies

Gary,

what is happening is that you have the postgresql metapackage installed. 
From time to time, this package is updated to depend on the supported 
postgresql (e.g. postgresql-9.6). If you remove postgresql and just 
install (e.g.) postgresql-9.6, the installation of new versions will cease.


Installing postgresql-9.X will not automatically upgrade an existing 
cluster, should leave an existing cluster on port 5432, and will install 
new services in parallel on a new port.


It should be safe to remove unused postgresql-9.x packages. A simulated 
removal with "apt-get purge -s" will report whether unrelated packages 
depend on any particular package. Be very sure that you remove the right 
package. Purge will also remove your data, I think; you can use "apt-get 
remove" if you do not mind residual mess. Have good backups.


You should also consider migrating to the latest version (supported), 
but there are often changes that break applications, so check 
compatibility before upgrading, or test with the new one (this is where 
parallel postgresql installations shine):

https://www.postgresql.org/docs/9.0/static/migration.html
https://www.postgresql.org/docs/9.2/static/upgrading.html

Kind regards,
Ben.


On 25/10/16 07:10, Gary Roach wrote:

Hi all,

I have been having trouble with my django development project finding
the postgresql database. In the process of looking for the source of the
problem I found that there are versions of postgresql installed for 9.1
through 9.6 . Are all of these copies necessary and can I safely remove
all of the ones that I am not using for my project or are there other
packages on the system that are using those.

Debian Stretch with KDE desktop

Gary R.




--
Ben Caradoc-Davies 
Director
Transient Software Limited 
New Zealand



[SOLUCIONADO] Re: Samba + Openldap fallo en login

2016-10-24 Thread Maykel Franco
Gracias Felix. He ido indagando un poco más y he encontrado esto:

https://wiki.debian.org/LDAP/NSS

Instalando libnss-ldap y editando el fichero de configuración:

/etc/nsswitch.conf

Con estos valores:

passwd: files ldap
  group:  files ldap
  shadow: files ldap

  hosts:  files dns ldap
  networks:   files ldap

  protocols:  db files
  services:   db files
  ethers: db files
  rpc:db files

  netgroup:   nis

Ahora al hacer un getent passwd y getent group ahora sí me muestra los
usuarios y grupos de Samba:

Y ya puedo hacer login:

root@debian:/mnt# smbclient //localhost/DATA -U test --password test
WARNING: The "syslog" option is deprecated
Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.3.11-Debian]
smb: \>

Gracias por la yuda.

El día 24 de octubre de 2016, 19:06, Felix Perez
 escribió:
> El día 23 de octubre de 2016, 19:27, Maykel Franco
>  escribió:
>> Hola buenas, estoy tratando de montar este tutorial en Debian Jessi:
>>
>> https://www.unixmen.com/setup-samba-domain-controller-with-openldap-backend-in-ubuntu-13-04/
>>
>> Todo ha ido bien excepto en el paso en el que se ejecuta el comando
>> smbldap-populate, que además de añadirte las entradas en ldap, debería
>> de añadir los siguientes grupos al sistema:
>>
>> sk@server:~$ sudo getent group
>> [...]
>> Domain Admins:*:512:root
>> Domain Users:*:513:
>> Domain Guests:*:514:
>> Domain Computers:*:515:
>> Administrators:*:544:
>> Account Operators:*:548:
>> Print Operators:*:550:
>> Backup Operators:*:551:
>> Replicators:*:552:
>>
>> En mi caso, esos grupos no me los muestra... Samba los necesita para
>> poder interactuar entre ldap y el sistema.
>>
>> Debugueando un poco he encontrado esto:
>>
>>   check_ntlm_password:  Authentication for user [maykel] -> [maykel]
>> FAILED with error NT_STATUS_NO_SUCH_USER
>>   Checking NTLMSSP password for WORKGROUP\maykel failed: 
>> NT_STATUS_NO_SUCH_USER
>>   ../auth/ntlmssp/ntlmssp_server.c:737: Checking NTLMSSP password for
>> WORKGROUP\maykel failed: NT_STATUS_NO_SUCH_USER
>>   remote_name  : 'debian-maykel'
>>   remote_name  : 'debian-maykel'
>>
>> El caso es que el usuario si existe más que comprobado:
>>
>> # ldapsearch -LLL  -x -D "cn=admin,dc=sytes,dc=net" -W -H
>> "ldap://localhost; -b "ou=Users,dc=sytes,dc=net" "(uid=maykel)"
>> Enter LDAP Password:
>> dn: uid=maykel,ou=Users,dc=sytes,dc=net
>> objectClass: top
>> objectClass: person
>> objectClass: organizationalPerson
>> objectClass: posixAccount
>> objectClass: shadowAccount
>> objectClass: inetOrgPerson
>> cn: maykel
>> sn: maykel
>> uid: maykel
>> uidNumber: 1001
>> gidNumber: 513
>> homeDirectory: /home/maykel
>> loginShell: /bin/bash
>> gecos: System User
>> givenName: maykel
>> userPassword:: e1NTSEF9emdlcktQcHFHV3F6Z3RHRTdnNkVLRWVKZnFSU1dVSXg=
>> shadowLastChange: 17097
>> shadowMax: 45
>>
>> # smbldap-userlist
>> uid  |username
>>
>>0 |root |
>> 65534 |nobody   |
>> 1000 |olatz|
>> 1001 |maykel   |
>>
>>
>> He probado añadir esto en smb.conf que dicen que solucionaba el
>> problema pero no he tenido éxito:
>>
>> map untrusted to domain = Yes
>>
>>
>> http://zewaren.net/site/node/87
>>
>> Alguien sabe que puede estar pasando?
>>
>
> Pregunto yo. ¿Porqué insistir en usar modelos con ubuntu?
>
> https://www.google.cl/?gws_rd=ssl#q=setup+samba+domain+controller+with+openldap+backend+in+debian+jessie
>
> https://wiki.debian.org/SambaDcWithLdapBackend
>
> https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller
>
> Saludos.
>
> --
> usuario linux  #274354
> normas de la lista:  http://wiki.debian.org/es/NormasLista
> como hacer preguntas inteligentes:
> http://www.sindominio.net/ayuda/preguntas-inteligentes.html
>



Re: [OT] Debian LVM

2016-10-24 Thread Javier Marcon
El 24/10/16 a las 15:36, Fausto Disla escribió:
> Ok, y que pasa si de esos 3 discos (500gb PV +300gb PV + 500gb PV) por
> lo cual tendria 1300tb VG, le asigno 900gb a un LV y 400gb a otro LV y
> se dana un disco de 500 se perderia toda la data o tendria alguna
> forma de luego recuperar la informacion de los disco aun buenos? Como
> podria ser?
>
Para solventar esos casos en general se usa raid + lvm. Cada disco
tendria una partición del tipo Raid, entonce si vos tenes 2 discos de
500 y dos de 320, haces raid uno entre los 2 de 500 y raid1 entre los
dos de 320, y cada array de discos (md1, md2, etc.) es el que agregas al
volume group.

howtoforge.com/how-to-set-up-software-raid1-on-a-running-lvm-system-incl-grub2-configuration-debian-squeeze

Saludos,

Javier.

-- 
El matrimo es tan bueno que la gente se muere por casarse
con mujeres como Nazarena Velez, Margerie Orbin, 
Jordania Linn Graham, Katherine Knight, Stacey Castor, etc.



Re: Vim help, tags, sudo

2016-10-24 Thread jeremy bentham
On Mon, Oct 24, 2016 at 05:24:34PM -, Frank Miles wrote:
> On Mon, 24 Oct 2016 18:30:02 +0200, jeremy bentham wrote:
> 
> > This could be a vim question, but since sudo's involved I'll
> > start here.
> > 
> > I am thrashing about, trying to get wheezy going on a new machine
> > (well, new to me.  I think the huckster term-of-art is
> > "pre-owned":  I had the pleasure of wiping dollarbill inc's crap
> > off it).
> > 
> > Anyway, I got vim installed, opened it up and wanted to look at
> > the docs for something.
> > 
> > :h 
> > 
> > resulted in, "E433:  no tags file"
> > 
> > I've been using vim for a long time, upgrading as time went
> > along, and I'd never thought about the mechanics of help.  So I
> > had to go looking.
> > 
> > Ctags wasn't installed, so I got that and ran it on the vim doc
> > directory.  It didn't make a tags file, but something that looks
> > like a config file for who-knows-what.
> > 
> > So I looked at another machine, decided that the doc directories
> > were sufficiently similar (vim 7.1 versus 7.3) and copied the
> > tags file over.  Kludgy, I know, and generally a Bad Idea (tm).
> > But I figured any damage would be limited to something already
> > broken
> > 
> > It looks like a permissions problem, but I can't see any
> > difference in that area between the machines.  (Admittedly, I'm
> > comparing Lenny to Wheezy, but it this instance should that make
> > any difference?)
> > 
> > Now I have help with "sudo vi", but not as a normal user.
> > 
> > I'm enquiring here because I'm wondering, is this symptomatic of
> > some other problem that's going to leap on me from a Very High
> > Place?
> > 
> > Ok, I want my vim docs too! I think vim would sing, if you found
> > the right configuration, and I keep learning stuff, control-]'ing
> > about the help files.  Having to keep a root session around and
> > switching to it just wouldn't be the same.  And I wouldn't know
> > why it's not working the way it's supposed to.
> 
> Which version of vim did you install?  It wasn't the "tiny" version,
> right?  Did you install vim-docs?  (not sure if that's necessary)

Actually, yeah, vim-tiny and vim-runtime, which latter, according to
apt(titude) should give me the docs.  And now that I look, I also
have vim and vim-common.

And, looking at the lenny machine, it has the same thing.  So I
don't think that's the problem.

-- 
 Dave Williams d...@eskimo.com



Re: [OT] Debian LVM

2016-10-24 Thread Fausto Disla
Ok, y que pasa si de esos 3 discos (500gb PV +300gb PV + 500gb PV) por lo
cual tendria 1300tb VG, le asigno 900gb a un LV y 400gb a otro LV y se dana
un disco de 500 se perderia toda la data o tendria alguna forma de luego
recuperar la informacion de los disco aun buenos? Como podria ser?

2016-10-21 15:53 GMT-04:30 alberto :

> Hola,
>
> Creo que tienes un fallo de concepto...
>
> El LVM no es una herramienta de alta disponibilidad.
>
> Sirve para flexibilizar la gestión del disco, en el caso de varios discos,
> particiones y demás.
>
> Te pongo un ejemplo, tienes 3 discos, de diferentes tamaños y entre todos
> tienes bastante espacio que quieres ir asignando según vaya surgiendo la
> necesidad.
>
> Bien, unificas todos los discos convirtiendolos en Physical Volumes (PV),
> agrupandolos en un Volume Group (VG), con todo ese espacio disponible.
> A partir de ahi, vas creando Logical Volumes (LV) con el tamaño que vayas
> necesitando, para tus necesidades.
>
> Puedes ampliar los LV según necesites, con el espacio que tienes
> disponible en el VG, sin preocuparte de en que disco se encuentra, tu sabes
> que tienes X Mb. para disponer.
>
> No se si te lo ha aclarado un poco
>
> saludos,
>
> On 06/10/16 05:53, Fausto Disla wrote:
>
> Saludos
>
> Lista,
>
> Les escribo para pedir su orientacion, me van a envisr un server, nada del
> otro mundo un dell 2950 (para mi moderno) y en el voy a montar varias
> maquinas virtuales, las preguntas son con relacion al almacenamiento. Me
> gustaria usar LVM pero tengo interrogantes.
>
> Que pasa si los 6 disco los agrego a un volum group y luego uno de esos
> discos se daña?
>
> Puedo asignarle un disco fisico o una particion a la maquina virtual como
> secundario?
>
> Muchas gracias de antemano espero aprender de esta conversacion.
>
>
> Gracias...
>
>
> Fausto A. Disla
> Rep. Dominicana
>
> P. 809.785.5260
>
> P. 809.722.4284
>
> faus...@gmail.com
>
> Enviado desde mi Android, #cojeleelpeso
>
>
>
>


-- 

Gracias...



Fausto A. Disla
P. 809.785.5260
P. 809.722.4284
faus...@gmail.com
Enviado desde mi Android, #cojeleelpeso


Multiple versions of postgesql installed

2016-10-24 Thread Gary Roach

Hi all,

I have been having trouble with my django development project finding 
the postgresql database. In the process of looking for the source of the 
problem I found that there are versions of postgresql installed for 9.1 
through 9.6 . Are all of these copies necessary and can I safely remove 
all of the ones that I am not using for my project or are there other 
packages on the system that are using those.


Debian Stretch with KDE desktop

Gary R.



Re: comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread deloptes
Daniel Pocock wrote:

> 
> 
> On 24/10/16 13:05, Daniel Pocock wrote:
>> 
>> 
>> There have been various discussions in here and in some derivative
>> projects like Ubuntu about choosing and using password managers,
>> especially the way to sync their password lists across multiple devices.
>> 
>> Given the way we do things in Debian it is important not to depend on a
>> service like Dropbox to sync the password files.
>> 
>> Therefore, how are people choosing a password manager and solving this
>> in practice?
>> 
>> - which password managers have a built-in mechanism for synchronizing or
>> merging password lists on multiple devices?
>> 
>> - who is using some other mechanism such as Git or ownCloud to sync?
>> 
>> I've made a list of some of the password managers in Debian:
>> 
>> https://packages.qa.debian.org/a/assword.html
>> https://packages.qa.debian.org/p/password-gorilla.html
>> https://packages.qa.debian.org/p/password-store.html
>> https://packages.qa.debian.org/r/revelation.html
>> https://packages.qa.debian.org/k/keepass2.html
>> https://packages.qa.debian.org/k/keepassx.html
>> https://packages.qa.debian.org/k/kedpm.html
>> https://packages.qa.debian.org/f/fpm2.html
>> https://packages.qa.debian.org/c/cpm.html
>> https://packages.qa.debian.org/p/passwordsafe.html
>> 
>> There are quite a few and so it is hard for somebody to know the best
>> place to start, maybe a comparison table in the wiki will be needed.
> 
> Wiki now created:
> 
> https://wiki.debian.org/PasswordManagement
> 
> 
>> 
>> Some other factors that come to mind for a comparison table:
>> 
>> - support for PGP
>> - support for other strong crypto (e.g. smartcard)
>> - merging algorithm for multiple devices
>> - multi-user / team capabilities
>> - browser integration
>> 
>> I notice that Tails chose to include KeePassX, although there is some
>> uncertainty how it was selected:
>> 
>> https://labs.riseup.net/code/issues/9231
>> 
>> Can anybody comment on its history there?
>>

What about the wallet? In KDE4 and former KDE3 now Trinity Desktop we use
the kwallet now tdewallet to store the passwords. I know gnome has also
one, but I don't know it's name. I think each desktop has or should have a
kind of integrated password manager. It is worth mentioning this.

https://userbase.kde.org/KDE_Wallet_Manager
https://utils.kde.org/projects/kwalletmanager/
https://en.wikipedia.org/wiki/KWallet

regards





Re: Vim help, tags, sudo

2016-10-24 Thread Frank Miles
On Mon, 24 Oct 2016 18:30:02 +0200, jeremy bentham wrote:

> This could be a vim question, but since sudo's involved I'll
> start here.
> 
> I am thrashing about, trying to get wheezy going on a new machine
> (well, new to me.  I think the huckster term-of-art is
> "pre-owned":  I had the pleasure of wiping dollarbill inc's crap
> off it).
> 
> Anyway, I got vim installed, opened it up and wanted to look at
> the docs for something.
> 
> :h 
> 
> resulted in, "E433:  no tags file"
> 
> I've been using vim for a long time, upgrading as time went
> along, and I'd never thought about the mechanics of help.  So I
> had to go looking.
> 
> Ctags wasn't installed, so I got that and ran it on the vim doc
> directory.  It didn't make a tags file, but something that looks
> like a config file for who-knows-what.
> 
> So I looked at another machine, decided that the doc directories
> were sufficiently similar (vim 7.1 versus 7.3) and copied the
> tags file over.  Kludgy, I know, and generally a Bad Idea (tm).
> But I figured any damage would be limited to something already
> broken
> 
> It looks like a permissions problem, but I can't see any
> difference in that area between the machines.  (Admittedly, I'm
> comparing Lenny to Wheezy, but it this instance should that make
> any difference?)
> 
> Now I have help with "sudo vi", but not as a normal user.
> 
> I'm enquiring here because I'm wondering, is this symptomatic of
> some other problem that's going to leap on me from a Very High
> Place?
> 
> Ok, I want my vim docs too! I think vim would sing, if you found
> the right configuration, and I keep learning stuff, control-]'ing
> about the help files.  Having to keep a root session around and
> switching to it just wouldn't be the same.  And I wouldn't know
> why it's not working the way it's supposed to.

Which version of vim did you install?  It wasn't the "tiny" version,
right?  Did you install vim-docs?  (not sure if that's necessary)



Re: Problema con Proftpd

2016-10-24 Thread Jhosue rui
El día 24 de octubre de 2016, 12:17, francisco dominguez
 escribió:
> Buenas, llevo el dia investigando porque me funciona mal proftpd cuando
> intento acceder a el desde fuera de mi lan (con un router por medio, claro),
> y he visto ya el problema, proftpd 1.3.5, la versión actual en debian
> stable, tiene un bug que produce exactamente eso, la comunidad de proftpd ya
> lo ha parcheado con una versión de mantenimiento, "1.3.5b" pero con mi
> debian al dia no he recibido aún la actualización.
>
> Dejo un enlace al reporte de bug en proftpd.org:
> http://bugs.proftpd.org/show_bug.cgi?id=4202
>
> ¿Sabeis cuanto va a tardar? Es que de momento no puedo acceder a mi ftp
> desde fuera de mi casa. ¿Hay algún "apaño" mientras tanto?
>
> Gracias.

Solo por preguntar.

Ya verificaste http://www.proftpd.org/docs/howto/NAT.html ?

Muchas veces me he conseguido que la solución a algunos problemas con
proftpd se solucionan cargando el módulo del kernel ip_conntrack_ftp

Por comentar.

-- 

Por favor, NO utilice formatos de archivo propietarios para el
intercambio de documentos, como DOC y XLS, sino HTML, PDF, TXT, CSV o
cualquier otro que no obligue a utilizar un programa de un fabricante
en concreto.
Internet Explorer y Outlook son muy peligrosos por sus continuos
problemas de seguridad. Utilice alternativas libres:
http://www.mozillaes.org/

Usuario linux registrado #387231
http://counter.li.org

Por favor evite enviar adjuntos de powerpoint y word vea
http://www.gnu.org/philosophy/no-word-attachments.es.html



Re: Samba + Openldap fallo en login

2016-10-24 Thread Felix Perez
El día 23 de octubre de 2016, 19:27, Maykel Franco
 escribió:
> Hola buenas, estoy tratando de montar este tutorial en Debian Jessi:
>
> https://www.unixmen.com/setup-samba-domain-controller-with-openldap-backend-in-ubuntu-13-04/
>
> Todo ha ido bien excepto en el paso en el que se ejecuta el comando
> smbldap-populate, que además de añadirte las entradas en ldap, debería
> de añadir los siguientes grupos al sistema:
>
> sk@server:~$ sudo getent group
> [...]
> Domain Admins:*:512:root
> Domain Users:*:513:
> Domain Guests:*:514:
> Domain Computers:*:515:
> Administrators:*:544:
> Account Operators:*:548:
> Print Operators:*:550:
> Backup Operators:*:551:
> Replicators:*:552:
>
> En mi caso, esos grupos no me los muestra... Samba los necesita para
> poder interactuar entre ldap y el sistema.
>
> Debugueando un poco he encontrado esto:
>
>   check_ntlm_password:  Authentication for user [maykel] -> [maykel]
> FAILED with error NT_STATUS_NO_SUCH_USER
>   Checking NTLMSSP password for WORKGROUP\maykel failed: 
> NT_STATUS_NO_SUCH_USER
>   ../auth/ntlmssp/ntlmssp_server.c:737: Checking NTLMSSP password for
> WORKGROUP\maykel failed: NT_STATUS_NO_SUCH_USER
>   remote_name  : 'debian-maykel'
>   remote_name  : 'debian-maykel'
>
> El caso es que el usuario si existe más que comprobado:
>
> # ldapsearch -LLL  -x -D "cn=admin,dc=sytes,dc=net" -W -H
> "ldap://localhost; -b "ou=Users,dc=sytes,dc=net" "(uid=maykel)"
> Enter LDAP Password:
> dn: uid=maykel,ou=Users,dc=sytes,dc=net
> objectClass: top
> objectClass: person
> objectClass: organizationalPerson
> objectClass: posixAccount
> objectClass: shadowAccount
> objectClass: inetOrgPerson
> cn: maykel
> sn: maykel
> uid: maykel
> uidNumber: 1001
> gidNumber: 513
> homeDirectory: /home/maykel
> loginShell: /bin/bash
> gecos: System User
> givenName: maykel
> userPassword:: e1NTSEF9emdlcktQcHFHV3F6Z3RHRTdnNkVLRWVKZnFSU1dVSXg=
> shadowLastChange: 17097
> shadowMax: 45
>
> # smbldap-userlist
> uid  |username
>
>0 |root |
> 65534 |nobody   |
> 1000 |olatz|
> 1001 |maykel   |
>
>
> He probado añadir esto en smb.conf que dicen que solucionaba el
> problema pero no he tenido éxito:
>
> map untrusted to domain = Yes
>
>
> http://zewaren.net/site/node/87
>
> Alguien sabe que puede estar pasando?
>

Pregunto yo. ¿Porqué insistir en usar modelos con ubuntu?

https://www.google.cl/?gws_rd=ssl#q=setup+samba+domain+controller+with+openldap+backend+in+debian+jessie

https://wiki.debian.org/SambaDcWithLdapBackend

https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller

Saludos.

-- 
usuario linux  #274354
normas de la lista:  http://wiki.debian.org/es/NormasLista
como hacer preguntas inteligentes:
http://www.sindominio.net/ayuda/preguntas-inteligentes.html



Re: Ajuda com virtualbox 5.0.26 + kernel 4.7.0.1-686

2016-10-24 Thread S

Oi Dẽnison,

eventualmente posso migrar para AMD64.
meu PC em casa roda o mesmo kernel mas arquitetura AMD64 e o virtualbox 
roda tranquilo.
Quanto ao virtualbox 5.1.6, instalei para testar (i686) e foi um 
desastre. Ao tentar rodar qualquer máquina virtual com windows o PC trava!


Vinicius

Em 24-10-2016 11:10, Dênison M. Knob escreveu:

Bom dia!

Aqui utilizo o kernel '4.7.0-1-amd64 #1 SMP Debian 4.7.6-1 
(2016-10-07) x86_64', atualizei recentemente do 4.5.

E junto atualizei o Virtualbox pra versão 5.1.6_Debianr110634.
Instalei junto os headers (linux-headers-4.7.0-1) e a instalação 
correu tranquilamente.

Recomendo que atualize o Virtualbox.

Esta máquina precisa continuar na arch i686? Isto faz parte do teu teste?

Abraço!


Dênison Knob
about.me/dmknob
Dênison Knob on about.me



2016-10-22 12:35 GMT-02:00 Vinicius >:


Em 21-10-2016 16:44, Thiago Canuto Ferreira escreveu:

Em Sex, 2016-10-21 às 15:05 -0200, S escreveu:

Boa tarde a todos!
Não sei se o problema é específico do Debian, mas está
ocorrendo desde a
atualização do kernel de 4.6.0 para 4.7.0, distro testing
(stretch).

Sempre que se tenta compilar os módulos do virtualbox
5.0.26 ocorre o
seguinte erro:

-X-
/etc/kernel/header_postinst.d/dkms:
Error! Bad return status for module build on kernel:
4.7.0-1-686-pae (i686)
Consult /var/lib/dkms/vboxhost/5.0.26/build/make.log for
more information.
X--

Procurei pelo google, mas só acho respostas para problemas
semelhantes
antigos.
Anexo a este o make.log acima.

Interessante que em outra máquina com a mesma distro, mas
arquitetura
AMD64, os módulos são compilados sem problema algum e o
virtualbox
5.0.26 funciona corretamente.

Agradeço a quem puder ajudar.


Vinicius




Boa tarde Vinícius.

Não seria melhor vc instalar a versão estável Jessie em vez de
usar a
testing?

Acredito que com a estável vc não terá este tipo de problemas.


Bom dia, Thiago!

Isso é verdade, mas estou utilizando a testing principalmente por
estar aguardando que se torne estável, e isto pode ocorrer antes
que aqui na empresa terminemos um novo sistema baseado em linux,
que normalmente não deverá sofrer atualizações após lançado, a não
ser devido a algum bug importante. Para o desenvolvimento a distro
é o Jessie, mas em paralelo uso a testing no meu desktop. Caso a
testing se torne estável a tempo, já estará testada e
eventualmente poderá ser utilizada. Isto para garantir uma longa
vida ao produto.


abs


Vinicius






Re: comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread Teemu Likonen
Daniel Pocock [2016-10-24 13:05:28+02] wrote:

> Given the way we do things in Debian it is important not to depend on a
> service like Dropbox to sync the password files.
>
> Therefore, how are people choosing a password manager and solving this
> in practice?

I have used "pass" and liked it. It's a command-line tool, written in
Bash language, and it stores passwords as separate gpg-encrypted files
in ~/.password-store. .
Pass has a Git support but I have never used that. The basic usage is to
search for named password which can be copied to clipboard. The
clipboard is automatically cleared after 20 (or so, I don't remember).

There are a couple things in pass's user interface that I don't like so
I wrote my own Bash script which is compatible with pass's storage. I
have two Linux computers and I use Unison to sync password directory
(and many other files) between them.

-- 
/// Teemu Likonen   - .-..    //
// PGP: 4E10 55DC 84E9 DFF6 13D7 8557 719D 69D3 2453 9450 ///


signature.asc
Description: PGP signature


Vim help, tags, sudo

2016-10-24 Thread jeremy bentham
This could be a vim question, but since sudo's involved I'll
start here.

I am thrashing about, trying to get wheezy going on a new machine
(well, new to me.  I think the huckster term-of-art is
"pre-owned":  I had the pleasure of wiping dollarbill inc's crap
off it).

Anyway, I got vim installed, opened it up and wanted to look at
the docs for something.

:h 

resulted in, "E433:  no tags file"

I've been using vim for a long time, upgrading as time went
along, and I'd never thought about the mechanics of help.  So I
had to go looking.

Ctags wasn't installed, so I got that and ran it on the vim doc
directory.  It didn't make a tags file, but something that looks
like a config file for who-knows-what.

So I looked at another machine, decided that the doc directories
were sufficiently similar (vim 7.1 versus 7.3) and copied the
tags file over.  Kludgy, I know, and generally a Bad Idea (tm).
But I figured any damage would be limited to something already
broken

It looks like a permissions problem, but I can't see any
difference in that area between the machines.  (Admittedly, I'm
comparing Lenny to Wheezy, but it this instance should that make
any difference?)

Now I have help with "sudo vi", but not as a normal user.

I'm enquiring here because I'm wondering, is this symptomatic of
some other problem that's going to leap on me from a Very High
Place?

Ok, I want my vim docs too! I think vim would sing, if you found
the right configuration, and I keep learning stuff, control-]'ing
about the help files.  Having to keep a root session around and
switching to it just wouldn't be the same.  And I wouldn't know
why it's not working the way it's supposed to.

-- 
 Dave Williams|  "Awk!" he sed, bashfully.  "Do I _have_ to
 d...@eskimo.com   |  learn perl?"



Re: Problema con Proftpd

2016-10-24 Thread OddieX
El día 24 de octubre de 2016, 13:17, francisco dominguez
 escribió:
> Buenas, llevo el dia investigando porque me funciona mal proftpd cuando
> intento acceder a el desde fuera de mi lan (con un router por medio, claro),
> y he visto ya el problema, proftpd 1.3.5, la versión actual en debian
> stable, tiene un bug que produce exactamente eso, la comunidad de proftpd ya
> lo ha parcheado con una versión de mantenimiento, "1.3.5b" pero con mi
> debian al dia no he recibido aún la actualización.
>
> Dejo un enlace al reporte de bug en proftpd.org:
> http://bugs.proftpd.org/show_bug.cgi?id=4202
>
> ¿Sabeis cuanto va a tardar? Es que de momento no puedo acceder a mi ftp
> desde fuera de mi casa. ¿Hay algún "apaño" mientras tanto?
>
> Gracias.

Te fijaste de instalar el proftpd desde backports?



Problema con Proftpd

2016-10-24 Thread francisco dominguez
Buenas, llevo el dia investigando porque me funciona mal proftpd cuando
intento acceder a el desde fuera de mi lan (con un router por medio,
claro), y he visto ya el problema, proftpd 1.3.5, la versión actual en
debian stable, tiene un bug que produce exactamente eso, la comunidad de
proftpd ya lo ha parcheado con una versión de mantenimiento, "1.3.5b" pero
con mi debian al dia no he recibido aún la actualización.

Dejo un enlace al reporte de bug en proftpd.org:
http://bugs.proftpd.org/show_bug.cgi?id=4202

¿Sabeis cuanto va a tardar? Es que de momento no puedo acceder a mi ftp
desde fuera de mi casa. ¿Hay algún "apaño" mientras tanto?

Gracias.


Re: OT DNS

2016-10-24 Thread Ariel Alvarez

gracias cierto me faltaba ese detalle, me funciono sin problemas.


El 24-10-16 11:06, Javier Marcon escribió:

El 24/10/16 a las 12:00, Ariel Alvarez escribió:
hola lista, tengo un dns interno es decir de cara a mi lan 
funcionando en debian8, pero tengo una duda, como pudiera hacer para 
cuando pida mi nombre de dominio me responda por este:

me explico mejor:

si pregunto mediante nslookup por host.dominio.com me responde como 
es logico quien es devolviendome la ip, pero si pregunto por 
dominio.com no, la idea es que cuando solicite mediante mi navegador 
midominio.com me aparezca una aplicacion web que tengo alojada en ese 
mismo servidor.


aqui les envio lo escencial referente a mi dns:


zone "*dominio.com*" IN {
type *master*;
file "/etc/bind/*db-dominio.com-dir*";
allow-query { any; };
notify yes;
};

zone "*0.168.192*.in-addr.arpa" IN {
type *master*;
file "/etc/bind/*db-dominio.com-inv*";
allow-query { any; };
notify yes;
};


/etc/bind/db-dominio.com-dir*

*$TTL 1H
@ IN SOA *server.dominio.com.* *user.dominio.com.* (
2007110556
3H
1H
1W
1H )
IN  NS* server*
IN 1H   MX 5 *  server*
*server* IN 1H   A*  192.168.0.90
web *IN  1H  CNAME*server.dominio.com.




*/etc/bind/db-dominio.com-inv

$TTL 1H
@ SOA *server.dominio.com.* *user.dominio.com.* (
11
3H
1H
1W
1H )
;
@   IN  NS *server.dominio.com.*
*90*  IN  PTR *server.dominio.com.


*/etc/hosts*

**order hosts,bind*
multi on


gracias de antemano por su acostumbrada ayuda.

- 
Consejo Nacional de Casas de Cultura http://www.casasdecultura.cult.cu
Tenes que agregar un registro (ya sea A, cname, etc.) por cada dominio 
o subdominio que queres que te resuelva. Para hacer lo que decis, 
tendrías que agregar al final del archivo db-dominio.com-dir una 
entrada para el dominio:


*dominio.com.* IN 1H   A*192.168.0.90*

Después de agregarlo acordate de reiniciar bind para que le la 
configuración. A las entradas que agregas, si les pones . al final 
toman el dominio completo, si no les pones . toma como que es un 
subdominio del dominio que resuelve.


Saludos,

Javier.
--
El matrimo es tan bueno que la gente se muere por casarse
con mujeres como Nazarena Velez, Margerie Orbin,
Jordania Linn Graham, Katherine Knight, Stacey Castor, etc.

- 
Consejo Nacional de Casas de Cultura http://www.casasdecultura.cult.cu




-
Consejo Nacional de Casas de Cultura
http://www.casasdecultura.cult.cu

Re: OT DNS

2016-10-24 Thread Javier Marcon
El 24/10/16 a las 12:00, Ariel Alvarez escribió:
> hola lista, tengo un dns interno es decir de cara a mi lan funcionando
> en debian8, pero tengo una duda, como pudiera hacer para cuando pida
> mi nombre de dominio me responda por este:
> me explico mejor:
>
> si pregunto mediante nslookup por host.dominio.com me responde como es
> logico quien es devolviendome la ip, pero si pregunto por dominio.com
> no, la idea es que cuando solicite mediante mi navegador midominio.com
> me aparezca una aplicacion web que tengo alojada en ese mismo servidor.
>
> aqui les envio lo escencial referente a mi dns:
>
>
> zone "*dominio.com*" IN {
> type *master*;
> file "/etc/bind/*db-dominio.com-dir*";
> allow-query { any; };
> notify yes;
> };
>
> zone "*0.168.192*.in-addr.arpa" IN {
> type *master*;
> file "/etc/bind/*db-dominio.com-inv*";
> allow-query { any; };
> notify yes;
> };
>
>
> /etc/bind/db-dominio.com-dir*
>
> *$TTL 1H
> @ IN SOA *server.dominio.com.* *user.dominio.com.* (
> 2007110556
> 3H
> 1H
> 1W
> 1H )
> IN  NS* server*
> IN 1H   MX 5 *  server*
> *server* IN 1H   A*  192.168.0.90
> web*IN  1H  CNAME*server.dominio.com.
>
>
>
>
> */etc/bind/db-dominio.com-inv
>
> $TTL 1H
> @ SOA *server.dominio.com.* *user.dominio.com.* (
> 11
> 3H
> 1H
> 1W
> 1H )
> ;
> @   IN  NS  *server.dominio.com.*
> *90*  IN  PTR  *server.dominio.com.
>
>
> */etc/hosts*
>
> **order hosts,bind*
> multi on
>
>
> gracias de antemano por su acostumbrada ayuda.
>
> -
> Consejo Nacional de Casas de Cultura http://www.casasdecultura.cult.cu
Tenes que agregar un registro (ya sea A, cname, etc.) por cada dominio o
subdominio que queres que te resuelva. Para hacer lo que decis, tendrías
que agregar al final del archivo db-dominio.com-dir una entrada para el
dominio:

*dominio.com.* IN 1H   A*  192.168.0.90*

Después de agregarlo acordate de reiniciar bind para que le la
configuración. A las entradas que agregas, si les pones . al final toman
el dominio completo, si no les pones . toma como que es un subdominio
del dominio que resuelve.

Saludos,

Javier.

-- 
El matrimo es tan bueno que la gente se muere por casarse
con mujeres como Nazarena Velez, Margerie Orbin, 
Jordania Linn Graham, Katherine Knight, Stacey Castor, etc.



OT DNS

2016-10-24 Thread Ariel Alvarez
hola lista, tengo un dns interno es decir de cara a mi lan funcionando 
en debian8, pero tengo una duda, como pudiera hacer para cuando pida mi 
nombre de dominio me responda por este:

me explico mejor:

si pregunto mediante nslookup por host.dominio.com me responde como es 
logico quien es devolviendome la ip, pero si pregunto por dominio.com 
no, la idea es que cuando solicite mediante mi navegador midominio.com 
me aparezca una aplicacion web que tengo alojada en ese mismo servidor.


aqui les envio lo escencial referente a mi dns:


zone "*dominio.com*" IN {
type *master*;
file "/etc/bind/*db-dominio.com-dir*";
allow-query { any; };
notify yes;
};

zone "*0.168.192*.in-addr.arpa" IN {
type *master*;
file "/etc/bind/*db-dominio.com-inv*";
allow-query { any; };
notify yes;
};


/etc/bind/db-dominio.com-dir*

*$TTL 1H
@ IN SOA *server.dominio.com.* *user.dominio.com.* (
2007110556
3H
1H
1W
1H )
IN  NS* server*
IN 1H   MX 5 *  server*
*server* IN 1H   A*  192.168.0.90
web *IN  1H  CNAME*server.dominio.com.




*/etc/bind/db-dominio.com-inv

$TTL 1H
@ SOA *server.dominio.com.* *user.dominio.com.* (
11
3H
1H
1W
1H )
;
@   IN  NS *server.dominio.com.*
*90*  IN  PTR *server.dominio.com.


*/etc/hosts*

**order hosts,bind*
multi on


gracias de antemano por su acostumbrada ayuda.


-
Consejo Nacional de Casas de Cultura
http://www.casasdecultura.cult.cu

Re: script vraag

2016-10-24 Thread Vincent Zweije
On Mon, Oct 24, 2016 at 02:04:43PM +0200, mj wrote:

||  Alleen de regels volgend op
||  > if test 'find $errorfile -mmin +30'; then
||  worden TELKENS uitgevoerd, en niet alleen slechts wanneer de $errorfile
||  ouder is dan 30 minuten.

De enkele quotes (') maken dat de string 'find $errorfile -mmin +30'
zonder verdere interpretatie als command line argument aan het test
programma wordt gegeven. Het test programma stelt vast dat dit geen lege
string is, en levert succes op. De then-code wordt dus altijd uitgevoerd.

Zonder veel verder te kijken: misschien bedoel je:

if find $errorfile -mmin +30 >/dev/null; then

Vincent.
-- 
Vincent Zweije    | "If you're flamed in a group you
  | don't read, does anybody get burnt?"
[Xhost should be taken out and shot] |-- Paul Tomblin on a.s.r.


signature.asc
Description: PGP signature


Re: bluetooth error

2016-10-24 Thread Manoel Pedro de Araújo
Thanks for your answers.

2016-10-22 20:52 GMT-02:00 deloptes :

> Manoel Pedro de Araújo wrote:
>
> > Hi,
> >
> > I have installed debian jessie on a  Samsung X40 notebook, when the
> > bluetooth is working, but it shows an error as shown bellow
> >
> > Out 22 16:56:18 debian bluetoothd[824]: Sap driver initialization failed.
> > Out 22 16:56:18 debian bluetoothd[824]: sap-server: Operation not
> > permitted (1)
> > Out 22 16:56:18 debian bluetoothd[824]: hci0 Load Connection Parameters
> > failed: Unk...1)
> >
> > Maybe is this a problem? Please, help me
>
> look in /var/log/syslog for the initialization of the driver, if this is
> fine and bluetooth is working, ignore the messages. I get the same here
> (see attached).
>
> You can check also this bug
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803265
>
> regards
>
>
>
>
>


-- 
Manoel


RE: problemas con nfs-server y cliente

2016-10-24 Thread Romero, Fernando


De: Romero, Fernando [mailto:fernando.rom...@lineamitre.gob.ar]
Enviado el: lunes, 24 de octubre de 2016 11:20 a. m.
Para: debian-user-spanish@lists.debian.org
Asunto: problemas con nfs-server y cliente

Hola como están, sigo con los problemas con un cliente nfs, me van cambiando 
los errores pero no logro hacerlo funcionar.
El escenario es el siguiente

Servidor nfs

Debian GNU/Linux 8

Cliente nfs

Debian GNU/Linux 8

El cliente ve el servidor por internet, en el server tengo la regla por iptable 
que a la ip del cliente le permita acceso a todo

Chain INPUT (policy ACCEPT)
target prot opt source   destination
ACCEPT all  --  190.x.x.x   0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target prot opt source   destination

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination

En el servidor tengo la conf del /etc/exports

/backup  190.x.x.x(rw,fsid=root,no_root_squash,no_subtree_check)

Corro exportfs y me devuelve lo siguiente

/backup 190.x.x.x

Corro showmount -e

Export list for backupsrvr:
/backup 190.x.x.x

Hasta aca por lo que veo esta todo bien, pero no me deja en el cliente 
montarlo, me da el siguiente error: (Donde x.x.x.x es la ip del servidor nfs)

root@SRV:~# mount x.x.x.x:/backup /bkp/srv
mount.nfs: access denied by server while mounting x.x.x.x:/bkp

En el cliente corro el showmount con la ip del servidor nfs y me devuelve lo 
siguiente

Export list for x.x.x.x:
/backup 190.x.x.x


Ya busque e intente varias cosas pero sigo sin éxito, alguien puede ver algo 
que se me este pasando en todo esto?


Saludos y gracias

Tuve un error de tipo el erro que devuelve es

mount.nfs: access denied by server while mounting x.x.x.x:/backup






le son en réseau (nas)

2016-10-24 Thread bernard schoenacker
bonjour,


au début des mes connaissances en Linux j'ai appris qu'il était
possible d'écouter un morceau de musique en réseau via le protocole
nas (network Audio System).

maintenant, je compte l'employer en mode client /serveur.

du côté serveur j'ai comme paquets :

libaudio2 - Système audio par réseau (NAS), bibliothèques partagées
nas - Système audio par réseau - serveur local

côté client j'ai comme paquet :

nas-bin - Network Audio System - client binaries


quels sont les autres paquets nécessaires pour avoir le son
en réseau via xrdp (?) 

 je compte faire la première manip sous linux et en deuxième
sous windows xp (utilisé en client léger)


Documentation sur nas:

https://en.wikipedia.org/wiki/Network_Audio_System
https://linux.die.net/man/1/nasd
https://linux.die.net/man/1/nas

Questions:

qui se sent capable de me donner un coup de pouce pour cette
opération ?

slt
bernard

-- 
bernard schoenacker 



problemas con nfs-server y cliente

2016-10-24 Thread Romero, Fernando
Hola como están, sigo con los problemas con un cliente nfs, me van cambiando 
los errores pero no logro hacerlo funcionar.
El escenario es el siguiente

Servidor nfs

Debian GNU/Linux 8

Cliente nfs

Debian GNU/Linux 8

El cliente ve el servidor por internet, en el server tengo la regla por iptable 
que a la ip del cliente le permita acceso a todo

Chain INPUT (policy ACCEPT)
target prot opt source   destination
ACCEPT all  --  190.x.x.x   0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target prot opt source   destination

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination

En el servidor tengo la conf del /etc/exports

/backup  190.x.x.x(rw,fsid=root,no_root_squash,no_subtree_check)

Corro exportfs y me devuelve lo siguiente

/backup 190.x.x.x

Corro showmount -e

Export list for backupsrvr:
/backup 190.x.x.x

Hasta aca por lo que veo esta todo bien, pero no me deja en el cliente 
montarlo, me da el siguiente error: (Donde x.x.x.x es la ip del servidor nfs)

root@SRV:~# mount x.x.x.x:/backup /bkp/srv
mount.nfs: access denied by server while mounting x.x.x.x:/bkp

En el cliente corro el showmount con la ip del servidor nfs y me devuelve lo 
siguiente

Export list for x.x.x.x:
/backup 190.x.x.x


Ya busque e intente varias cosas pero sigo sin éxito, alguien puede ver algo 
que se me este pasando en todo esto?


Saludos y gracias







Re: comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread Daniel Pocock


On 24/10/16 13:05, Daniel Pocock wrote:
> 
> 
> There have been various discussions in here and in some derivative
> projects like Ubuntu about choosing and using password managers,
> especially the way to sync their password lists across multiple devices.
> 
> Given the way we do things in Debian it is important not to depend on a
> service like Dropbox to sync the password files.
> 
> Therefore, how are people choosing a password manager and solving this
> in practice?
> 
> - which password managers have a built-in mechanism for synchronizing or
> merging password lists on multiple devices?
> 
> - who is using some other mechanism such as Git or ownCloud to sync?
> 
> I've made a list of some of the password managers in Debian:
> 
> https://packages.qa.debian.org/a/assword.html
> https://packages.qa.debian.org/p/password-gorilla.html
> https://packages.qa.debian.org/p/password-store.html
> https://packages.qa.debian.org/r/revelation.html
> https://packages.qa.debian.org/k/keepass2.html
> https://packages.qa.debian.org/k/keepassx.html
> https://packages.qa.debian.org/k/kedpm.html
> https://packages.qa.debian.org/f/fpm2.html
> https://packages.qa.debian.org/c/cpm.html
> https://packages.qa.debian.org/p/passwordsafe.html
> 
> There are quite a few and so it is hard for somebody to know the best
> place to start, maybe a comparison table in the wiki will be needed.

Wiki now created:

https://wiki.debian.org/PasswordManagement


> 
> Some other factors that come to mind for a comparison table:
> 
> - support for PGP
> - support for other strong crypto (e.g. smartcard)
> - merging algorithm for multiple devices
> - multi-user / team capabilities
> - browser integration
> 
> I notice that Tails chose to include KeePassX, although there is some
> uncertainty how it was selected:
> 
> https://labs.riseup.net/code/issues/9231
> 
> Can anybody comment on its history there?
> 



Re: package uwsgi

2016-10-24 Thread gustav Spellauge

installed 2.0.12-7 from unstable and did not face any issues yet.



Re: package uwsgi

2016-10-24 Thread Greg Wooledge
On Mon, Oct 24, 2016 at 02:17:09PM +0100, Darac Marjal wrote:
> On Mon, Oct 24, 2016 at 09:09:53AM -0400, Greg Wooledge wrote:
> >On Mon, Oct 24, 2016 at 12:05:23PM +0100, Darac Marjal wrote:
> >>Oh, maybe you were wondering why?
> >>https://qa.debian.org/excuses.php?package=uwsgi
> >
> >"Last generated on Fri Jul 15 14:27:05 2016 UTC"
> >
> >The other page I knew about, which is referenced by the dpkg bot in
> >#debian on Freenode, is
> >
> >https://release.debian.org/migration/testing.pl?package=uwsgi
> >
> >And this one says "Latest update: Mon, 04 Jul 2016 08:23:13 GMT"
> >
> >I don't know of any version of this tool that's currently working.
> 
> I don't know if it's that the tool isn't working, or simply that there's 
> been no change to the status since then.

Hmm.  OK.  I'll change the bot to point to the qa page then, and hope
that it's actually updating.



Re: package uwsgi

2016-10-24 Thread Darac Marjal

On Mon, Oct 24, 2016 at 09:09:53AM -0400, Greg Wooledge wrote:

On Mon, Oct 24, 2016 at 12:05:23PM +0100, Darac Marjal wrote:

Oh, maybe you were wondering why?
https://qa.debian.org/excuses.php?package=uwsgi


"Last generated on Fri Jul 15 14:27:05 2016 UTC"

The other page I knew about, which is referenced by the dpkg bot in
#debian on Freenode, is

https://release.debian.org/migration/testing.pl?package=uwsgi

And this one says "Latest update: Mon, 04 Jul 2016 08:23:13 GMT"

I don't know of any version of this tool that's currently working.


I don't know if it's that the tool isn't working, or simply that there's 
been no change to the status since then.


However, https://tracker.debian.org/pkg/uwsgi confirms the problems with 
the package, and I'm fairly certain someone would have noticed if THAT 
tool was broken.






--
For more information, please reread.



Re: Ajuda com virtualbox 5.0.26 + kernel 4.7.0.1-686

2016-10-24 Thread Dênison M . Knob
Bom dia!

Aqui utilizo o kernel '4.7.0-1-amd64 #1 SMP Debian 4.7.6-1 (2016-10-07)
x86_64', atualizei recentemente do 4.5.
E junto atualizei o Virtualbox pra versão 5.1.6_Debianr110634.
Instalei junto os headers (linux-headers-4.7.0-1) e a instalação correu
tranquilamente.
Recomendo que atualize o Virtualbox.

Esta máquina precisa continuar na arch i686? Isto faz parte do teu teste?

Abraço!




Dênison Knob
about.me/dmknob
[image: Dênison Knob on about.me]
  

2016-10-22 12:35 GMT-02:00 Vinicius :

> Em 21-10-2016 16:44, Thiago Canuto Ferreira escreveu:
>
>> Em Sex, 2016-10-21 às 15:05 -0200, S escreveu:
>>
>>> Boa tarde a todos!
>>> Não sei se o problema é específico do Debian, mas está ocorrendo desde a
>>> atualização do kernel de 4.6.0 para 4.7.0, distro testing (stretch).
>>>
>>> Sempre que se tenta compilar os módulos do virtualbox 5.0.26 ocorre o
>>> seguinte erro:
>>>
>>> -X-
>>> /etc/kernel/header_postinst.d/dkms:
>>> Error! Bad return status for module build on kernel: 4.7.0-1-686-pae
>>> (i686)
>>> Consult /var/lib/dkms/vboxhost/5.0.26/build/make.log for more
>>> information.
>>> X--
>>>
>>> Procurei pelo google, mas só acho respostas para problemas semelhantes
>>> antigos.
>>> Anexo a este o make.log acima.
>>>
>>> Interessante que em outra máquina com a mesma distro, mas arquitetura
>>> AMD64, os módulos são compilados sem problema algum e o virtualbox
>>> 5.0.26 funciona corretamente.
>>>
>>> Agradeço a quem puder ajudar.
>>>
>>>
>>> Vinicius
>>>
>>>
>>>
>>>
>>> Boa tarde Vinícius.
>>
>> Não seria melhor vc instalar a versão estável Jessie em vez de usar a
>> testing?
>>
>> Acredito que com a estável vc não terá este tipo de problemas.
>>
>>
>> Bom dia, Thiago!
>
> Isso é verdade, mas estou utilizando a testing principalmente por estar
> aguardando que se torne estável, e isto pode ocorrer antes que aqui na
> empresa terminemos um novo sistema baseado em linux, que normalmente não
> deverá sofrer atualizações após lançado, a não ser devido a algum bug
> importante. Para o desenvolvimento a distro é o Jessie, mas em paralelo uso
> a testing no meu desktop. Caso a testing se torne estável a tempo, já
> estará testada e eventualmente poderá ser utilizada. Isto para garantir uma
> longa vida ao produto.
>
>
> abs
>
>
> Vinicius
>
>


Re: package uwsgi

2016-10-24 Thread Greg Wooledge
On Mon, Oct 24, 2016 at 12:05:23PM +0100, Darac Marjal wrote:
> Oh, maybe you were wondering why?  
> https://qa.debian.org/excuses.php?package=uwsgi

"Last generated on Fri Jul 15 14:27:05 2016 UTC"

The other page I knew about, which is referenced by the dpkg bot in
#debian on Freenode, is

https://release.debian.org/migration/testing.pl?package=uwsgi

And this one says "Latest update: Mon, 04 Jul 2016 08:23:13 GMT"

I don't know of any version of this tool that's currently working.



Re: backports

2016-10-24 Thread Paul van der Vlis
Op 24-10-16 om 11:54 schreef richard lucassen:
> On Mon, 24 Oct 2016 11:16:59 +0200
> Wouter Verhelst  wrote:
> 
>> On Mon, Oct 24, 2016 at 10:33:48AM +0200, Richard Lucassen wrote:
>>> Iets wat jullie vast wel weten: ik gebruik backports eigenlijk
>>> nooit, maar nu heb ik pakket X geinstalleerd met
>>>
>>> "-t backports"

"-t jessie-backports" neem ik aan.

>>> Dat pakket X zit uiteraard ook in de normale repo, maar als er nu
>>> een update komt in de backports repo, loopt-ie dan automagisch mee
>>> uit debackports of moet ik 'm apart pinnen?
>>
>> wouter@gangtai:~$ wget -q -O -
>> http://ftp.debian.org/debian/dists/jessie-backports/Release | grep
>> Automatic NotAutomatic: yes ButAutomaticUpgrades: yes
>>
>> Zou dus automatisch moeten upgrades installeren eens je één keer
>> manueel geïnstalleerd hebt uit backports.
> 
> Ah, ok thnx! Ik ben benieuwd want het spul loopt achter op de
> releases :)

Hij doet echt mee met de updates uit backports.

Groeten,
Paul.

-- 
Paul van der Vlis Linux systeembeheer Groningen
https://www.vandervlis.nl/



script vraag

2016-10-24 Thread mj

Hoi,

Ik heb onderstaand script in elkaar gezet:


#!/bin/bash

errorfile="/tmp/ceph-error"
node=$(cat /etc/hostname)
email="notificati...@company.com"
health=$(/usr/bin/ceph health)

 if [ "$health" != "HEALTH_OK" ] && [ ! -f $errorfile ]; then
# health not ok, and file does not yet exist
echo "health not ok, and file does not yet exist"
touch $errorfile
echo "Bad news: Ceph cluster node $node health status became "$health"" | mail -s 
"ERROR! ceph status $node" $email
 fi

 if  [ "$health" != "HEALTH_OK" ] && [ -f $errorfile ]; then
# health not ok, errorfile already present
# check age of errorfile
if test 'find $errorfile -mmin +30'; then
echo "errorfile older than 30 minutes"
# fresh timestamp on errorfile
touch $errorfile
# and notify again
echo "FYI: Ceph cluster node $node health status is still "$health"" | mail -s 
"ERROR! ceph status $node" $email
fi
 fi


# then assuming health IS ok, we can delete errorfile

 if  [ "$health" = "HEALTH_OK" ] && [ -f $errorfile ]; then
# health is ok, error file exists, so can be removed
rm -f $errorfile
echo "good news"
echo "Good news: Ceph cluster node $node health status is again "$health"" | mail -s 
"ceph status $node" $email
 fi


Alleen de regels volgend op
> if test 'find $errorfile -mmin +30'; then
worden TELKENS uitgevoerd, en niet alleen slechts wanneer de $errorfile 
ouder is dan 30 minuten.


Dat snap ik niet.

Kan iemand me dat uitleggen? Als ik het vanaf de cli uitvoer, lijkt t 
wel te werken:


> find /tmp/ceph-error-more -mmin +30

geeft alleen resultaat, wanneer het bestand ouder is dan 30 minuten.

MJ



Re: autofs

2016-10-24 Thread Gokan Atmaca
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-change': new
> request (1 scripts)
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-chang

Autofs restart edip aynı anda loglara bakın...

2016-10-24 12:07 GMT+03:00 Engin Yilmaz :
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-change': new
> request (1 scripts)
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-change':
> start running ordered scripts...
> Eki 24 12:06:28 gunes dhclient[4509]: bound to 192.168.1.152 -- renewal in
> 37975 seconds.
> Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3666]
> manager: NetworkManager state is now CONNECTED_GLOBAL
> Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3670] policy:
> set 'semik' (wlp12s0) as default for IPv4 routing and DNS
> Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3677] device
> (wlp12s0): Activation: successful, device activated.
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:2 'up' [wlp12s0]: new request
> (1 scripts)
> Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:2 'up' [wlp12s0]: start
> running ordered scripts...
> ~
>
>
> 24 Ekim 2016 11:24 tarihinde Gokan Atmaca  yazdı:
>
>> > autofs.service failed because the control process exited with error
>> > code.
>> > See "systemctl status autofs.service" and "journalctl -xe" for details.
>>
>> Konsolda "journalctl -xe" çıksını paylaşırmısınız. Orada en altta hatanın
>> nedeni yazıyordur.
>>
>> 2016-10-24 11:11 GMT+03:00 Engin Yilmaz :
>> > root@gunes:/home/engin# /etc/init.d/autofs reload
>> > [] Reloading autofs configuration (via systemctl): autofs.serviceJob
>> > for
>> > autofs.service failed because the control process exited with error
>> > code.
>> > See "systemctl status autofs.service" and "journalctl -xe" for details.
>> >
>> >
>> > 24 Ekim 2016 10:47 tarihinde Gokan Atmaca  yazdı:
>> >
>> >> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
>> >> > bağlanabildiğimi belirtmek istedim. Ancak malesef autofs ile hiç
>> >> > bağlanamıyor.
>> >>
>> >> Autofs "/var/log/messages" bastığı logları paylaşırmısınız ?
>> >>
>> >> 2016-10-21 18:24 GMT+03:00 Engin Yilmaz :
>> >> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
>> >> > bağlanabildiğimi
>> >> > belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.
>> >> >
>> >> > 21 Ekim 2016 18:02 tarihinde Ozgur Karatas 
>> >> > yazdı:
>> >> >
>> >> >> Merhaba,
>> >> >>
>> >> >> ben sorunu tam anlamadim sanirim, bir sure sonra baglanti kopuyor
>> >> >> demissiniz, kopacak.
>> >> >> Cunku --timeout degeri vermissiniz, onu kaldirin.
>> >> >>
>> >> >> Diger taraftan ister CIFS ister NFS udev servisini gozden gecirin.
>> >> >>
>> >> >> udevinfo komutu ile ilgili diskin model'ine bakin.
>> >> >>
>> >> >> Ozgur
>> >> >>
>> >> >> 21.10.2016, 17:49, "Engin Yilmaz" :
>> >> >>
>> >> >> Ne yaptıysam olmadı teşekkür ederim ama pes ettim. nfs ile nfs'siz
>> >> >> hepsini
>> >> >> denedim.
>> >> >>
>> >> >> 21 Ekim 2016 14:35 tarihinde Gokan Atmaca 
>> >> >> yazdı:
>> >> >>
>> >> >> Engin bey;
>> >> >>
>> >> >> Diğer tarafta linux görünüyor neden Cifs yernien Nfs
>> >> >> kullanmıyorsunuz ?
>> >> >> Linux daha performanslı calisacaktır. Yaptığınız ayarlarda doğru.
>> >> >> Dmesg
>> >> >> çıktılarınıda hatayla ilgili bilgileri görürsünüz.
>> >> >>
>> >> >> 2016-10-20 21:08 GMT+03:00 Engin Yilmaz :
>> >> >> > Merhaba, Debian 8 testing kullanıyorum. autofs ile sunucuya
>> >> >> > bağlanamıyorum.
>> >> >> > ssh ve sshfs ile sorunsuz bağlanabiliyorum ancak bi süre işlem
>> >> >> > yapmayınca
>> >> >> > bağlantı kopuyor ve xcf, thunar filan kilitleniyor.
>> >> >> >
>> >> >> > /etc/auto.master şu şekilde:
>> >> >> > /mnt/server /etc/auto.server --timeout=6000 --ghost
>> >> >> >
>> >> >> > /etc/auto.server şu şekilde:
>> >> >> > html-fstype=cifs,credentials=/home/engin/.server
>> >> >> > e-tck.com:/var/www/html
>> >> >> >
>> >> >> > /home/engin/.server dosyası da şu şekilde:
>> >> >> > username=root
>> >> >> > password=password
>> >> >> >
>> >> >> > /mnt/server/html dosyasına thunar ile tıkladığımda Error opening
>> >> >> > directory
>> >> >> > '/mnt/server/html': Böyle bir dosya ya da dizin yok. Hata mesajı
>> >> >> > alıyorum.
>> >> >> >
>> >> >> >
>> >> >>
>> >> >
>> >> >
>> >> >
>> >>
>> >
>>
>



Re: package uwsgi

2016-10-24 Thread Darac Marjal

On Mon, Oct 24, 2016 at 11:46:08AM +0200, gustav Spellauge wrote:

hello,

the package uwsgi is missing from testing - it is present in 
oldstable, stable and unstable.


This is true. Thank you for the information.

Oh, maybe you were wondering why?  
https://qa.debian.org/excuses.php?package=uwsgi




gs



--
For more information, please reread.



comparing password managers in Debian, synchronizing on multiple devices

2016-10-24 Thread Daniel Pocock


There have been various discussions in here and in some derivative
projects like Ubuntu about choosing and using password managers,
especially the way to sync their password lists across multiple devices.

Given the way we do things in Debian it is important not to depend on a
service like Dropbox to sync the password files.

Therefore, how are people choosing a password manager and solving this
in practice?

- which password managers have a built-in mechanism for synchronizing or
merging password lists on multiple devices?

- who is using some other mechanism such as Git or ownCloud to sync?

I've made a list of some of the password managers in Debian:

https://packages.qa.debian.org/a/assword.html
https://packages.qa.debian.org/p/password-gorilla.html
https://packages.qa.debian.org/p/password-store.html
https://packages.qa.debian.org/r/revelation.html
https://packages.qa.debian.org/k/keepass2.html
https://packages.qa.debian.org/k/keepassx.html
https://packages.qa.debian.org/k/kedpm.html
https://packages.qa.debian.org/f/fpm2.html
https://packages.qa.debian.org/c/cpm.html
https://packages.qa.debian.org/p/passwordsafe.html

There are quite a few and so it is hard for somebody to know the best
place to start, maybe a comparison table in the wiki will be needed.

Some other factors that come to mind for a comparison table:

- support for PGP
- support for other strong crypto (e.g. smartcard)
- merging algorithm for multiple devices
- multi-user / team capabilities
- browser integration

I notice that Tails chose to include KeePassX, although there is some
uncertainty how it was selected:

https://labs.riseup.net/code/issues/9231

Can anybody comment on its history there?



Så här tycker läsarna om årets mest omtalade bok

2016-10-24 Thread Månadens Säljbok
Bilda din egen uppfattning om Livet med kvantfysiska glasögon
Läs på webben 
[http://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876312readid=29C4FB0CE0D4test=0umailid=2910821304]
 

Bilda din egen uppfattning om årets mest omtalade bok, Livet med kvantfysiska 
glasögon!

Mer än 6000 har redan läst den.

Här får du några av läsarrösterna:

"Wowjag ryser i hela kroppen...vilka möjligheter."

"Viktigt att söka nya vägar och inse att allt inte är svart
eller vitt utan det finns så mycket att upptäcka"

"Er bok är banbrytande, fantastisk."

"I LOVE-LOVE-LOVE IT!"

"Den går verkligen rätt in i hjärtat"

"En skön bok som många borde läsa.."

"Klart bästa boken på länge."

"Så galet bra! Så bra gjord och så SPOT-ON"

"Har potential att skapa magi i många människors liv"

"Tack för Er underbart nyfikna spännande bok och tack
för att Ni orkar stå kvar tills det skakat färdigt."

Livet med kvantfysiska glasögon toppade försäljningslistorna
hos både Bokus 
[https://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876313readid=29C4FB0CE0D4test=0umailid=2910821304]
 och Adlibris 
[http://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876314readid=29C4FB0CE0D4test=0umailid=2910821304]
 under sommaren. Upptäck den
du också!

Vi rekommenderar den varmt!
 
BESTÄLL HÄR 
[http://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876315readid=29C4FB0CE0D4test=0umailid=2910821304]


 


          
[http://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876315readid=29C4FB0CE0D4test=0umailid=2910821304]


 
BESTÄLL HÄR 
[http://www.epostservice.se/aspnet/v3/pub/link.ashx?issueid=307572userid=33797228linkid=12876315readid=29C4FB0CE0D4test=0umailid=2910821304]
 


Trevlig läsning!

Månadens säljbok
 
 
 
 
 
avanmälan [http://www.epostservice.com/unsub.asp?33797228&75A249A29919&307572]
[_]

package uwsgi

2016-10-24 Thread gustav Spellauge

hello,

the package uwsgi is missing from testing - it is present in oldstable, 
stable and unstable.


gs



Re: backports

2016-10-24 Thread richard lucassen
On Mon, 24 Oct 2016 11:16:59 +0200
Wouter Verhelst  wrote:

> On Mon, Oct 24, 2016 at 10:33:48AM +0200, Richard Lucassen wrote:
> > Iets wat jullie vast wel weten: ik gebruik backports eigenlijk
> > nooit, maar nu heb ik pakket X geinstalleerd met
> > 
> > "-t backports"
> > 
> > Dat pakket X zit uiteraard ook in de normale repo, maar als er nu
> > een update komt in de backports repo, loopt-ie dan automagisch mee
> > uit debackports of moet ik 'm apart pinnen?
> 
> wouter@gangtai:~$ wget -q -O -
> http://ftp.debian.org/debian/dists/jessie-backports/Release | grep
> Automatic NotAutomatic: yes ButAutomaticUpgrades: yes
> 
> Zou dus automatisch moeten upgrades installeren eens je één keer
> manueel geïnstalleerd hebt uit backports.

Ah, ok thnx! Ik ben benieuwd want het spul loopt achter op de
releases :)

-- 
richard lucassen
http://contact.xaq.nl/



Re: [testing] Help! PC ne démarre plus

2016-10-24 Thread François LE GAD

Le 23/10/2016 à 17:48, Gaëtan PERRIER a écrit :

Est-ce que d'autre rencontre le même problème ?


Oui.


Je choisis les options avancées de Grub, je démarre sur le noyau 
précédent et ça marche.


--
François
http://flegad.infini.fr



Re: backports

2016-10-24 Thread Wouter Verhelst
On Mon, Oct 24, 2016 at 10:33:48AM +0200, Richard Lucassen wrote:
> Iets wat jullie vast wel weten: ik gebruik backports eigenlijk nooit,
> maar nu heb ik pakket X geinstalleerd met
> 
> "-t backports"
> 
> Dat pakket X zit uiteraard ook in de normale repo, maar als er nu een
> update komt in de backports repo, loopt-ie dan automagisch mee uit
> debackports of moet ik 'm apart pinnen?

wouter@gangtai:~$ wget -q -O - 
http://ftp.debian.org/debian/dists/jessie-backports/Release | grep Automatic
NotAutomatic: yes
ButAutomaticUpgrades: yes

Zou dus automatisch moeten upgrades installeren eens je één keer manueel
geïnstalleerd hebt uit backports.

-- 
< ron> I mean, the main *practical* problem with C++, is there's like a dozen
   people in the world who think they really understand all of its rules,
   and pretty much all of them are just lying to themselves too.
 -- #debian-devel, OFTC, 2016-02-12



Re: Apache log vragen

2016-10-24 Thread Wouter Verhelst
On Sat, Oct 22, 2016 at 04:49:52PM +0200, Paul van der Vlis wrote:
> Hallo,
> 
> Weten jullie wat onderstaande precies doet, ik zie het vele malen:
> 
> access.log:118.239.166.29 - - [17/Oct/2016:05:09:50 +0200] "CONNECT
> search.yahoo.com:443 HTTP/1.1" 302 - "-" "-"

CONNECT is een request op een HTTP proxy om een socket te openen. Wordt
gebruikt voor HTTPS, maar laat in sé toe om zowat alles te doen
(inclusief SMTP relay etc).

De error code (302) geeft aan dat dat niet door je server toegestaan is.

> En betekent onderstaande dat het bestand met succes geupload is?

Neen.

> commo/access.log:50.62.161.102 - - [17/Oct/2016:09:24:29 +0200] "POST
> /xmlrpc.php HTTP/1.1" 403 212 "-" "Mozilla/5.0 (X11; Ubuntu; Linux
^^^

403 == "Permission Denied".

De request wordt gelogd (apache doet dat altijd), maar er is niks
gebeurd.

> x86_64; rv:23.0) Gecko/20100101 Firefox/23.0"
> 
> Wat me opvalt is dat de datum van het bestand veel ouder is dan 17 oktober.

Niet aantrekken.

-- 
< ron> I mean, the main *practical* problem with C++, is there's like a dozen
   people in the world who think they really understand all of its rules,
   and pretty much all of them are just lying to themselves too.
 -- #debian-devel, OFTC, 2016-02-12



Re: autofs

2016-10-24 Thread Engin Yilmaz
Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-change': new
request (1 scripts)
Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:1 'connectivity-change':
start running ordered scripts...
Eki 24 12:06:28 gunes dhclient[4509]: bound to 192.168.1.152 -- renewal in
37975 seconds.
Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3666]
manager: NetworkManager state is now CONNECTED_GLOBAL
Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3670]
policy: set 'semik' (wlp12s0) as default for IPv4 routing and DNS
Eki 24 12:06:28 gunes NetworkManager[427]:   [1477299988.3677] device
(wlp12s0): Activation: successful, device activated.
Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:2 'up' [wlp12s0]: new
request (1 scripts)
Eki 24 12:06:28 gunes nm-dispatcher[4518]: req:2 'up' [wlp12s0]: start
running ordered scripts...
~


24 Ekim 2016 11:24 tarihinde Gokan Atmaca  yazdı:

> > autofs.service failed because the control process exited with error code.
> > See "systemctl status autofs.service" and "journalctl -xe" for details.
>
> Konsolda "journalctl -xe" çıksını paylaşırmısınız. Orada en altta hatanın
> nedeni yazıyordur.
>
> 2016-10-24 11:11 GMT+03:00 Engin Yilmaz :
> > root@gunes:/home/engin# /etc/init.d/autofs reload
> > [] Reloading autofs configuration (via systemctl): autofs.serviceJob
> for
> > autofs.service failed because the control process exited with error code.
> > See "systemctl status autofs.service" and "journalctl -xe" for details.
> >
> >
> > 24 Ekim 2016 10:47 tarihinde Gokan Atmaca  yazdı:
> >
> >> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
> >> > bağlanabildiğimi belirtmek istedim. Ancak malesef autofs ile hiç
> >> > bağlanamıyor.
> >>
> >> Autofs "/var/log/messages" bastığı logları paylaşırmısınız ?
> >>
> >> 2016-10-21 18:24 GMT+03:00 Engin Yilmaz :
> >> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
> >> > bağlanabildiğimi
> >> > belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.
> >> >
> >> > 21 Ekim 2016 18:02 tarihinde Ozgur Karatas 
> yazdı:
> >> >
> >> >> Merhaba,
> >> >>
> >> >> ben sorunu tam anlamadim sanirim, bir sure sonra baglanti kopuyor
> >> >> demissiniz, kopacak.
> >> >> Cunku --timeout degeri vermissiniz, onu kaldirin.
> >> >>
> >> >> Diger taraftan ister CIFS ister NFS udev servisini gozden gecirin.
> >> >>
> >> >> udevinfo komutu ile ilgili diskin model'ine bakin.
> >> >>
> >> >> Ozgur
> >> >>
> >> >> 21.10.2016, 17:49, "Engin Yilmaz" :
> >> >>
> >> >> Ne yaptıysam olmadı teşekkür ederim ama pes ettim. nfs ile nfs'siz
> >> >> hepsini
> >> >> denedim.
> >> >>
> >> >> 21 Ekim 2016 14:35 tarihinde Gokan Atmaca 
> >> >> yazdı:
> >> >>
> >> >> Engin bey;
> >> >>
> >> >> Diğer tarafta linux görünüyor neden Cifs yernien Nfs
> kullanmıyorsunuz ?
> >> >> Linux daha performanslı calisacaktır. Yaptığınız ayarlarda doğru.
> Dmesg
> >> >> çıktılarınıda hatayla ilgili bilgileri görürsünüz.
> >> >>
> >> >> 2016-10-20 21:08 GMT+03:00 Engin Yilmaz :
> >> >> > Merhaba, Debian 8 testing kullanıyorum. autofs ile sunucuya
> >> >> > bağlanamıyorum.
> >> >> > ssh ve sshfs ile sorunsuz bağlanabiliyorum ancak bi süre işlem
> >> >> > yapmayınca
> >> >> > bağlantı kopuyor ve xcf, thunar filan kilitleniyor.
> >> >> >
> >> >> > /etc/auto.master şu şekilde:
> >> >> > /mnt/server /etc/auto.server --timeout=6000 --ghost
> >> >> >
> >> >> > /etc/auto.server şu şekilde:
> >> >> > html-fstype=cifs,credentials=/home/engin/.server
> >> >> > e-tck.com:/var/www/html
> >> >> >
> >> >> > /home/engin/.server dosyası da şu şekilde:
> >> >> > username=root
> >> >> > password=password
> >> >> >
> >> >> > /mnt/server/html dosyasına thunar ile tıkladığımda Error opening
> >> >> > directory
> >> >> > '/mnt/server/html': Böyle bir dosya ya da dizin yok. Hata mesajı
> >> >> > alıyorum.
> >> >> >
> >> >> >
> >> >>
> >> >
> >> >
> >> >
> >>
> >
>
>


[solved] Re: Network manager not showing saved network connections

2016-10-24 Thread Paul Seyfert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 24.10.2016 00:28, Michael Biebl wrote:
> Am 24.10.2016 um 00:26 schrieb Michael Biebl:
>> Am 23.10.2016 um 23:30 schrieb Paul Seyfert:
>>> ...
>>> Is this a known bug[3]? Any suggestions what to test/investigate/other
>>> information I should provide?
>>
>> Yes, known issue. You are hitting a D-Bus limit here.
>> http://bugs.debian.org/781007
> 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773525
> is the merged bug report with more details.
> 

Thanks.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCAAGBQJYDch1AAoJEPOmP9OjPXmrCJEP/2YrC5mcZj6CUk82gOoC0hEw
5uQlepZo0HDAwkRrl6R1N8GcE8wBTbqSJuAePO5Is7IOQ1IyHrKU2t0bGYTahzaU
1Y2tyJQd9dg9y801BSZ5ha89yhJqfH2gVeorK5wDmfo+XwOkZ+8DYKt/8WLJuZlZ
pKFBQwVtBEH8r/KC85uq5/L+aoHWjDjIOvmoWInPpSMXGnQKBBcCGjqc4a6SPVM1
fdXP8RRtfBIBL0Cdlgd1yiUkPC05isbQAijaHb7YmD3+pA9gMP6Se7/mOOoNHwON
Zg4EqamLkJKsca9X/14jGUhsLPZp+OtJ5aslrImf6S5zHwHgKLSTCA5fdUfc7aYQ
cHVw7vQgsY5XhfgcJnGRFbcLNPRhJnLlsW6xEQWmt0oLNr54vijGeQq9LPSkFGav
q29uu410M+DU84Ew8HR6eIZa9OwCY+szI49WU+9P8xK8Xp5CAsVlzzOJlzf4XYWC
YQZkLf65XrEw9PvfRdnuTMfgNyB13mAYyg6pgbIHqgrmR5PtEoCNtHeEJgzEmZOt
xaRula9JU8bhssiEZT2G/cuRYJ4bl7HyZyVHoK8mTND6MOljF06KPIJ5GAKhc1yB
NvpetM5ZveBm0E65lCRea9BwYIT7VDuf92LZu1bF5SPMagwjylbNpNOUhhZ27s0J
jf3UAIbkgLDDlYUvh6SB
=dRSy
-END PGP SIGNATURE-



backports

2016-10-24 Thread Richard Lucassen
Iets wat jullie vast wel weten: ik gebruik backports eigenlijk nooit,
maar nu heb ik pakket X geinstalleerd met

"-t backports"

Dat pakket X zit uiteraard ook in de normale repo, maar als er nu een
update komt in de backports repo, loopt-ie dan automagisch mee uit
debackports of moet ik 'm apart pinnen?

X is trouwens openntpd, maar dat terzijde.

R.

-- 
richard lucassen
http://contact.xaq.nl/



Re: autofs

2016-10-24 Thread Gokan Atmaca
> autofs.service failed because the control process exited with error code.
> See "systemctl status autofs.service" and "journalctl -xe" for details.

Konsolda "journalctl -xe" çıksını paylaşırmısınız. Orada en altta hatanın
nedeni yazıyordur.

2016-10-24 11:11 GMT+03:00 Engin Yilmaz :
> root@gunes:/home/engin# /etc/init.d/autofs reload
> [] Reloading autofs configuration (via systemctl): autofs.serviceJob for
> autofs.service failed because the control process exited with error code.
> See "systemctl status autofs.service" and "journalctl -xe" for details.
>
>
> 24 Ekim 2016 10:47 tarihinde Gokan Atmaca  yazdı:
>
>> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
>> > bağlanabildiğimi belirtmek istedim. Ancak malesef autofs ile hiç
>> > bağlanamıyor.
>>
>> Autofs "/var/log/messages" bastığı logları paylaşırmısınız ?
>>
>> 2016-10-21 18:24 GMT+03:00 Engin Yilmaz :
>> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
>> > bağlanabildiğimi
>> > belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.
>> >
>> > 21 Ekim 2016 18:02 tarihinde Ozgur Karatas  yazdı:
>> >
>> >> Merhaba,
>> >>
>> >> ben sorunu tam anlamadim sanirim, bir sure sonra baglanti kopuyor
>> >> demissiniz, kopacak.
>> >> Cunku --timeout degeri vermissiniz, onu kaldirin.
>> >>
>> >> Diger taraftan ister CIFS ister NFS udev servisini gozden gecirin.
>> >>
>> >> udevinfo komutu ile ilgili diskin model'ine bakin.
>> >>
>> >> Ozgur
>> >>
>> >> 21.10.2016, 17:49, "Engin Yilmaz" :
>> >>
>> >> Ne yaptıysam olmadı teşekkür ederim ama pes ettim. nfs ile nfs'siz
>> >> hepsini
>> >> denedim.
>> >>
>> >> 21 Ekim 2016 14:35 tarihinde Gokan Atmaca 
>> >> yazdı:
>> >>
>> >> Engin bey;
>> >>
>> >> Diğer tarafta linux görünüyor neden Cifs yernien Nfs kullanmıyorsunuz ?
>> >> Linux daha performanslı calisacaktır. Yaptığınız ayarlarda doğru. Dmesg
>> >> çıktılarınıda hatayla ilgili bilgileri görürsünüz.
>> >>
>> >> 2016-10-20 21:08 GMT+03:00 Engin Yilmaz :
>> >> > Merhaba, Debian 8 testing kullanıyorum. autofs ile sunucuya
>> >> > bağlanamıyorum.
>> >> > ssh ve sshfs ile sorunsuz bağlanabiliyorum ancak bi süre işlem
>> >> > yapmayınca
>> >> > bağlantı kopuyor ve xcf, thunar filan kilitleniyor.
>> >> >
>> >> > /etc/auto.master şu şekilde:
>> >> > /mnt/server /etc/auto.server --timeout=6000 --ghost
>> >> >
>> >> > /etc/auto.server şu şekilde:
>> >> > html-fstype=cifs,credentials=/home/engin/.server
>> >> > e-tck.com:/var/www/html
>> >> >
>> >> > /home/engin/.server dosyası da şu şekilde:
>> >> > username=root
>> >> > password=password
>> >> >
>> >> > /mnt/server/html dosyasına thunar ile tıkladığımda Error opening
>> >> > directory
>> >> > '/mnt/server/html': Böyle bir dosya ya da dizin yok. Hata mesajı
>> >> > alıyorum.
>> >> >
>> >> >
>> >>
>> >
>> >
>> >
>>
>



Re: WiFi works during install, not after

2016-10-24 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Oct 23, 2016 at 05:09:06PM -0400, Carl Fink wrote:
> So I have a ThinkPad Yoga 11s ultrabook.
> 
> If I copy over the firmware-realtek package, Debian can install just
> fine over the WiFi connection. (I don't have wired internet at my
> home.)
> 
> After install, everything is fine, except I can't connect to the
> WiFi. I know it's possible because the installer does it!

Yes, this is an irritating aspect of Debian installation. But, to
be honest, I don't know how one could do better, since the kernel
at installation doesn't need to be the finally installed kernel.

You have to make the firmware available to the installer at install
time in a directory /firmware in some removable media. The installer
usually stops to give you a chance to do that. If I read it correctly,
the installer looks somewhere below /media, where the removable
media is found.

See also [2] and [3] for more background and alternatives.

> The wlan0 interface exists and is up, but "dhclient wlan0" ends up
> assigning 169.169.254.8.192, which is not a routable address. As you
> might expect, attempts to ping/connect to external systems via IP
> address fail with "Destination host unreachable" and of course, DNS
> lookups universally fail.

Yeah (I think there's one 169 too much). This is a link-locak address,
after RFC3927. I try to keep my nets free of those ;-)

> This ultrabook is supposed to have the rtl8723au chipset, which is a
> USB 802.11/Bluetooth chipset that for some reason Lenovo used in the
> laptop, with an inside-the-case-only USB connection.

Sic transit gloria mundi ;-/

regards

[1] https://wiki.debian.org/Firmware#Firmware_during_the_installation
[2] 
https://raphaelhertzog.com/2011/03/14/missing-firmware-in-debian-learn-how-to-deal-with-the-problem/
[3] https://wiki.debian.org/DebianInstaller/NetbootFirmware

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

iEYEARECAAYFAlgNw0wACgkQBcgs9XrR2kZddwCfYY+MiNH1iZYqdRk58LY3Wf5A
Y3EAnAhyB2nUWBEPeNpCiNgArhrD59sz
=HO0l
-END PGP SIGNATURE-



Re: autofs

2016-10-24 Thread Engin Yilmaz
root@gunes:/home/engin# /etc/init.d/autofs reload
[] Reloading autofs configuration (via systemctl): autofs.serviceJob
for autofs.service failed because the control process exited with error
code. See "systemctl status autofs.service" and "journalctl -xe" for
details.


24 Ekim 2016 10:47 tarihinde Gokan Atmaca  yazdı:

> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
> bağlanabildiğimi belirtmek istedim. Ancak malesef autofs ile hiç
> bağlanamıyor.
>
> Autofs "/var/log/messages" bastığı logları paylaşırmısınız ?
>
> 2016-10-21 18:24 GMT+03:00 Engin Yilmaz :
> > Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile
> bağlanabildiğimi
> > belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.
> >
> > 21 Ekim 2016 18:02 tarihinde Ozgur Karatas  yazdı:
> >
> >> Merhaba,
> >>
> >> ben sorunu tam anlamadim sanirim, bir sure sonra baglanti kopuyor
> >> demissiniz, kopacak.
> >> Cunku --timeout degeri vermissiniz, onu kaldirin.
> >>
> >> Diger taraftan ister CIFS ister NFS udev servisini gozden gecirin.
> >>
> >> udevinfo komutu ile ilgili diskin model'ine bakin.
> >>
> >> Ozgur
> >>
> >> 21.10.2016, 17:49, "Engin Yilmaz" :
> >>
> >> Ne yaptıysam olmadı teşekkür ederim ama pes ettim. nfs ile nfs'siz
> hepsini
> >> denedim.
> >>
> >> 21 Ekim 2016 14:35 tarihinde Gokan Atmaca 
> yazdı:
> >>
> >> Engin bey;
> >>
> >> Diğer tarafta linux görünüyor neden Cifs yernien Nfs kullanmıyorsunuz ?
> >> Linux daha performanslı calisacaktır. Yaptığınız ayarlarda doğru. Dmesg
> >> çıktılarınıda hatayla ilgili bilgileri görürsünüz.
> >>
> >> 2016-10-20 21:08 GMT+03:00 Engin Yilmaz :
> >> > Merhaba, Debian 8 testing kullanıyorum. autofs ile sunucuya
> >> > bağlanamıyorum.
> >> > ssh ve sshfs ile sorunsuz bağlanabiliyorum ancak bi süre işlem
> >> > yapmayınca
> >> > bağlantı kopuyor ve xcf, thunar filan kilitleniyor.
> >> >
> >> > /etc/auto.master şu şekilde:
> >> > /mnt/server /etc/auto.server --timeout=6000 --ghost
> >> >
> >> > /etc/auto.server şu şekilde:
> >> > html-fstype=cifs,credentials=/home/engin/.server
> >> > e-tck.com:/var/www/html
> >> >
> >> > /home/engin/.server dosyası da şu şekilde:
> >> > username=root
> >> > password=password
> >> >
> >> > /mnt/server/html dosyasına thunar ile tıkladığımda Error opening
> >> > directory
> >> > '/mnt/server/html': Böyle bir dosya ya da dizin yok. Hata mesajı
> >> > alıyorum.
> >> >
> >> >
> >>
> >
> >
> >
>
>


Re: autofs

2016-10-24 Thread Gokan Atmaca
> Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile bağlanabildiğimi 
> belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.

Autofs "/var/log/messages" bastığı logları paylaşırmısınız ?

2016-10-21 18:24 GMT+03:00 Engin Yilmaz :
> Sshfs ile bağlantı belli bir süre sonra kopuyor. Sshfs ile bağlanabildiğimi
> belirtmek istedim. Ancak malesef autofs ile hiç bağlanamıyor.
>
> 21 Ekim 2016 18:02 tarihinde Ozgur Karatas  yazdı:
>
>> Merhaba,
>>
>> ben sorunu tam anlamadim sanirim, bir sure sonra baglanti kopuyor
>> demissiniz, kopacak.
>> Cunku --timeout degeri vermissiniz, onu kaldirin.
>>
>> Diger taraftan ister CIFS ister NFS udev servisini gozden gecirin.
>>
>> udevinfo komutu ile ilgili diskin model'ine bakin.
>>
>> Ozgur
>>
>> 21.10.2016, 17:49, "Engin Yilmaz" :
>>
>> Ne yaptıysam olmadı teşekkür ederim ama pes ettim. nfs ile nfs'siz hepsini
>> denedim.
>>
>> 21 Ekim 2016 14:35 tarihinde Gokan Atmaca  yazdı:
>>
>> Engin bey;
>>
>> Diğer tarafta linux görünüyor neden Cifs yernien Nfs kullanmıyorsunuz ?
>> Linux daha performanslı calisacaktır. Yaptığınız ayarlarda doğru. Dmesg
>> çıktılarınıda hatayla ilgili bilgileri görürsünüz.
>>
>> 2016-10-20 21:08 GMT+03:00 Engin Yilmaz :
>> > Merhaba, Debian 8 testing kullanıyorum. autofs ile sunucuya
>> > bağlanamıyorum.
>> > ssh ve sshfs ile sorunsuz bağlanabiliyorum ancak bi süre işlem
>> > yapmayınca
>> > bağlantı kopuyor ve xcf, thunar filan kilitleniyor.
>> >
>> > /etc/auto.master şu şekilde:
>> > /mnt/server /etc/auto.server --timeout=6000 --ghost
>> >
>> > /etc/auto.server şu şekilde:
>> > html-fstype=cifs,credentials=/home/engin/.server
>> > e-tck.com:/var/www/html
>> >
>> > /home/engin/.server dosyası da şu şekilde:
>> > username=root
>> > password=password
>> >
>> > /mnt/server/html dosyasına thunar ile tıkladığımda Error opening
>> > directory
>> > '/mnt/server/html': Böyle bir dosya ya da dizin yok. Hata mesajı
>> > alıyorum.
>> >
>> >
>>
>
>
>



Re: Firefox lost restore previous session setting

2016-10-24 Thread Marc Shapiro

On 10/21/2016 08:38 PM, Gary Dale wrote:

On 21/10/16 07:23 PM, Dutch Ingraham wrote:

On Fri, Oct 21, 2016 at 02:32:46PM -0400, Gary Dale wrote:

On 21/10/16 04:28 AM, William Satterthwaite wrote:
Thanks. The  settings button | History  has a "Restore Closed Tabs" 
option
that isn't in the History pulldown. When you first start Firefox, 
the option
reads "Restore Closed Windows". Neither actually does the same thing 
as the
"restore previous session" button used to do. I have no idea what 
criteria
Firefox uses to decide which windows/tabs to restore, but they 
aren't the

ones that were open when I closed Firefox.

There also doesn't seem to be way of customizing the menu bar to 
include the
option, or even the option in settings button | History section. The 
History

| Restore Closed Tabs is gone.

I'm using Firefox 45.4.0.

I preferred it when Firefox automatically restored your last session. I
didn't mind it when it started asking you nor even when it made you 
press a

button on the startup page. I gather from the increasing difficulty in
restoring the previous session, someone has decided that people simply
shouldn't do it.  :)
I am using FF 49.0.1, currently logged into Arch Linux.  I have an 
option
History -> Restore Previous Session. I can also go History -> 
Recently Closed

Tabs -> Restore All Tabs.

Isn't this what you are looking for, or did I miss something?


Interesting. These options weren't there earlier but have now appeared.

Unfortunately History | Restore Previous Session is always greyed out. 
The other ones are now behaving like the Settings Button | History 
except that they are both present all the time. The Restore Closed 
Windows  opens a new browser with the previous session restored - 
meaning I have to close the browser that launched it.


There is some real weirdness going on with Firefox.


I am running 49.0.2 direct from Mozilla and it seems to work as it should.

I can go to Edit>Preferences>General and select "Show my windows and 
tabs from last time" so that it always starts with my previous windows 
and tabs opened.


If I select History>Recently closed Windows>Restore all windows it opens 
all of the listed windows and leaves my current window open as well.



Marc