gpm dumping info to /var/log/messages

2014-01-07 Thread Mike McClain
Is there any way to stop gpm from dumping to /var/log/messages every
time I copy/paste without stopping other deamons from writing info
there too? I see no such provisions in the man pages.
Thanks,
Mike
--
Who knows what evil lurks in the hearts of men?


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140108074721.GA3876@playground



[Solved] Re: Debian gateway problem

2014-01-07 Thread mett
On Fri, 27 Dec 2013 10:15:04 +0100
Nemeth Gyorgy  wrote:

> 2013-12-26 06:27 keltezéssel, mett írta:
> > Hi,
> > 
> > I'm using a debian box as a router and multiserver between my LAN
> > and the internet.
(cut)
> > It seems(according to tcpdump on both interface) that replies from
> > some sites get lost or get an ICMP destination unreachable from the
> > gateway somehow.
> 
> For me it seems a PMTU problem. Insert the following line in the
> proper place:
> iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS
> --clamp-mss-to-pmtu
> 

Hi and HNY everybody!

Just a final update on this thread.

I end up with the script below working perfectly,
except if I use both following rules at the beginning of the script.
---
iptables -t nat -F
iptables -t mangle -F
---

I don't fully understand why but I'll investigate that later.

script:
--
#!/bin/sh

PATH=/usr/sbin:/sbin:/bin:/usr/bin

#
# delete all existing rules.
#
iptables -F

iptables -X

## nat/POSTROUTING
# Masquerade <=> Changed to SNAT(seemed wiser in my situation after
#reading doc...).
iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o ppp0 -j SNAT
--to-source EXT.FIX.IP.ADD

## filter/FORWARD

# Allow New outgoing connections from the LAN side.
iptables -t filter -A FORWARD -i eth0 -o ppp0 -m state --state NEW -j
ACCEPT

# Allow Established outgoing connections from the LAN side.
iptables -t filter -A FORWARD -i eth0 -o ppp0 -m state --state
ESTABLISHED,RELATED -j ACCEPT


# Allow forwarding of established connection from WAN side.
iptables -t filter -A FORWARD -i ppp0 -o eth0 -m state --state
ESTABLISHED,RELATED -j ACCEPT

# Don't forward from the outside to the inside (icmp Port_U).
iptables -t filter -A FORWARD -i ppp0 -o eth0 -j REJECT

## filter/INPUT

# Always accept loopback traffic
iptables -t filter -A INPUT -i lo -j ACCEPT

#log udp port 5060
iptables -t filter -A INPUT -i ppp0 -p udp --dport 5060 -j LOG
--log-level debug

#asterisk
iptables -t filter -A INPUT -i ppp0 -p udp --dport 5060 -j ACCEPT

#tor
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 9001 -j ACCEPT

#postfix
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 25 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 587 -j ACCEPT

#dovecot
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 110 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 995 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 143 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 993 -j ACCEPT

#apache
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 80 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 443 -j ACCEPT

#maradns
iptables -t filter -A INPUT -i ppp0 -p udp --dport 53 -j ACCEPT

#vsftp
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 21 -j ACCEPT
iptables -t filter -A INPUT -i ppp0 -p tcp --dport 5:50010 -j ACCEPT

# Allow established connections
iptables -t filter -A INPUT -i ppp0 -m state --state
ESTABLISHED,RELATED -j ACCEPT iptables -t filter -A INPUT -i eth0 -m
state --state ESTABLISHED,RELATED -j ACCEPT

# Proto_U everything else on outside interface (-input ppp0)
iptables -t filter -A INPUT -i ppp0 -j REJECT --reject-with
icmp-proto-unreachable


# Enable routing.
echo 1 > /proc/sys/net/ipv4/ip_forward
--

Thanks a lot for all the comments.





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140108161658.121d9606@asus.tamerr



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Long Wind
I have downloaded and burned Freebsd 9.2 CD
during boot, it shows sth like "BIOS 630K/14233K" memory
I can't remember the exact number

it means it has only 630K  memory available
so the BSD kernel fails to boot

linux probably face the same problem

On 1/8/14, Long Wind  wrote:
> On 1/8/14, Chris Bannister  wrote:
>>
>> He mentioned that the woody installer "boots" OK.
>>
>> --
>
> the woody install CD fails to boot installer,
> but woody on a hard disk can boot
>


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cab-gxzcr_ufvtogjjcwd4hnnvsji01x0jsvrqy3osmqggf2...@mail.gmail.com



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Long Wind
On 1/8/14, Chris Bannister  wrote:
>
> He mentioned that the woody installer "boots" OK.
>
> --

the woody install CD fails to boot installer,
but woody on a hard disk can boot


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAB-gxZCDVZneaLg-kt=cml8yglerbdqdonefjxywkrhc8ud...@mail.gmail.com



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Chris Bannister
On Tue, Jan 07, 2014 at 06:51:07PM +, Lisi Reisz wrote:
> On Tuesday 07 January 2014 17:38:18 Nitebirdz wrote:
> > In any case, isn't it strange that Linux won't boot because it
> > "can't correctly detect memory map" on a system with only 1GB of
> > memory? Are we sure that's the root of the problem? Is it possible
> > to run a live distro from CD, for instance?
> 
> As far as I can see, Long Wind is the only person who _does_ think 
> that.
> 
> No-one has persuaded him to run one.  He says that he tried to boot 
> Knoppix 7, but it failed (??).  He may have tried to boot the DVD of 
> Knoppix 7.x, which might well fail due to lack of memory.

He mentioned that the woody installer "boots" OK.

-- 
"If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing." --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140108050622.GD10639@tal



Re: since last upgrade unable to upgrade, install whatever...

2014-01-07 Thread Chris Bannister
On Mon, Jan 06, 2014 at 11:56:35AM +0100, François Patte wrote:
> Le 06/01/2014 11:30, Erwan David a écrit :
> > You may comment out everything in /etc/apt.conf.d/10apt-listbugs until it 
> > is fixed.
> 
> # ls /etc/apt.conf.d/10apt-listbug
> /bin/ls: cannot access /etc/apt.conf.d/10apt-listbug: No such file or
> directory
> 
> # ls /etc/apt.conf.d/
> /bin/ls: cannot access /etc/apt.conf.d/: No such file or directory

TAB completion will help avoid errors.
Note: the difference between the suggested file name and the one you
actually typed.

-- 
"If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing." --- Malcolm X


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140108045455.GC10639@tal



Re: packages status

2014-01-07 Thread Diogene Laerce

Hi,


[...] I would like to automate the installation process from
scratch to a django development platform. But forgot to note every
modification from the very beginning. ^^ :)

I'm not sure what you mean by "development platform", but for
standardized/customized development/testing environments, vagrant
(http://www.vagrantup.com/) is quite useful.  It makes it very easy to
create, use, and share custom virtual machines.


Actually I didn't know vagrant but I was going to use ansible to do 
about the

same job. The vagrant documentation provides an explanation on how to use
them as a synergy so : thank you ! ;)


   The only downside is
that it is not configured very securely by default.


The less scripting I need to do the better, anyway. :)

Lots of reading to come..

--
“One original thought is worth a thousand mindless quotings.”
“Le vrai n'est pas plus sûr que le probable.”

  Diogene Laerce


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52ccc985.5040...@yahoo.fr



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Long Wind
I am trying various memmap= option this morning
before booting a  Linux installer, I enter:

memmap=exactmap memmap=512M@1M memmap=1M$0

the screen turn blank after a while
if I don't enter memmap option, it reboot
I am not sure whether this can be called progress


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cab-gxzbrjctb+_jvx-nukitidkzlc4no4+uc6lsrzmks4p+...@mail.gmail.com



Re: since last upgrade unable to upgrade, install whatever...

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-07 01:22, Vincent Lefevre wrote:
> On 2014-01-06 05:28:54 -0600, Selim T. Erdogan wrote:
>> Actually, after looking at
>> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734256, what you
>> could do is to remove apt-listbugs, install ruby1.9.1, and then 
>> reinstall apt-listbugs.
> 
> You also need to make sure that the right alternative is used for 
> /usr/bin/ruby.
> 

Only if you've manually configured it; 1.9.1 has a higher priority.

Also, ruby1.8 now no longer provides ruby-interpreter, which means
apt-listbugs should now pull in ruby1.9.1:
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734319


- - Felix

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzLrsAAoJELIY/ywn/GzGvKoP/AxtumF/46Jdb8ipe6ovX6LI
gEG/7w6ESPiEP4rLD79TVNJnNvoJCJ6OBSje/aPIVUFRKtFFDMyGxsRtdxnjSpUA
DND2oDrg9ah8nHr39KnI9w+zP+ViUaA0qZPY2Cz0lQf8dVE6GjJvH2bzZ21sznXq
q/7Wf7bqOaN4WQ/gadlQ+IoM3sv+95qtKKVe2CBGOjUG3dblxxFO87YIsnxNZUHt
9JGtFyyhajzn0OrP7nK1N1mly6MuJ/3UQtDJLtZq38IwfjrRu09scE34o/4rKMoR
zIyzO+nZyqm5+6ukmsHWuaJEWiiFy7qIWC/1kHGjwKzD5SkT47ozrbMMJgP2Yxt5
e6wVynFngvIJCij5JqJ1a+3BEo78j8rLVFSufsjMwGPtfvVKFmW4y51tWO8EEe4r
FpTbsv8z3Q+npkFJMWbLM2bfe9zM8PyTPu6MZV5xLJrk5xwi7758lUa2Mnzf8E0s
HcpwN8oSuRkTIAcW5TipvnqwFWYMOwVAQ4z29y71fY33eDBDmeKxy9jUhEeCUOWM
vwcxc4pvJa1lIw4QAFA8PmI3ioWcQ5nB5WuTyVDwG91BA6TKSoaveChQfvuN6882
JLBX7Xf/iheH7VO3hYKjxPNCX5BcBnzWMFQLR1+MdpYOCzwcdg+W3FhK40A+UeZi
N1Bd9HIlyegEUfEDgf7o
=qmax
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52ccbaf4.30...@obfusk.org



Re: packages status

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-07 05:08, Diogene Laerce wrote:
> [...] I would like to automate the installation process from
> scratch to a django development platform. But forgot to note every
> modification from the very beginning. ^^ :)

I'm not sure what you mean by "development platform", but for
standardized/customized development/testing environments, vagrant
(http://www.vagrantup.com/) is quite useful.  It makes it very easy to
create, use, and share custom virtual machines.  The only downside is
that it is not configured very securely by default.


- - Felix

> [...]

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzKkrAAoJELIY/ywn/GzGBCcP/1/KahZs2oAa0aHnBjSYHIyI
Bdcbtfaj42I2vH2pmykxunv3AIyYuIc8dUFuTEhbQ1gMJGYiYl1r0OGyixMm9VPK
6BxfgMfksHkNC5989TiL2FSGy2nLNjix9Mz5y9nVmQ8dnIcXG+QwVA80RIKZd+J8
pAjcj2FWXUIN6A4v8aOTBxs6S87o3JYsb8uAmD8iblISQoGx2picBNZ/zPJeFEez
yVNBTkkNpUlX/+ecJO4sgF43deiaDX5ns8WI/NfeZLVK1TzxG2YlsHFYFPNZ8p9J
254t0+STs31z1XHh5Hp7GLOJ7pMhyDklJz80javV6HI23GzYLEwma7g0DIVlWUoP
oMtiW/rycE84Mh8Au2x3um89+RBhFqFYDcCgTBqPhZzCSpgOUWt86GUl2XSC6dE2
/gwhFQXBLDLCVmxymLT0Qcpj7Yxnt2aWvzemKTDGN6DbHusIn0qyVzV0dvNwtqOp
YnWi6YpHzoN5hQ/GjRzMWUaH8YaF2X6Wqzqs4uxtj6LGkEzZrt1bSWG0jl0ctGYW
VzL3a+eWsrqi56fSNMwPcrFT4vkd1WfB+Yh9ILadiJz4wJK1Fvyajw0KYMvvyA8l
gNmIclOwH2ZbboFpXX9VNdZEyfPQWiGWvNfw1uoeUqwVTgDf6UREprvHIyfLIEry
O3M7ZtZTuEEiRxVA7Hcn
=a/jG
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cca934.9020...@obfusk.org



Re: stable mix testing

2014-01-07 Thread Paul Cartwright
On 01/07/2014 02:16 PM, Pol Hallen wrote:
> Hi all! I've a strange problem: debian stable with mate desktop: with
> only stable sources list I don't have any upgrade to do, I added
> testing repository like it: 
not sure what your problem is. I have a new wheezy install, and I am
also running MATE desktop manager. it works fine.

dpkg -l|grep libsqlite3-0
ii  libsqlite3-0:amd64   
3.7.13-1+deb7u1amd64SQLite 3 shared library

no libfaac0 installed.

ii  mate-core
1.6.0.2+7.wheezy   all  MATE Desktop Environment
(essential components)
ii  mate-desktop 
1.6.0-3+7.wheezy   amd64Library with common API
for various MATE modules

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52ccad08.10...@gmail.com



Re: Automatically activate xscreensaver-command -deactivate after un-hibernate ?

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-04 23:26, Zenaan Harkness wrote:
> sid, xfce
> 
> Because I just have a blank screen as my lock screen, 
> un-hibernating just continues to show my blank screen.
> 
> It would be nice if the "unlock" password dialog appeared 
> automatically. Anyone know how I might do this in xfce?
> 
> TIA Zenaan
> 
> 

These seem promising:
https://wiki.archlinux.org/index.php/pm-utils#Creating_your_own_hooks,
http://askubuntu.com/questions/107276/how-can-i-get-a-script-to-always-run-on-resume-in-lubuntu.


- - Felix

(@Zenaan Harkness: Sorry about the PM, I pressed the wrong key.)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzKUeAAoJELIY/ywn/GzGnzEP/04C+h9aQWaHpVW7Ys3BipQ7
O6gTAPe3P2/orPavPEppyywZKPOauwyOdyI7KuWyFIXXxhkcVLcjuOQxdo5yXvHZ
TDBeEHPwGK7t3QEoSaG7qcrMv4HaFiDxfiJMo4BsPIEs7Z1Z5NIXFR+ddZmEWDb5
zPAjT11xALSZMYIm0tdIbvsjJmbv8r/PHBcOqNIl7ZgRhkPhCPEY+bErDBwz/MBK
WnKdX/cwXUW1fzSv+HHD2hGHfoQa7+bzqygC01JNJS0ADkI2cvd2LEV2i4zeWG3j
w/nnt//u2Doxq209tKGYSPdpnnJ3gF3HdOytYNqMaiw30rJuHTUNciK2vm3neXcu
SFCB1OHlPRFHh6I/EIoldTK3scTenrXXNpk1yXXV00NorEA6ggKRu7OY5eD2hxPR
jYaaI/3rWr+3fTWpU+E4HDi3j0bFQHhFlBElkum38JBNVS+7Ge7qOJDL2kYGWWIk
oBS5ZqaA35BjrDWbSSufQw1DLl48p4qgERGqKMOX7V5B2qp7eQuzY/iFmu0d9FPS
rso+qtt/kckO4pllP0iPvSDFIpB6oJm2AxQqhDnoWR1wMvSDm8rvJquwcfuVut7v
75P9TTEX3ZX0vyC4DDFrEWiZLQwuf1ia1vJfOzXVT9bCHcOThDrld9FuArdDJ1DY
h8tY7gqoBkrBwFJ5sfwt
=KuFr
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cca527.8090...@obfusk.org



Re: stable mix testing

2014-01-07 Thread André Nunes Batista
On Tue, 2014-01-07 at 20:16 +0100, Pol Hallen wrote:
> Hi all! I've a strange problem: debian stable with mate desktop: with 
> only stable sources list I don't have any upgrade to do, I added testing 
> repository like it:
> 
> /etc/apt/sources.list
> 
> # STABLE
> deb http://ftp.it.debian.org/debian/ stable main contrib non-free
> deb-src http://ftp.it.debian.org/debian/ stable main contrib non-free
> deb http://security.debian.org/ stable/updates main contrib non-free
> deb-src http://security.debian.org/ stable/updates main contrib non-free
> # MATE
> deb http://repo.mate-desktop.org/debian wheezy main
> # TESTING
> deb http://ftp.it.debian.org/debian/ testing main contrib non-free
> 
> /etc/apt/preferences
> 
> Package: *
> Pin: release a=stable
> Pin-Priority: 700
> 
> Package: *
> Pin: release a=testing
> Pin-Priority: 500
> 
> apt-get upgrade
> 
> The following packages will be upgraded:
> libfaac0 libsqlite3-0 mate-backgrounds mate-icon-theme mate-themes
> 
> Also commenting mate repository I've same problem. I need keep debian 
> stable and upgrade only one package. Is this because mate has become to 
 ^^^
> debian (testing?). How keep whole debian stable and install a package 
> (only one yes -) from testing? Any idea?
> 
> thanks!

If only one package is what you want, you should not put an * on Package
value on your apt_preferences, just the name of the package.

But I agree with Ralf, the first time you should do only a install and
in the case of a DE, you should expect a lot more than just one package
to be upgraded.

-- 
André N. Batista
GNUPG/PGP KEY: 6722CF80



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


Re: New to Debian (Gentoo user) - package management

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-05 01:43, Chris Bannister wrote:
> On Fri, Jan 03, 2014 at 10:31:35PM +, Lisi Reisz wrote:
>> On Friday 03 January 2014 14:16:34 Brian wrote:
>>> The '-s' can be omitted if more than one package is to
>>> installed.
>> 
>> i.e., if you are requesting more than one package, it will tell
>> you what it is going to install before doing it anyway.  You need
>> the -s for one package, because if you have only asked for one
>> package it otherwise just goes right ahead and installs it.
> 
> I've always looked on it as; if you didn't ask for a particular 
> package to be installed then it won't do it without your
> permission.
> 

Indeed.  I prefer aptitude to apt-get (and I'm assuming their
behaviour regarding installing packages not requested is the same --
correct me if I'm wrong).  When installing the packages you requested
does not result in more packages being installed, it just installs
them; otherwise it prompts.  And aptitude has the -P option to always
prompt.

@Tanstaafl:

Also, the -s option simulates the installation of packages (dry run,
like --pretend w/ emerge).  But if you use aptitude -P, you get a
prompt you can cancel.  Also, aptitude safe-upgrade/full-upgrade
always prompts before upgrading.

Also, aptitude has a TUI (and minesweeper), but no super cow powers
(apt-get moo vs aptitude moo).

The FAQ:
http://www.debian.org/doc/manuals/debian-faq/ch-pkgtools.en.html,
http://www.debian.org/doc/manuals/debian-faq/ch-pkg_basics.en.html.

The Reference:
http://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_basic_package_management_operations.

The Wiki: https://wiki.debian.org/Apt.

The handbook: http://debian-handbook.info/browse/wheezy/apt.html.

Wikipedia: https://en.wikipedia.org/wiki/Advanced_Packaging_Tool.

Also, the apt-get and aptitude man pages are pretty comprehensive.

And then there's also dpkg, dpkg-reconfigure, apt-cache, apt-file,
apt-show-versions, apt-listbugs, apt-listchanges, apt-rdepends,
update-alteratives, apt_preferences, debconf, etc.

Enjoy.


- - Felix

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzJ/+AAoJELIY/ywn/GzGGfAQAMLxzT/CVxbl1kpQLi92b7JU
F2KuvDXtPQ7QxNq8w4e/p4Lva+xclKbTfniySvz6gx83/TC5ow1DybBjBWdcBzmv
aFeX2DJ+6an2yXsP1Xq6dEpi3Fd2H+Hk9xru74c6J+b37DcfS+rc42hArjO1vFa8
WIoa1VwBxKD3X3asgdT23BUTezV1yOg51Bgh4GEwwEZoy/BUXy71e0ymaQZlT+4V
i5XZd0BG5vF/xg5vEeofvNjSpSXE0QaTFqhpJsoZ2Vv+MHvj64XR6fqHG23BwPJD
tfKHOqz9IPNAZXkjZ4oLT/oqAL/lfaVRjA0Mpohfgc4nJpwgIraIcjqaM8t51Vw4
MS45mz6JaH7sBIZjJEsmdjqKVssTjd2Q9fTeb9oMRiRxvf9xPR2OVyd256hnzvDc
aZpJABNgiQEumFtvRoPGkzXjgud7cYltN1OCeAwE/pYc0rEAi6+plJG/ruDHRYWK
tGSqytQhBoLs77XUjjkuLaUuhdqdBfqAeiB/d3bluIPQs3ulaoPToVkqJmD41iIw
sULp1zXyaVCHTjrnUaZf8f8PLfPQ/HEFB9iRf3vwQz9w4fQCaVhjZ4g8dJWYbIKC
+8cmkUkXgqmIZ8D2+ZJfqKoYtM4WaeK/BCpL9bgX6En9H6n/lGPfRBd/TecQe+M4
GLMRLz2+/pNXnc+LZWq+
=wGim
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cca008.3060...@obfusk.org



Re: Problems while using Tor Browser on Debian 7

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-06 20:17, André Nunes Batista wrote:
> On Sat, 2014-01-04 at 01:21 +0600, Muntasim-Ul-Haque wrote:
>> Hi, I have installed Tor on Debian 7 but couldn't use it.
>> Viladia is showing the following errors: /*[Warning] Could not
>> bind to 127.0.0.1:9050: Cannot assign requested address*//*
>> *//*[Warning] /var/run/tor is not owned by this user
>> (tranjeeshan, 1000) but by debian-tor (115). Perhaps you are
>> running Tor as the wrong user?*//* *//*[Warning] Before Tor can
>> create a control socket in "/var/run/tor/control", the directory
>> "/var/run/tor" needs to exist, and to be accessible only by the
>> user account that is running Tor.  (On some Unix systems, anybody
>> who can list a socket can connect to it, so Tor is being
>> careful.)*//* *//*[Warning] Failed to parse/validate config:
>> Failed to bind one of the listener ports.*/
>> 
>> Now how can I make Tor work? Thanking you, Muntasim-Ul-haque
> 
> Hello Muntasim!
> 
> From your description I'm guessing this might be a port collision 
> problem. "debian-tor" is a special user you can create to run the 
> tor process and it defaults the socks host to port 9050. Vidalia
> is a different software which AFAIK has been discontinued and runs
> its own tor instance. If both are running and configured to use
> the same socks host, the second one wouldn't be able to handle the
> port which is in use by a different process.
> 
> So the question is, how did you install tor?
> 

Indeed.

Vidalia was a Tor GUI used by the Tor Browser Bundle (but not any
more, are you using the latest Tor Browser Bundle?).  The Tor Browser
Bundle (which is the recommended way to use Tor) includes Tor, so you
don't need to install it yourself (and probably shouldn't).  In fact,
it would seem you do have it installed (via apt) and you can't use
both at the same time because they use the same port.

Removing the debian tor package should fix the Browser Bundle.

- - Felix
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzJeMAAoJELIY/ywn/GzGY+wQAL5yiy/0Zj5rW3C14mwZAoXh
kOIbzSPWQbhXB9aQfNw2qkFU2pj5uQyTUieEt1RL9YP6lAxiuO6YunXuIoV3Ri8v
6WHhyAXNxTDXMgd5Csv4+xTNua0ovjzT4Mk8/+38P3qRPlciHATHnfYV/t25n/At
Tlpw+1eXLgxec1h6+UFsMFUB6DUqOVkkvA79VbjzDwbq2D1pyl+ZT+ZvYIDQja/o
FHxkkKhHrirDFdv/Z2kZ1EPHeQUyeEhwsCrLdm+J8ImSYRdr1uZjuQBQtmHmw63z
gHkTarlvlntPf6WZbtfW+nlS7yvmWPI9RmN/FtUS6QKVloRYwm2TB3LOQirB8u+G
X4tuLtce2y6EvECIDDMfpPuim9N37NDRqfmmBHScIw4T1fp/W8P+vL/YBeO+68nu
ZQhuo+rENGrsMglKdnpBknuh74s0KAU0PM6WoM77RiQrllW9rRxgdx9sXwjafttz
kBCgAecDrHfVJ7zCoi2xUorQGZ8bXvMhB7fPHKrURPEA5KGWpwMs9KIV3LE6P9RB
Ss35aSFPHvSXn0nZgyAMP2xHTNBxpwpKHPwAeXCpqaYu0Qvz2TGofM7y6CtLITu1
Ks+w4PuMuOtc6r/qt5pC8ywPM0vMAMrw71TBVUVNWMo8sAv2/C/HcRlOhkuoUVCz
0OyDJ/CqFEe6Ugq2YqHv
=exfU
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc9799.4070...@obfusk.org



Re: since last upgrade unable to upgrade, install whatever...

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-06 12:30, François Patte wrote:
> Le 06/01/2014 12:21, Selim T. Erdogan a écrit :
>> Erwan David,  6.01.2014:
>>> On Mon, Jan 06, 2014 at 11:56:35AM CET, François Patte
>>>  said:
 Le 06/01/2014 11:30, Erwan David a écrit :
> On Mon, Jan 06, 2014 at 11:24:44AM CET, François Patte
>  said:
>> Bonjour,
>> 
>> Since the last upgrade, I am unable to run any apt
>> command (install, upgrade...) all end like this:
>> 
>> /usr/lib/ruby/vendor_ruby/debian.rb:24:in `require': no
>> such file to load -- debian_version (LoadError) from
>> /usr/lib/ruby/vendor_ruby/debian.rb:24 from
>> /usr/sbin/apt-listbugs:269:in `require' from
>> /usr/sbin/apt-listbugs:269 E: Sub-process
>> /usr/sbin/apt-listbugs apt || exit 10 returned an error 
>> code (10) E: Failure running script
>> /usr/sbin/apt-listbugs apt || exit 10
>> 
>> 
>> file debian_version is on my system.
>> 
>> What to do?
> 
> Bug is in ruby-debian which does not provide
> debian_version.so for ruby 1.8
> 
> You may comment out everything in
> /etc/apt.conf.d/10apt-listbugs until it is fixed.
 
 # ls /etc/apt.conf.d/10apt-listbug /bin/ls: cannot access
 /etc/apt.conf.d/10apt-listbug: No such file or directory
 
 # ls /etc/apt.conf.d/ /bin/ls: cannot access
 /etc/apt.conf.d/: No such file or directory
 
 hum!
>>> 
>>> Maybe it differs for you but that's where my jessie stores the
>>> fact that apt* should launch apt-listbugs before install
>>> 
>>> Maybe in apt.conf for you ?
>> 
>> Mine was in /etc/apt/apt.conf.d/10apt-listbugs 
>> ^ (note extra "apt/", and final "s")
> 
> OK thanks, I found it...
> 
> Any idea how long this bug will last? Or how to have any info when
> it will be corrected?
> 
> 
> Thank you
> 

The bug report (which will be updated as it is fixed) is here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734233

- - Felix

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzJKQAAoJELIY/ywn/GzGy7YP/jVRUOPOXoilPjDacURAWFRt
7sErsfxYJJKWgbsd9aZUFOsUkFB4ojQqvlxuzcimdEUbesnEgTj0nF57bhGsZLmn
K449ddQk2JpdTrcF+m14TRWdnFoapjvrsREUBCsREedsUfPVNXCIhY0OHqVDZ1zW
0kdORuCHrRfIek9/XLXPtnks8uX3oI8nUsCUXWEHLNzlDS5crFFITeyp03dKoLK3
NfJp7ririfSt9H4vME1ufEWGBtr/EkRhv6v67v/5jy3Ud9mmnGG47C9dil0QcocA
lM84Kz8W7AozKKc97jiMbBRL/daSrhUS/YgV+kZ6+NItROyDPgE8D9CnCuph6Jwz
Axjb9z6pDMBOarIO0REc+ETBcqufIif9jzFRm4soGEgeAqxXI0hnJ8nvQrRNgmJ1
nDcdrNBu42q/mxr+1g8jbicEZr4yLBCnRIesgCTSTjk6gx68V8tgReWlFvIFq+NA
BA4NqBgWp0mpf1LHkiwBJ9aLFhJ5K9PSlI5kXaejekglZqqQrOX5qJbSRUARWTPM
V7ZllREn7I/IeY7kq48s10YtjKMGfdmY8cPBTXTHckvG7fRuRd4G7EJJ+NLfseQ/
mkMNU6R2nwssjIgfUlhsiDK1f647YOqnpnPBRiP/4XS7kW+h7NQBbLT3jlBydxqp
TB2eOuJwN3zsDiR9/QdQ
=hdhU
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc929a.20...@obfusk.org



Re: stable mix testing

2014-01-07 Thread Felix C. Stegerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 2014-01-07 20:16, Pol Hallen wrote:
> Hi all! I've a strange problem: debian stable with mate desktop:
> with only stable sources list I don't have any upgrade to do, I
> added testing repository like it:
> 
> /etc/apt/sources.list
> 
> # STABLE deb http://ftp.it.debian.org/debian/ stable main contrib
> non-free deb-src http://ftp.it.debian.org/debian/ stable main
> contrib non-free deb http://security.debian.org/ stable/updates
> main contrib non-free deb-src http://security.debian.org/
> stable/updates main contrib non-free # MATE deb
> http://repo.mate-desktop.org/debian wheezy main # TESTING deb
> http://ftp.it.debian.org/debian/ testing main contrib non-free
> 
> /etc/apt/preferences
> 
> Package: * Pin: release a=stable Pin-Priority: 700
> 
> Package: * Pin: release a=testing Pin-Priority: 500
> 
> apt-get upgrade
> 
> The following packages will be upgraded: libfaac0 libsqlite3-0
> mate-backgrounds mate-icon-theme mate-themes
> 
> Also commenting mate repository I've same problem. I need keep
> debian stable and upgrade only one package. Is this because mate
> has become to debian (testing?). How keep whole debian stable and
> install a package (only one yes -) from testing? Any idea?
> 
> thanks!
> 

(It's been a while since I used apt pinning, but IIRC) if you only
want a single package from testing, you should probably Pin all
packages from testing to something like -10, and Pin that specific
package from testing to the same priority as stable.  e.g.

Package: *
Pin: release a=stable
Pin-Priority: 700

Package: *
Pin: release a=testing
Pin-Priority: -1

Package: some-package
Pin: release a=testing
Pin-Priority: 700


Or you could pin testing, but not pin the package at all and simply
install some-package=some-version.

You can check the priorities w/ 'apt-cache policy'.

- - Felix

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Using GnuPG with Icedove - http://www.enigmail.net/

iQIcBAEBCgAGBQJSzJGWAAoJELIY/ywn/GzGrB4QALxSfMz3xQNpxwnvPZYDXZDB
/Uy9Pnn3OAhglPFR8/oZmurWmwQxxPnQP3+dnvy4860zCVq6DqH1ZQc8L4LkTba1
kroqMkOTmpbUb2doYq4XLkitNsLqeTTeD7Boq74IG80kla4TRy2GETiTaZ+zJpQg
zsdlG2eokq1TmFQ072Wt11tx+9pfB9G2haLm4KnPaJyoMgPa2A0D5OgnJTc+QtUJ
0/7s/to98+ePZKsChgetu+aJECaXc/xOd6Aeb9XjsfyoHIIqONQj7GtU92+njDiY
99blOsv8V65+i5LZgusdPmnL1D3H91P+JC6k7CdxfIZooX6rBtJ1PDxtYVSaWe2O
a01PiR0dxGRmdCi2arwttlfL8zr3X4umy7OZUh8rvyKCyjRrsJvFiprqAsPCS8z2
CVrgIs2tBDEJYdKcutrfpB0pelUX1wacwvWGJHEDAFFaUKG6y6fwX1bxmZK/pj4A
Ei46/PJ1bBnmFtRZ6N0fdcwkhl7yiszVKfrCby0Ng9mDGVnicbrDq+jbwK8O8+dl
7CkDgpOl7hxq9Zsg10YqboZxJNxEisu+LVwBpP+qkPG9SJ/SNyZMtrLG66scplE8
aN4SkW0ipEsv1/R6IcI6QgEH/NlWhUERoacxKYWReN1z0iVC9IRkE9hpS8QuZPyE
GKX+hE6j4D+TD9QqxNRi
=2KJS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc91a1.5050...@obfusk.org



Re: Mail without MUA?

2014-01-07 Thread Brian
On Tue 07 Jan 2014 at 20:58:06 +0100, Erwan David wrote:

> Le 07/01/2014 20:55, Brian a écrit :
> >>
> > How do you know it is postfix? There is nothing here which indictes it.
> > Is it because you know you have postfix installed so that is why you say
> > "looks like postfix".?
> >
> > A misconfiguration? Who knows? It probably doesn't matter for your
> > problem.
> >
> > There are only two ways to get email. Either it is delivered to you or
> > you go and collect it, often with POP3, What method do you use? Have it
> > delivered or go to collect?
> >
> >
> master is the name of the main postfix process.

Interesting. Exim at least has the grace to announce itself under
COMMNAND as "exim4" and under USER as "Debian-exim", so you know where
you are up to.

>  But note that having a
> MTA running won't get emails from the provider pop3 server...

Please give me credit for knowing the difference between mail delivery
and mail collection and the rôle an MTA plays in POP3. You actually
quoted what I said. I don't have a problem with understanding this and
how it integrates into my system; the OP may, but hasn't chosen to say. It 
looks as though he collects with POP3 and delivers locally to Postfix.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107231201.gc3...@copernicus.demon.co.uk



Re: GPT + RAID + boot

2014-01-07 Thread PaulNM
On 01/07/2014 03:20 PM, Joe Pfeiffer wrote:

snip

> 
> Booting with the bios_grub flag set, my raid array isn't assembled
> properly:  the partition with bios_grub set isn't added into the array
> (fortunately, my other disk is good!).
> 
> So:  how can I go about setting up my new disk so I will have a two-disk
> RAID array if both disks are good, and be able to boot with a degraded
> array in the event of either disk failing?
> 

Well, bios_grub and raid aren't flags. They're partition types.

The gpt layout doesn't have as much spare room in it as the older mbr.
Creating a small bios_grub partition gives some space for grub to
install parts of itself.

You need to create a small (recommend 1MB) partition for bios_grub, then
the rest of the drive can be a linux raid partition.

- PaulNM


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc79c5.6010...@paulscrap.com



Re: MTP and Android phones

2014-01-07 Thread Nate Bargmann
* On 2014 07 Jan 09:31 -0600, Dr. Jennifer Nussbaum wrote:
> Hi, i'm running Wheezy. I used to have an older Android phone that
> Just Worked with my system, but I upgraded it to one running Android
> 4.2, and now i can no longer figure out how get it to talk to my
> computer.

I was in the same boat last year.  I have a Motorola Electrify M and
when I plug it in all it does is mount as a CDROM drive with a Windows
executable on it.  I tried it on a Windows machine and the EXE installs
the drivers in Windows that allow it to bypass the USB mass storage
device and activate MTP.  It is running Jelly Bean 4.1.2.

After some frustration and help on a forum I was directed to Air Droid
which let me connect to it via WiFi and the later version allows
connection via the Internet through an Air Droid server, if desired.

I don't know if the WiFi/'Net traffic is encrypted or not, so that might
be something to consider.

- Nate

-- 

"The optimist proclaims that we live in the best of all
possible worlds.  The pessimist fears this is true."

Ham radio, Linux, bikes, and more: http://www.n0nb.us


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107220148.gs5...@n0nb.us



Firefox / Iceweasel displays math formulas in the wrong size

2014-01-07 Thread Edward C Jones
I use up-to-date Debian stable, amd64 port.  Until recently, Firefox 
/Iceweasel would display mathematical formulas with the size and shape 
wrong.  Repeated reloads would fix the problem.  See the Terry Tao blog 
at "http://terrytao.wordpress.com/";. Recently, the formula sizing has 
been working on my system and failing for other users on various systems 
using several browsers.  Anybody have any idea what is causing these 
problems?



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52cc6ccd.1040...@comcast.net



GPT + RAID + boot

2014-01-07 Thread Joe Pfeiffer
My goal here is to be able to have a bootable, running system in the
event of a disk failure.  I've been running two disks in a RAID-1
configuration, with grub installed on both disks, for some time.  My
/etc/mdadm/mdadm.conf is essentially empty, as mdadm has been
successfully finding my RAID partitions and assembling my arrays at boot
time without it.

I've gotten a new 3TB disk (to replacing an old, failing disk), so I'm
setting up my first GPT partition table.

On my old (MBR) disk, parted shows my first partition as

1  32.3kB  1500GB  1500GB  primary  boot, raid

and I'm able to boot successfully.

On my new (GPT) disk, I am only able to install grub if I've set the
bios_grub flag (note that this flag doesn't appear in the man page,
though it does appear in the documentaiton at
http://www.gnu.org/software/parted/manual/parted.html#set) on my
partition.  If I set the boot or legacy_boot flags, I get

snowball:518$ sudo grub-install /dev/sdb
/usr/sbin/grub-setup: warn: This GPT partition label has no BIOS Boot 
Partition; embedding won't be possible!.
/usr/sbin/grub-setup: error: embedding is not possible, but this is required 
for cross-disk install.

Unfortunately, I don't seem to be able to set both the bios_grub and the
raid flags at the same time.  If I set the bios_grub flag, printing the
partition table shows no raid flag; if I set the raid flag, printing the
partition table shows no bios_grub flag.

Booting with the bios_grub flag set, my raid array isn't assembled
properly:  the partition with bios_grub set isn't added into the array
(fortunately, my other disk is good!).

So:  how can I go about setting up my new disk so I will have a two-disk
RAID array if both disks are good, and be able to boot with a degraded
array in the event of either disk failing?
-- 
"Erwin, have you seen the cat?" -- Mrs. Shroedinger


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1bfvoz35op@snowball.wb.pfeifferfamily.net



Re: Mail without MUA?

2014-01-07 Thread Hans
Hi Martin,
> Akonadi also handles POP3 and IMAP access as well as SMTP.
> 
> If its running and accounts are configured to check for mail every x minutes
> Akonadi will do just that in the background.

that is, how it is configured here. So the reason is truely akonadi!
I had already akonadi in suspect, but throw away this thought, as I thought, 
akonadi is just another database.

Hmm, and yes, as kwallet is running in the background, too, and akonadi will 
use it, this explains another thing - akonadi sometimes mourns of wrong 
passwords, when kwallet is not running well. However, akonadi only mourns at 
IMAP accounts (I have only one).

Guess, the problem is solved so far.

However, it was not a big problem, but I disklike it, when I not know, what 
happens - best way, to change this, is learning!

Thank you!

Best regards

Hans


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2500779.lqm0ZCAezm@protheus2



Re: Mail without MUA?

2014-01-07 Thread Martin Steigerwald
Am Dienstag, 7. Januar 2014, 19:36:24 schrieb Hans-J. Ullrich:
> > However a MUA won't download emails from a MTA, but from a POP or IMAP
> > server.
> 
> Yes, of course from the pop3 server of my provider.
> 
> > What makes you think they were "downloaded".
> 
> I think, they were downloaded, for two reasons. First, they are already
> there, when I start my MUA. Second, if I start my other computer, the mails
> I know they were existent, can no more be downloaded, when - and that is
> important now - I started my other debian computer, where I NOT started any
> MUA.
> > Also note that kmail is linked to akonadi which may act silently before
> > you start kmail.
> 
> Hmm, so is akonadi downloading my mails? Thought, akonadi is only a database
> like mysql or postgresql. Am I wrong?

Akonadi also handles POP3 and IMAP access as well as SMTP.

If its running and accounts are configured to check for mail every x minutes 
Akonadi will do just that in the background.

-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2238106.5DGaq9FFPq@merkaba



Re: Mail without MUA?

2014-01-07 Thread Miles Fidelman

Erwan David wrote:

Le 07/01/2014 20:55, Brian a écrit :

On Tue 07 Jan 2014 at 19:58:31 +0100, Hans wrote:


Hi Erwan,

As root do /usr/sbin/lsof -i:25
You'll see what smtp server is on.

Note that a smtp server is needed by several basic Unix utilities (like
cron).

Hmm, looks like postfix.
lsof -i:25
COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
master  10288 root   12u  IPv4  15076  0t0  TCP *:smtp (LISTEN)

So, postfix is listening? Maybe I misconfigured it.

How do you know it is postfix? There is nothing here which indictes it.
Is it because you know you have postfix installed so that is why you say
"looks like postfix".?

A misconfiguration? Who knows? It probably doesn't matter for your
problem.

There are only two ways to get email. Either it is delivered to you or
you go and collect it, often with POP3, What method do you use? Have it
delivered or go to collect?



master is the name of the main postfix process. But note that having a
MTA running won't get emails from the provider pop3 server...

Typically, you should also see a couple of smtpd processes as well as 
master.  Install the psmisc process and run pstree to get a handle on 
what's running, which processes own which other processes, and the order 
in which they all came up.


What's also missing here, is what DNS records are being advertised about 
your box.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52cc612a.1070...@meetinghouse.net



Re: stable mix testing

2014-01-07 Thread Ralf Mardorf
On Tue, 07 Jan 2014 20:16:55 +0100, Pol Hallen   
wrote:

apt-get upgrade

The following packages will be upgraded:
libfaac0 libsqlite3-0 mate-backgrounds mate-icon-theme mate-themes

Also commenting mate repository I've same problem. I need keep debian  
stable and upgrade only one package. Is this because mate has become to  
debian (testing?). How keep whole debian stable and install a package  
(only one yes -) from testing? Any idea?


Don't run an upgrade, simply force to install a version of that one  
package you want to upgrade.
OTOH even if you try to do it this way, by forcing to install one package  
by a special version, it could happen that other packages, that are  
dependent, need to be upgraded too.


Perhaps you could build a package for this one what-ever-it-is and install  
this special version to opt?


You should provide the relevant info. What should be updated to a testing  
version and why should it be updated?



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/op.w9b2l7p3qhadp0@suse11-2



Re: Mail without MUA?

2014-01-07 Thread Hans

> master is the name of the main postfix process. But note that having a
> MTA running won't get emails from the provider pop3 server...
Exactly! Master pointed me to postfix. But this does not explain, why I got the 
mails from the pop3 server.

I changed now postfix, so I get 

lsof -i:25
COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
master  24703 root   12u  IPv4 334547  0t0  TCP localhost:smtp (LISTEN)

Now it isu listening only to localhost and no more to all (see my mails 
before, there was an asterix instead of "localhost").

I will watch this! Hope now, it will be fixed. Otherwise please allow me to ask 
again.

Thank you very much for all the help. If it is fixed, I will tell you, 
promised!

Best 

Hans


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2063188.JB4MC7xXXL@protheus2



Re: Mail without MUA?

2014-01-07 Thread Erwan David
Le 07/01/2014 20:55, Brian a écrit :
> On Tue 07 Jan 2014 at 19:58:31 +0100, Hans wrote:
>
>> Hi Erwan,
>>> As root do /usr/sbin/lsof -i:25
>>> You'll see what smtp server is on.
>>>
>>> Note that a smtp server is needed by several basic Unix utilities (like
>>> cron).
>> Hmm, looks like postfix. 
>> lsof -i:25
>> COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
>> master  10288 root   12u  IPv4  15076  0t0  TCP *:smtp (LISTEN)
>>
>> So, postfix is listening? Maybe I misconfigured it. 
> How do you know it is postfix? There is nothing here which indictes it.
> Is it because you know you have postfix installed so that is why you say
> "looks like postfix".?
>
> A misconfiguration? Who knows? It probably doesn't matter for your
> problem.
>
> There are only two ways to get email. Either it is delivered to you or
> you go and collect it, often with POP3, What method do you use? Have it
> delivered or go to collect?
>
>
master is the name of the main postfix process. But note that having a
MTA running won't get emails from the provider pop3 server...


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc5c4e.2030...@rail.eu.org



How to understand which access control mechanism is in use for X server?

2014-01-07 Thread Martin T
Hi,

there are multiple access control mechanisms for X server like access based
on host(xhost) or access based on cookie(xauth). Are both usually enabled
at the same time? If yes, then which one is checked first? Are both active?
I mean for example once I enable host with xhost, then do I need to
configure xauth as well?



regards,
Martin


Re: Mail without MUA?

2014-01-07 Thread Brian
On Tue 07 Jan 2014 at 19:58:31 +0100, Hans wrote:

> Hi Erwan,
> > As root do /usr/sbin/lsof -i:25
> > You'll see what smtp server is on.
> > 
> > Note that a smtp server is needed by several basic Unix utilities (like
> > cron).
> 
> Hmm, looks like postfix. 
> lsof -i:25
> COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
> master  10288 root   12u  IPv4  15076  0t0  TCP *:smtp (LISTEN)
> 
> So, postfix is listening? Maybe I misconfigured it. 

How do you know it is postfix? There is nothing here which indictes it.
Is it because you know you have postfix installed so that is why you say
"looks like postfix".?

A misconfiguration? Who knows? It probably doesn't matter for your
problem.

There are only two ways to get email. Either it is delivered to you or
you go and collect it, often with POP3, What method do you use? Have it
delivered or go to collect?


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107195539.gb3...@copernicus.demon.co.uk



Re: SteamOS: Derived from Debian 7

2014-01-07 Thread Alex S.
On Tue, 07 Jan 2014 08:48:25 -0800
David Guntner  wrote:

> Hmmm, I guess you're creating a "SteamMachine" in the sense that the
> install software will completely wipe out whatever is already on the
> hard drive (is that what you were referring to?).


No, no. I mean that there will be (in fact, already are, but not quite
reached the market yet) the original console device by Valve, called
"SteamMachine", with SteamOS as it's operating system. There'll be many
different flavours of "SteamMachines" with different hardware specs.
SteamOS is pretty much the side result of a SteamMachine campaign.
While it's possible to install SteamOS on your PC, I just don't
see much sense in it, to be honest, as every game ported to SteamOS,
should also work on Ubuntu/Debian/whatever.

I'm aware that SteamOS should be a pretty full-featured Linux
distribution (at least, I hope so, and it looks this way). Still, Valve
themselves say "SteamOS will not replace your primary OS, it is a
"living room OS"", which obfuscates things a bit. So I guess the only
way to find out for sure what it's really about is to go ahead and
install it. 

-- 
Time is an illusion. Lunchtime doubly so.

Best wishes,
Alex S.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107210958.2d7c7...@mail.ukrtelecom.ua



Re: Mail without MUA?

2014-01-07 Thread Slavko
Ahoj,

Dňa Tue, 07 Jan 2014 19:58:31 +0100 Hans  napísal:

> Hmm, looks like postfix. 
> lsof -i:25
> COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
> master  10288 root   12u  IPv4  15076  0t0  TCP *:smtp (LISTEN)

try this (as root):

netstat -tnlp | grep 25
tcp0  0 127.0.0.1:250.0.0.0:*
LISTEN  4153/exim4
^^

(text wrapped) The "p" option gives name of the process.

regards

-- 
Slavko
http://slavino.sk


signature.asc
Description: PGP signature


stable mix testing

2014-01-07 Thread Pol Hallen
Hi all! I've a strange problem: debian stable with mate desktop: with 
only stable sources list I don't have any upgrade to do, I added testing 
repository like it:


/etc/apt/sources.list

# STABLE
deb http://ftp.it.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.it.debian.org/debian/ stable main contrib non-free
deb http://security.debian.org/ stable/updates main contrib non-free
deb-src http://security.debian.org/ stable/updates main contrib non-free
# MATE
deb http://repo.mate-desktop.org/debian wheezy main
# TESTING
deb http://ftp.it.debian.org/debian/ testing main contrib non-free

/etc/apt/preferences

Package: *
Pin: release a=stable
Pin-Priority: 700

Package: *
Pin: release a=testing
Pin-Priority: 500

apt-get upgrade

The following packages will be upgraded:
libfaac0 libsqlite3-0 mate-backgrounds mate-icon-theme mate-themes

Also commenting mate repository I've same problem. I need keep debian 
stable and upgrade only one package. Is this because mate has become to 
debian (testing?). How keep whole debian stable and install a package 
(only one yes -) from testing? Any idea?


thanks!

--
Pol


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52cc52a7.5030...@fuckaround.org



Re: Mail without MUA?

2014-01-07 Thread Hans
Hi Erwan,
> As root do /usr/sbin/lsof -i:25
> You'll see what smtp server is on.
> 
> Note that a smtp server is needed by several basic Unix utilities (like
> cron).

Hmm, looks like postfix. 
lsof -i:25
COMMAND   PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
master  10288 root   12u  IPv4  15076  0t0  TCP *:smtp (LISTEN)

So, postfix is listening? Maybe I misconfigured it. 

Hans


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2954357.lZzOeGVcxx@protheus2



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Lisi Reisz
On Tuesday 07 January 2014 17:38:18 Nitebirdz wrote:
> In any case, isn't it strange that Linux won't boot because it
> "can't correctly detect memory map" on a system with only 1GB of
> memory? Are we sure that's the root of the problem? Is it possible
> to run a live distro from CD, for instance?

As far as I can see, Long Wind is the only person who _does_ think 
that.

No-one has persuaded him to run one.  He says that he tried to boot 
Knoppix 7, but it failed (??).  He may have tried to boot the DVD of 
Knoppix 7.x, which might well fail due to lack of memory.

A complete inability to run any form of Linux sounds to me more likely 
to be PEBKAC than anything else, given that he reckons that the 
hardware is O.K.  It can run XP!! :-/

Lisi


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201401071851.07108.lisi.re...@gmail.com



Re: Mail without MUA?

2014-01-07 Thread Erwan David
Le 07/01/2014 19:40, Hans a écrit :
> Hi Miles,
>> What Erwan said.  Sounds more like SMTP mail being processed by your
>> MTA, with local delivery.
>>
> Yes, I believe, there is an MTA running, and yes, it is smtp, but which one? 
> Is it postfix? Postfix is configured as "local". Exim is NOT installed. Do 
> not 
> know, if procmail is involved. So I need a clue, where to look at. 
>> Miles Fidelman
> Hans
>
>

As root do /usr/sbin/lsof -i:25
You'll see what smtp server is on.

Note that a smtp server is needed by several basic Unix utilities (like
cron).


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc4a88.3040...@rail.eu.org



Re: Mail without MUA?

2014-01-07 Thread Hans
Hi Miles,
> What Erwan said.  Sounds more like SMTP mail being processed by your
> MTA, with local delivery.
> 

Yes, I believe, there is an MTA running, and yes, it is smtp, but which one? 
Is it postfix? Postfix is configured as "local". Exim is NOT installed. Do not 
know, if procmail is involved. So I need a clue, where to look at. 
> Miles Fidelman

Hans


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2158321.vGO4rpeWYW@protheus2



Re: Mail without MUA?

2014-01-07 Thread Hans-J. Ullrich

> However a MUA won't download emails from a MTA, but from a POP or IMAP
> server.

Yes, of course from the pop3 server of my provider.
> 
> What makes you think they were "downloaded".
> 
I think, they were downloaded, for two reasons. First, they are already there, 
when I start my MUA. Second, if I start my other computer, the mails I know 
they were existent, can no more be downloaded, when - and that is important 
now - I started my other debian computer, where I NOT started any MUA.

> Also note that kmail is linked to akonadi which may act silently before
> you start kmail.

Hmm, so is akonadi downloading my mails? Thought, akonadi is only a database 
like mysql or postgresql. Am I wrong?

Hans


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4299522.H9zUJ74cZO@protheus7



Re: Mail without MUA?

2014-01-07 Thread Miles Fidelman

Erwan David wrote:

Le 07/01/2014 19:10, Brian a écrit :

On Tue 07 Jan 2014 at 18:33:06 +0100, Hans wrote:


I am wondering, why debian has already downloaded, although I got no MUA
started. When I start kmail, all mails are already downloaded.

Do you have any clue, where I can look, and which MTA might be resp0onsible
for it? I suspected postfix, but it looks like there is another MTA running.
Weird too, that this one must know my passwords for mail.

Exim's logs are in /var/log/exim4; Postfix may use /var/log/mail*. Have
a root around there. Also,

   ps ax | grep 

for a running daemon.



However a MUA won't download emails from a MTA, but from a POP or IMAP
server.

What makes you think they were "downloaded".

Also note that kmail is linked to akonadi which may act silently before
you start kmail.


What Erwan said.  Sounds more like SMTP mail being processed by your 
MTA, with local delivery.


Miles Fidelman


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52cc4804.7090...@meetinghouse.net



Re: Mail without MUA?

2014-01-07 Thread Erwan David
Le 07/01/2014 19:10, Brian a écrit :
> On Tue 07 Jan 2014 at 18:33:06 +0100, Hans wrote:
>
>> I am wondering, why debian has already downloaded, although I got no MUA 
>> started. When I start kmail, all mails are already downloaded. 
>>
>> Do you have any clue, where I can look, and which MTA might be resp0onsible 
>> for it? I suspected postfix, but it looks like there is another MTA running. 
>> Weird too, that this one must know my passwords for mail.
> Exim's logs are in /var/log/exim4; Postfix may use /var/log/mail*. Have
> a root around there. Also,
>
>   ps ax | grep 
>
> for a running daemon.
>
>
However a MUA won't download emails from a MTA, but from a POP or IMAP
server.

What makes you think they were "downloaded".

Also note that kmail is linked to akonadi which may act silently before
you start kmail.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc4410.2090...@rail.eu.org



Re: Mail without MUA?

2014-01-07 Thread Brian
On Tue 07 Jan 2014 at 18:33:06 +0100, Hans wrote:

> I am wondering, why debian has already downloaded, although I got no MUA 
> started. When I start kmail, all mails are already downloaded. 
> 
> Do you have any clue, where I can look, and which MTA might be resp0onsible 
> for it? I suspected postfix, but it looks like there is another MTA running. 
> Weird too, that this one must know my passwords for mail.

Exim's logs are in /var/log/exim4; Postfix may use /var/log/mail*. Have
a root around there. Also,

  ps ax | grep 

for a running daemon.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/07012014180557.f138a47e9...@desktop.copernicus.demon.co.uk



Re: MTP and Android phones

2014-01-07 Thread Brad Sawatzky
On Tue, 07 Jan 2014, Dr. Jennifer Nussbaum wrote:

> Wait, so explain how i can get my phone connected to my computer?
> There have now been several different and contradicting explanations
> :-(

I have used go-mtpfs with my nexus4, nexus5, and nexus10 under wheezy
and it works well.

-- Brad


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107180742.ga30...@aether.jlab.org



Re: Connot load Wheezy in a "virgin" desktop -- long

2014-01-07 Thread Henning Follmann
On Mon, Jan 06, 2014 at 06:25:24PM -0500, Ken Heard wrote:
> I apologize in advance for the length of this post.  Since however I do not
> know what information is necessary to determine why this installation
> failed I am including everything which I have the least suspicion may be
> contributing to the failure.
> 
> To begin I describe the essentials of my recently purchased custom designed
> desktop.  It consists of a Gigabyte GA-Z87N mainboard, the Z87N being one
> of Intel's latest Haswell chipsets.  Integrated in that processor is
> Intel's HD graphics 4600, the mainboard having the required graphics
> outputs.  Two 2 terabyte hard drives are designated as a RAID1.
> 
> I started out with the intention of  installing only the basic system,
> thereby shortening  reinstalment processes if for any reason I needed to
> start the installer over again -- such as to change the partitioning.  At
> this stage for example I tried to install UEFI.  Since I was unsuccessful I
> reverted to the standard BIOS.  My experience trying to install UEFI will
> be the subject of another thread.
> 
> Since Dec 31 when I started this process I have lost count of the number of
> false starts.  My guess is that since then I ended up initiating the
> installer about fifteen times.
> 

So did you try to run the netinst cd with just the suggested (by the
installer) options. Basically just pressing enter, provide a root paaswd
and a user and passwd for the user?
That did fail? And how exactly?

> When I thought everything was ready to install the desktop environment (DE)
> and other things I tried to do so manually by installing xserver-xorg and
> xfce meta packages.  This method was unsuccessful. Examination of log files
> indicated that much was missing, including whatever package contains
> startx.  (Running startx in a virtual terminal returned the message
> "command not found".)

Again, what do you mean by "everything was ready"?
Did you have a running system? Did it boot into console?
If you want to install a desktop environment it is always best to do that
either by tasksel or selecting one of the meta packages:
apt-get install xfce4
should install all you need.


> 
> I then decided to allow the installer to install the DE and other selected
> tasks; to do so however required initiating the installer once again -- in
> fact twice.  First I set up in the partition section of the installer with
> xfs file type in most of my partitions with lilo as the boot loader, but
> the installer would not install lilo.  (Does xfs still require lilo instead
> of grub?)
> 
> The second time I used the ext4 file type with grub as the boot loader.
> The boot process aborted with a  "failed" message.  To see what would
> happen  I typed Control-D to resume the boot.  In due course the xfce login
> window appeared.  After entering my user name and password the monitor went
> blank.  At this point the computer was totally unresponsive to any input.
> I had to reboot.
>

Again, please be precise with your error messages:
At what point did it abort with the failed message. What exactly did fail?
Some amd64 systems seems to have an issue with the grub-efi.
Changing to legacy BIOS should safe that issue.


 
> This boot ran to the point where the line containing Control-D appeared.
> This time I entered the root password in order to examine the output of the
> dmesg command, various log files and the information which scrolls by on
> the monitor while the OS is loading -- and perhaps glean some idea of why
> the DE would not load.

You keep repeating "DE would not load". What actually do you mean by that?
Does the computer boot? Do you try to start X manually and that fails?

> 
> The first problem encountered was that something was detecting and enabling
> the Logitech USB optical mouse many times, even to the point of
> interrupting other commands and their outputs.  I solved that problem -- at
> least temporarily -- by disconnecting it.  In a virtual terminal it is
> anyway not needed.
> 
> The first part of the dmesg output which scares me reads as follows.
> -
> [0.00] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64
> root=/dev/mapper/TG1-root ro single
> [0.00] PID hash table entries: 4096 (order: 3, 32768 bytes)
> [0.00] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
> [0.00] Checking aperture...
> [0.00] No AGP bridge found
> [0.00] Calgary: detecting Calgary via BIOS EBDA area
> [0.00] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
> [0.00] [ cut here ]
> [0.00] WARNING: at
> /build/linux-rrsxby/linux-3.2.51/drivers/iommu/dmar.c:492
> warn_invalid_dmar+0x77/0x85()
> [0.00] Hardware name: Z87N-WIFI
> [0.00] Your BIOS is broken; DMAR reported at address 0!
> [0.00] BIOS vendor: American Megatrends Inc.; Ver: F4; Product
>

Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Nitebirdz
On Tue, Jan 07, 2014 at 05:04:26PM +, Lisi Reisz wrote:
> On Tuesday 07 January 2014 15:45:39 Nitebirdz wrote:
> > On Tue, Jan 07, 2014 at 09:03:03AM -0500, Long Wind wrote:
> > > I can't boot many Linux, probably because linux can't correctly
> > > detect memory map
> 
> > Would the following links help?
> >
> > http://stackoverflow.com/questions/1911473/force-linux-to-use-only-
> >memory-over-4g
> 
> He only has 1G memory.
> 
> Lisi
> 

Sorry, Lisi. I didn't see any reference to that in the previous email. In
that case, the second link might be of more help. The following exchange
on a web forum may also help clarify the syntax:

http://ubuntuforums.org/showthread.php?t=860631

In any case, isn't it strange that Linux won't boot because it "can't
correctly detect memory map" on a system with only 1GB of memory? Are we
sure that's the root of the problem? Is it possible to run a live distro 
from CD, for instance? 

-- 
Nitebirdz
http://www.sacredchaos.com/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107173817.gb11...@istanbul.sacredchaos.com



Re: MTP and Android phones

2014-01-07 Thread Paul Cartwright

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 01/07/2014 12:31 PM, Darac Marjal wrote:
> On Tue, Jan 07, 2014 at 12:23:47PM -0500, Paul Cartwright wrote:
>> On 01/07/2014 11:50 AM, Dr. Jennifer Nussbaum wrote:
>>> On Tuesday, January 7, 2014 11:43 AM, Vincent Lefevre
 wrote:
>>>
>>> On 2014-01-07 15:46:10 +, Darac Marjal wrote:
>>>  what do you get when you type the command:
>>> $lsusb
>>> . (SNIP a bunch of entries)
>>> Bus 001 Device 027: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100
>>> Phone [Galaxy S II], GT-P7500 [Galaxy Tab 10.1]
>>>
>>>
>>> and that is wrong, it is showing my galaxy tab 3, which isn't plugged
>>> in. My Galaxy S3 is plugged in..
>
> Just be aware that the only reliable information lsusb gets from the
> device is the manufacturer/device id (04e8:6860 in your case). It then
> looks up what that device is in a database on your computer. If the
> database is out of date (hint: sudo update-usbids), then the
> human-readable description will be wrong. Basically, it's possible that
> the S2, the Tab 10.1 and the S3 all share the same device id.
>
I just unplugged and plugged back in my phone and got this from lsusb:
Bus 001 Device 028: ID 04e8:685e Samsung Electronics Co., Ltd GT-I9100
Phone [Galaxy S II] (USB Debugging mode)

then ran your update-usbids, then ran lsusb again and got this:
Bus 001 Device 029: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100
Phone [Galaxy S II], GT-I9300 Phone [Galaxy S III], GT-P7500 [Galaxy Tab
10.1]




- -- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJSzDqsAAoJEFOC6wwM39g1O18H/jnC5Ka/pGDPZ4sAdpd52/Xb
NaqJr/9h/2ON/ePAcGjlSTvI6caccKgCg7EJsajx89aDXZzsn94TCzMsWFq37zwq
Ytr4rz23Fu6iYo2rcTYXKqFdbRoFH9uX2NGZH+2EurizNLYkYr9lM11/l2ah6btp
tNX38lW7bJNHpFFx6KnZV4PgZhuO5Y73mLfiBdbcKNnpWuKvpzKNX8MMj0p4oDdD
H/ZpPT8koXlpPMDlT1msr8HVGKie9aX5K/rPu4t96ZpMIpoE2YwJ3TvVZlnRzx3k
Q7ly4/bQHtaF4MVJhpRwV5k1bD7soV0spFvXB1G6Or8H/B5VnCtVcnRgY/8q2Tg=
=um88
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc3aac.60...@gmail.com



Mail without MUA?

2014-01-07 Thread Hans
Hi folks,

I am wondering, why debian has already downloaded, although I got no MUA 
started. When I start kmail, all mails are already downloaded. 

Do you have any clue, where I can look, and which MTA might be resp0onsible 
for it? I suspected postfix, but it looks like there is another MTA running. 
Weird too, that this one must know my passwords for mail.

Thanks for any hints.

Best

Hans 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/16951742.mNnjdWOgBZ@protheus2



Re: MTP and Android phones

2014-01-07 Thread Darac Marjal
On Tue, Jan 07, 2014 at 12:23:47PM -0500, Paul Cartwright wrote:
> On 01/07/2014 11:50 AM, Dr. Jennifer Nussbaum wrote:
> > On Tuesday, January 7, 2014 11:43 AM, Vincent Lefevre  
> > wrote:
> >
> > On 2014-01-07 15:46:10 +, Darac Marjal wrote:
> >>> MTPFS is only available in Squeeze and Sid.
> >>> http://packages.debian.org/search?keywords=mtpfs 
> >> But it doesn't work with Android phones.
> > Wait, so explain how i can get my phone connected to my computer? There 
> > have now been several different and contradicting explanations :-(
> >
> >
> what do you get when you type the command:
> $lsusb
> . (SNIP a bunch of entries)
> Bus 001 Device 027: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100
> Phone [Galaxy S II], GT-P7500 [Galaxy Tab 10.1]
> 
> 
> and that is wrong, it is showing my galaxy tab 3, which isn't plugged
> in. My Galaxy S3 is plugged in..

Just be aware that the only reliable information lsusb gets from the
device is the manufacturer/device id (04e8:6860 in your case). It then
looks up what that device is in a database on your computer. If the
database is out of date (hint: sudo update-usbids), then the
human-readable description will be wrong. Basically, it's possible that
the S2, the Tab 10.1 and the S3 all share the same device id.



signature.asc
Description: Digital signature


Re: MTP and Android phones

2014-01-07 Thread Paul Cartwright
On 01/07/2014 11:50 AM, Dr. Jennifer Nussbaum wrote:
> On Tuesday, January 7, 2014 11:43 AM, Vincent Lefevre  
> wrote:
>
> On 2014-01-07 15:46:10 +, Darac Marjal wrote:
>>> MTPFS is only available in Squeeze and Sid.
>>> http://packages.debian.org/search?keywords=mtpfs 
>> But it doesn't work with Android phones.
> Wait, so explain how i can get my phone connected to my computer? There have 
> now been several different and contradicting explanations :-(
>
>
what do you get when you type the command:
$lsusb
. (SNIP a bunch of entries)
Bus 001 Device 027: ID 04e8:6860 Samsung Electronics Co., Ltd GT-I9100
Phone [Galaxy S II], GT-P7500 [Galaxy Tab 10.1]


and that is wrong, it is showing my galaxy tab 3, which isn't plugged
in. My Galaxy S3 is plugged in..

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc3823.1030...@gmail.com



Re: why linux can't see my memory

2014-01-07 Thread Ralf Mardorf
On Tue, 2014-01-07 at 12:01 -0500, Miles Fidelman wrote:
> Lisi Reisz wrote:
> > On Tuesday 07 January 2014 00:22:19 Scott Ferguson wrote:
> >> On 06/01/14 23:48, Long Wind wrote:
> >>> knoppix CD doesn't seem to be able to boot
> >> If Knoppix can't boot I'd be very surprised.
> > He may be using a Knoppix DVD, for which he has not got enough memory.
> I'll repeat my suggestion of SystemRescueCD as a good LiveCD for 
> diagnostic purposes.

At what point does a

Knoppix
SystemRescueCD
Puppy Linux
GParted Live

or any other live media stop startup?

If the small Live Linux you use should come with a picture during
startup, press Esc or F1 to F12, one of the keys should make the startup
messages visible.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1389114548.660.36.camel@archlinux



Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Lisi Reisz
On Tuesday 07 January 2014 15:45:39 Nitebirdz wrote:
> On Tue, Jan 07, 2014 at 09:03:03AM -0500, Long Wind wrote:
> > I can't boot many Linux, probably because linux can't correctly
> > detect memory map

> Would the following links help?
>
> http://stackoverflow.com/questions/1911473/force-linux-to-use-only-
>memory-over-4g

He only has 1G memory.

Lisi


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201401071704.26244.lisi.re...@gmail.com



Re: why linux can't see my memory

2014-01-07 Thread Miles Fidelman

Lisi Reisz wrote:

On Tuesday 07 January 2014 00:22:19 Scott Ferguson wrote:

On 06/01/14 23:48, Long Wind wrote:

knoppix CD doesn't seem to be able to boot

If Knoppix can't boot I'd be very surprised.

He may be using a Knoppix DVD, for which he has not got enough memory.
I'll repeat my suggestion of SystemRescueCD as a good LiveCD for 
diagnostic purposes.


Miles





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/52cc32f2.5000...@meetinghouse.net



Re: MTP and Android phones

2014-01-07 Thread Erwan David
Le 07/01/2014 17:14, Brad Sawatzky a écrit :
> On Tue, 07 Jan 2014, Dr. Jennifer Nussbaum wrote:
>
>> Ive Googled and tried to read up about MTP, but im still not sure how
>> to get things working--different sites have you download and compile
>> things from scratch, which seems crazy that you can't just plug your
>> phone in. I did install mtp-tools, but i can't find mtpfs that many of
>> the sites say you need to have.
> Yeah, MTP is a pain.  I wish there was at least a choice for a standard
> USB generic mass storage mount option...  oh well.
There is on my wiko stairway...


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc31c1.3040...@rail.eu.org



Re: MTP and Android phones

2014-01-07 Thread Erwan David
Le 07/01/2014 16:28, Dr. Jennifer Nussbaum a écrit :
> Hi, i'm running Wheezy. I used to have an older Android phone that
> Just Worked with my system, but I upgraded it to one running Android
> 4.2, and now i can no longer figure out how get it to talk to my computer.
>
> Ive Googled and tried to read up about MTP, but im still not sure how
> to get things working--different sites have you download and compile
> things from scratch, which seems crazy that you can't just plug your
> phone in. I did install mtp-tools, but i can't find mtpfs that many of
> the sites say you need to have.
>
> All i want is to be able to plug my phone in via USB and have it
> visible in the filesystem, whether through Thunar or on the
> commandline. Being able to have it work with Banshee wuold be nice
> too, but i assume that if the phone is visible then it will work with
> any tools.
>
> Thank you.
>
> Jen

On jessie, with kde I can connect in MTP mode. However it only works
when I plug the phone on USB3 ports (on usb2 mtp-detect detects a mtp
device, but not mtp-probe)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52cc319c.60...@rail.eu.org



Re: MTP and Android phones

2014-01-07 Thread Dr. Jennifer Nussbaum

On Tuesday, January 7, 2014 11:43 AM, Vincent Lefevre  
wrote:

On 2014-01-07 15:46:10 +, Darac Marjal wrote:
>
>> MTPFS is only available in Squeeze and Sid.
>> http://packages.debian.org/search?keywords=mtpfs 
>But it doesn't work with Android phones.

Wait, so explain how i can get my phone connected to my computer? There have 
now been several different and contradicting explanations :-(


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1389113419.6072.yahoomail...@web124503.mail.ne1.yahoo.com



Re: SteamOS: Derived from Debian 7

2014-01-07 Thread David Guntner
Alex S. grabbed a keyboard and wrote:
> 
> On Mon, 06 Jan 2014 19:54:12 -0800
> David Guntner  wrote:
> 
>> Anyone else here think this is awesome news? :-)
> 
> It surely is! Though SteamOS, I believe, is gonna see much more use
> on SteamMachines, than on PCs, and personally, I'm not a console guy,
> but all the SteamOS-compatible games should be reverse
> Linux-compatible, and that's great. It's a pity though, that
> Steam client doesn't work on Wheezy out of the box, that's part of the
> reason I decided to move on to Testing/Sid again. In any case, Valve
> are responsible for my return to gaming after 4 or 5 years almost
> completely out of the gaming world after ditching Windows completely. 

Go check the pages in the links in that - you set up your own machine
with the software, and it gives you desktop access so you can configure
things to your heart's content.  Hmmm, I guess you're creating a
"SteamMachine" in the sense that the install software will completely
wipe out whatever is already on the hard drive (is that what you were
referring to?).  I think the point is that there are people who want to
play games on their TV (the console crowd) but don't necessarily want to
have their regular computer that they do their other work on in the
living room.

Anyway, I think it's great that they're doing it, and that the Linux
flavor they chose to build it off of is Debian.  I think that may well
give our favorite flavor a bit more exposure to a wider audience ("well,
it's the basis for my SteamMachine's OS; maybe I should check it out for
my PC needs!").  Well, it's a thought, anyway. :-)

   --Dave




smime.p7s
Description: S/MIME Cryptographic Signature


Re: MTP and Android phones

2014-01-07 Thread Vincent Lefevre
On 2014-01-07 15:46:10 +, Darac Marjal wrote:
> MTPFS is only available in Squeeze and Sid.
> http://packages.debian.org/search?keywords=mtpfs 

But it doesn't work with Android phones.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107163532.ge...@ypig.lip.ens-lyon.fr



Re: since last upgrade unable to upgrade, install whatever...

2014-01-07 Thread Vincent Lefevre
On 2014-01-07 17:01:48 +0100, François Patte wrote:
> Le 06/01/2014 12:28, Selim T. Erdogan a écrit :
> > Actually, after looking at 
> > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734256,
> > what you could do is to remove apt-listbugs, install ruby1.9.1, 
> 
> install ruby1.9 will install 188 new packages on my system... is it
> sensible?

There should be no additional packages: ruby1.9.1 just depends on

  libruby1.9.1 (= 1.9.3.484-1), libc6 (>= 2.2.5)

which should already be installed on your machine if you have
apt-listbugs.

If you used apt-get, try with --no-install-recommends.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107163434.gd...@ypig.lip.ens-lyon.fr



Jwm desktop background image

2014-01-07 Thread Ralf Mardorf
Hi,

I found out that setting up a wallpaper does work like this:

[...]
  
  Esetroot -m /usr/share/wallpapers/Grass/contents/images/1280x1024.jpg
  
[...]

The Debian example file and explanations in the Internet claim that this
should work too:

[...]
   
[...]
  /usr/share/wallpapers/Grass/contents/images/1280x1024.jpg
[...]
   
[...]

This doesn't work on my machine.

Any ideas?

Regards,
Ralf


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1389112873.660.26.camel@archlinux



Re: unable to install stardict

2014-01-07 Thread Vincent Lefevre
On 2014-01-07 10:21:26 -0600, green wrote:
> Vincent Lefevre wrote at 2014-01-06 19:45 -0600:
> > On 2014-01-05 21:58:12 -0600, green wrote:
> > > I recommend "sdcv", which is the StarDict equivalent of "dict", but
> > > requiring no dictd server.
> > 
> > Thanks. I've reported the following bugs:
> 
> >   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734409
> > sdcv: doesn't word-wrap
> 
> You can use `fold` for that.  In fact, here is what I use:
> 
> $ sdcv -n --utf8-output --color "$@" 2>&1 | fold --width=$COLUMNS | less -FRX

But this can't be used in interactive mode (though one doesn't lose
anything compared to dict, since dict doesn't have an intereactive
mode).

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107163946.gf...@ypig.lip.ens-lyon.fr



Re: unable to install stardict

2014-01-07 Thread green
Vincent Lefevre wrote at 2014-01-06 19:45 -0600:
> On 2014-01-05 21:58:12 -0600, green wrote:
> > I recommend "sdcv", which is the StarDict equivalent of "dict", but
> > requiring no dictd server.
> 
> Thanks. I've reported the following bugs:

>   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734409
> sdcv: doesn't word-wrap

You can use `fold` for that.  In fact, here is what I use:

$ sdcv -n --utf8-output --color "$@" 2>&1 | fold --width=$COLUMNS | less -FRX

The `--color` option is new in 0.5.0, and you may need to use
`$(tput cols)` instead of `$COLUMNS` if running from a script.


signature.asc
Description: Digital signature


Re: MTP and Android phones

2014-01-07 Thread Brad Sawatzky
On Tue, 07 Jan 2014, Dr. Jennifer Nussbaum wrote:

> Ive Googled and tried to read up about MTP, but im still not sure how
> to get things working--different sites have you download and compile
> things from scratch, which seems crazy that you can't just plug your
> phone in. I did install mtp-tools, but i can't find mtpfs that many of
> the sites say you need to have.

Yeah, MTP is a pain.  I wish there was at least a choice for a standard
USB generic mass storage mount option...  oh well.

The best MTP software I've found is go-mtpfs.  Unfortunately I don't
think it is packaged, but it is easy to build and put in $HOME/bin/
It uses FUSE like the other options, but is _much_ faster.  You can find
it here:
  https://github.com/hanwen/go-mtpfs

If you're going to build it yourself, you'll need to install these
packages first:
% apt-get install golang-go golang-src libusb-1.0-0 libusb-1.0-0-dev

There seem to be pre-compiled binaries you can download too (YMMV with
those).  You'll probably need to install the libusb-1.0-0 library
anyway.

I just mount/unmount manually.  One could write a udev/udisks2 rule to
automate this I suppose.

HTH,
-- Brad


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107161432.ga20...@enigma.swatter.net



Re: since last upgrade unable to upgrade, install whatever...

2014-01-07 Thread François Patte
Le 06/01/2014 12:28, Selim T. Erdogan a écrit :
> François Patte,  6.01.2014:
>> Le 06/01/2014 11:38, Selim T. Erdogan a écrit :
>>> Erwan David,  6.01.2014:
 On Mon, Jan 06, 2014 at 11:24:44AM CET, François Patte 
  said:
> Bonjour,
>
> Since the last upgrade, I am unable to run any apt command (install,
> upgrade...) all end like this:
>
> /usr/lib/ruby/vendor_ruby/debian.rb:24:in `require': no such file to
> load -- debian_version (LoadError)
>   from /usr/lib/ruby/vendor_ruby/debian.rb:24
>   from /usr/sbin/apt-listbugs:269:in `require'
>   from /usr/sbin/apt-listbugs:269
> E: Sub-process /usr/sbin/apt-listbugs apt || exit 10 returned an error
> code (10)
> E: Failure running script /usr/sbin/apt-listbugs apt || exit 10
>
>
> file debian_version is on my system.
>
> What to do?

 Bug is in ruby-debian which does not provide debian_version.so for ruby 1.8

 You may comment out everything in /etc/apt.conf.d/10apt-listbugs until it 
 is fixed.
>>>
>>> Another option would be to remove the apt-listbugs package (temporarily)...
>>
>> and install bugged upgrade without any warning?
> 
> That's what I would do, though you might want to check bug reports for 
> "critical" packages, to be on the safe side.  Hopefully the bug will be 
> fixed soon and you can reinstall apt-listbugs.
> 
> Actually, after looking at 
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734256,
> what you could do is to remove apt-listbugs, install ruby1.9.1, 

install ruby1.9 will install 188 new packages on my system... is it
sensible?


-- 
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP5, UMR 8145
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 8394 5849
http://www.math-info.univ-paris5.fr/~patte



signature.asc
Description: OpenPGP digital signature


Re: why linux can't see my memory

2014-01-07 Thread Lisi Reisz
On Tuesday 07 January 2014 00:22:19 Scott Ferguson wrote:
> On 06/01/14 23:48, Long Wind wrote:
> > knoppix CD doesn't seem to be able to boot
>
> If Knoppix can't boot I'd be very surprised.

He may be using a Knoppix DVD, for which he has not got enough memory.

Lisi


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201401071557.06561.lisi.re...@gmail.com



Re: MTP and Android phones

2014-01-07 Thread Dr. Jennifer Nussbaum





On Tuesday, January 7, 2014 10:46 AM, Darac Marjal  
wrote:
 
On Tue, Jan 07, 2014 at 07:28:06AM -0800, Dr. Jennifer Nussbaum wrote:
>>    Hi, i'm running Wheezy. I used to have an older Android phone that Just
>>    Worked with my system, but I upgraded it to one running Android 4.2, and
>>    now i can no longer figure out how get it to talk to my computer.
>>    Ive Googled and tried to read up about MTP, but im still not sure how to
>>    get things working--different sites have you download and compile things
>>    from scratch, which seems crazy that you can't just plug your phone in. I
>>    did install mtp-tools, but i can't find mtpfs that many of the sites say
>>    you need to have.
>
>MTPFS is only available in Squeeze and Sid.
>http://packages.debian.org/search?keywords=mtpfs 
>
>
>
>Hmm. Maybe I should use this as an excuse to upgrade to Sid. If I do, will 
>this Just Work, or will I still have to jump thruogh elaborate tasks to set 
>things up?
>
>
>Jen

Re: MTP and Android phones

2014-01-07 Thread Darac Marjal
On Tue, Jan 07, 2014 at 07:28:06AM -0800, Dr. Jennifer Nussbaum wrote:
>Hi, i'm running Wheezy. I used to have an older Android phone that Just
>Worked with my system, but I upgraded it to one running Android 4.2, and
>now i can no longer figure out how get it to talk to my computer.
>Ive Googled and tried to read up about MTP, but im still not sure how to
>get things working--different sites have you download and compile things
>from scratch, which seems crazy that you can't just plug your phone in. I
>did install mtp-tools, but i can't find mtpfs that many of the sites say
>you need to have.

MTPFS is only available in Squeeze and Sid.
http://packages.debian.org/search?keywords=mtpfs 

>All i want is to be able to plug my phone in via USB and have it visible
>in the filesystem, whether through Thunar or on the commandline. Being
>able to have it work with Banshee wuold be nice too, but i assume that if
>the phone is visible then it will work with any tools.

One alternative may be to use GVFS. Have a look to see if your
gvfs-backends package supports mtp ("apt-cache show gvfs-backends" will
say), then perhaps something like gvfs-fuse will do.

>Thank you.
>Jen


signature.asc
Description: Digital signature


Re: how to specify kernel parameter "memmap="

2014-01-07 Thread Nitebirdz
On Tue, Jan 07, 2014 at 09:03:03AM -0500, Long Wind wrote:
>
> I can't boot many Linux, probably because linux can't correctly detect
> memory map
> so I have to specify myself, below is copied from kernel-parameters.txt
>

Could it be that you need to run the PAE kernel? 

http://en.wikipedia.org/wiki/Physical_Address_Extension
 
> 
> memmap=exactmap   [KNL,X86] Enable setting of an exact
>   E820 memory map, as specified by the user.
>   Such memmap=exactmap lines can be constructed based on
>   BIOS output or other requirements. See the memmap=nn@ss
>   option description.
> 
> 
> Could you help me specify "exactmap"?
> I can't find details about it.
> Thanks in advance!
> 
> (I go to bed now)
> 

Would the following links help?

http://stackoverflow.com/questions/1911473/force-linux-to-use-only-memory-over-4g

http://unix.stackexchange.com/questions/37729/how-can-i-reserve-a-block-of-memory-from-the-linux-kernel


-- 
Nitebirdz
http://www.sacredchaos.com/


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107154538.ga11...@istanbul.sacredchaos.com



MTP and Android phones

2014-01-07 Thread Dr. Jennifer Nussbaum
Hi, i'm running Wheezy. I used to have an older Android phone that Just Worked 
with my system, but I upgraded it to one running Android 4.2, and now i can no 
longer figure out how get it to talk to my computer.

Ive Googled and tried to read up about MTP, but im still not sure how to get 
things working--different sites have you download and compile things from 
scratch, which seems crazy that you can't just plug your phone in. I did 
install mtp-tools, but i can't find mtpfs that many of the sites say you need 
to have.

All i want is to be able to plug my phone in via USB and have it visible in the 
filesystem, whether through Thunar or on the commandline. Being able to have it 
work with Banshee wuold be nice too, but i assume that if the phone is visible 
then it will work with any tools.

Thank you.

Jen

Re: Connot load Wheezy in a "virgin" desktop -- long

2014-01-07 Thread Brian
Apologies for a massive amount of snipping.

On Mon 06 Jan 2014 at 18:25:24 -0500, Ken Heard wrote:

> I would appreciate any advice from anybody out there as to how to make this
> computer operational.  Once again I apologize for the length of this post.

You say you installed a basic system but your idea and mine about such a
system might differ. I would boot a netinst image in expert mode, set up
the network and, when partitioning, make a single ext4 filesystem on one
of your disks. That is, no RAID, no LVM, no xfs, no encryption. Just
plain and simple and straightforward; you can change this later when you
know where you are up to.

Install the base system but, at the tasksel stage, no extra software.
Then get GRUB and boot into the new system. Spend some time exploring it
with top, free, lspci and lsusb. Install some small packages: gpm, less,
mc etc.

Now for X: xserver-xorg isn't a metapackage; xorg is. You'll want a
window manager too. So

   apt-get install xorg fvwm

and then 'startx'. Play about with what you have; reboot a few times to
make sure everything (mouse, keyboard, display etc) works.

You want something more complex to use with X ? Xfce?

   apt-get install xfce4 lightdm

If you decide to reinstall and add some bells and whistles you should
now have a reasonable idea how operational the machine is.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107152519.ga3...@copernicus.demon.co.uk



how to specify kernel parameter "memmap="

2014-01-07 Thread Long Wind
I can't boot many Linux, probably because linux can't correctly detect
memory map
so I have to specify myself, below is copied from kernel-parameters.txt


memmap=exactmap [KNL,X86] Enable setting of an exact
E820 memory map, as specified by the user.
Such memmap=exactmap lines can be constructed based on
BIOS output or other requirements. See the memmap=nn@ss
option description.


Could you help me specify "exactmap"?
I can't find details about it.
Thanks in advance!

(I go to bed now)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAB-gxZCdE=egkcans3hs2brycishbntd9om2uosaly1hrhj...@mail.gmail.com



Re: SteamOS: Derived from Debian 7

2014-01-07 Thread Alex S.

On Mon, 06 Jan 2014 19:54:12 -0800
David Guntner  wrote:

> Anyone else here think this is awesome news? :-)
> 
>--Dave
> 

It surely is! Though SteamOS, I believe, is gonna see much more use
on SteamMachines, than on PCs, and personally, I'm not a console guy,
but all the SteamOS-compatible games should be reverse
Linux-compatible, and that's great. It's a pity though, that
Steam client doesn't work on Wheezy out of the box, that's part of the
reason I decided to move on to Testing/Sid again. In any case, Valve
are responsible for my return to gaming after 4 or 5 years almost
completely out of the gaming world after ditching Windows completely. 

-- 
Time is an illusion. Lunchtime doubly so.

Best wishes,
Alex S.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107144217.08f55...@mail.ukrtelecom.ua



Re: which image shall I use for P4/2.9G

2014-01-07 Thread Long Wind
On 1/7/14, Darac Marjal  wrote:
>
> It's times like this that I really wish more people knew about the
> multi-arch (i386/amd64) CD image.
>
> http://cdimage.debian.org/debian-cd/7.3.0/multi-arch/iso-cd/
>
> I assume there's a technical reason why there's not a multi-arch netinst
> image, though.
>
>

Thanks for your suggestion!
I've been busy solving the problem, no luck
I am tired, very very tired

I will try the CD in the future.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAB-gxZB_LFp=z11+ra9qypwh3-oq14t4da08ntzux5rxcs5...@mail.gmail.com



Re: Best SFTP (w/chroot): vsftpd vs mysecureshell vs other ??

2014-01-07 Thread Sven Hoexter
On Mon, Jan 06, 2014 at 03:47:59PM -0600, Bob Goldberg wrote:
> On Sat, Jan 4, 2014 at 7:26 AM, Sven Hoexter  wrote:
> 
> > I'm not sure how the OpenSSH implementation handles ACLs, maybe that's
> > an option but I did not test it.
> 
> 
> my first problem is successfully logging in with sftp-only and chroot'ing
> in place. AFAIK - ACL's would only come into play afterward.

Yes, but that should work. I read your mail as it does not work if you
enhance to the $HOME to group writeable or something like that.
I did not verify that case at all.

So I would start with setting it up user access only and try to add ACLs
to make it group writeable or whatever is required later on.

> proftpd:
> 1) wheezy does not have an sftp module

No,
$ cat /etc/debian_version 
7.3
$ dpkg -L proftpd-basic|grep sftp
/usr/lib/proftpd/mod_sftp.so
/usr/lib/proftpd/mod_sftp_sql.so
/usr/lib/proftpd/mod_sftp_pam.so


> 2) proftpd appears to rely on openssh for sftp, so appears to add no value.

No, it's a standalone implementation.


> 3) IF proftpd did provide working sftp - appears that it can not share port
> 22 w/ openssh (which i do still need for full-access users unrelated to
> SFTP).

True, you can of course do nasty quirks with iptables to NAT to different ports
depending on the source IP. But that is really nasty.


> scponly:  does not appear to be provided in wheezy !?!? can't find out
> why

[Date: Mon, 23 Jan 2012 22:09:19 +] [ftpmaster: Luca Falavigna]
Removed the following packages from unstable:

   scponly |4.8-4.1 | source, amd64, armel, armhf, hurd-i386, i386, ia64, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc
scponly-full |4.8-4.1 | amd64, armel, armhf, hurd-i386, i386, ia64, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc
Closed bugs: 650590

--- Reason ---
RoQA; RC buggy, unmaintained, replacement exists
--

from https://ftp-master.debian.org/removals-2012.txt

Though nothing prohibits you from building a package based on the last version
found on snapshot.debian.org or just use the source Luke. ;)


> rssh/rush:
> 1) not sure what is: diff rssh rush  (searches come up worthless to answer
> this)

Different implementation/software for a similar/same task.


> 3) "mixed security record" is a big concern.

Well I can mostly speak for the scponly case: Parsing commandline arguments
in a safe way for different tools like svn, rsync etc. is hard. If you disable
most of that and only stick to the sftp support it's quite solid.

Still if I've a chance I would try to rely on the sftp-internal and chroot()
functionallity of OpenSSH.

Sven
-- 
we live we love we learn and breathe
each breath we take makes me believe that we can take this road forever
if we take this road together
 [ AZ0 - Endless Roads ]


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20140107094032.ga3...@timegate.de



Re: which image shall I use for P4/2.9G

2014-01-07 Thread Darac Marjal
On Tue, Dec 31, 2013 at 12:25:37PM +0200, Georgi Naplatanov wrote:
> On 12/31/2013 12:08 PM, Long Wind wrote:
> >I have just got a  P4/2.9G computer
> >it seems that my old 32bit(i386) software can't run on it
> >it needs 64-bit software
> >
> >Shall I choose CD image from ia64?
> >Thanks!
> 
> Hi Long Wind,
> 
> IA-64 architecture is for Intel Itanium processors.
> 
> Pentium 4 processor is a desktop processor and it's 32-bit or
> 64-bit. The official name for 64-bit desktop processors is AMD64,
> but there are a lot of synonyms like x86_64, Intel EMT-64, x64,
> 64-bit PC, etc.
> 
> If your processor is 32-bit then download i386 CD image, but if your
> processor is 64-bit then you can download amd64 CD image or the old
> i386 (32-bit) architecture.

It's times like this that I really wish more people knew about the
multi-arch (i386/amd64) CD image.

http://cdimage.debian.org/debian-cd/7.3.0/multi-arch/iso-cd/

I assume there's a technical reason why there's not a multi-arch netinst
image, though.



signature.asc
Description: Digital signature