Re: recommended ftp clients for Debian

2015-02-26 Thread Curt
On 2015-02-25, Wilko Fokken  wrote:
>> 
>> I want a simple ftp client, for putting not getting, that is easy and 
>> pleasant 
>> to use.  GUI based.  For the use of non-geeks as well as myself.
>> 
>> Lisi
>
> My favourite ftp is mc:
> It works ftp transfers the same way as transfers within one's own file system.
>

mc is a text-mode piece of software and so lies outside the problem
space defined by Ms. Lisi above.

But as long as we're going that route I use ncftp, which I find simple as
pie (and you even get tab completion with your pie).


-- 

"The world is full of shipping clerks who have read the Harvard Classics."

— Charles Bukowski


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/slrnmetpb7.2am.cu...@einstein.electron.org



Re: Corrupted USB drive

2015-02-26 Thread Keith Bainbridge
On Thu, 26 Feb 2015 17:44:05 +1100 Keith BAINBRIDGE
 wrote:

>>>Um,  I have 2 USB disks, 2g & 4g, I believe I formatted NTFS,
>>>attached to a Mint 12.04 (equivalent) system working
>>>fine.  /etc/mtab says fuseblk as file system. 
>>>
>>>Perhaps Mint team does something special? 

Better make that 2TB & 4TB disks. 


Keith Bainbridge

keithrbaugro...@gmail.com

+61 (0)447 667 468


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226200827.52616f3a@keithsmac



Re: File transfer

2015-02-26 Thread Jochen Spieker
Maureen L Thomas:
>
> I bought a new Toshiba lap top and want to copy the files from my old
> Toshiba lap top to the new one.  They both have Debian, the latest version,
> so can I just hook up usb to usb and copy that way?

No, that won't work. USB uses a master/slave model and both of your
laptops are "masters". If you want to use USB you would have to use an
intermediate storage device.

If you have a home router or a switch with at least two Ethernet ports,
then the easiest way is probably to install openssh-server on one of the
two laptops and use scp or rsync from the other laptop.

J.
-- 
Whenever I hear the word 'art' I reach for my visa card.
[Agree]   [Disagree]
 


signature.asc
Description: Digital signature


Givemi libgs.so

2015-02-26 Thread jaeminkim0581
Please give libgs.so

나의 LG 스마트폰에서 보냄


Re: File transfer

2015-02-26 Thread Ron
On Thu, 26 Feb 2015 10:24:57 +0100
Jochen Spieker  wrote:

> If you have a home router or a switch with at least two Ethernet ports,
> then the easiest way is probably to install openssh-server on one of the
> two laptops and use scp or rsync from the other laptop.

Why not just connect directly RJ45 to RJ45 ?
 
Cheers,
 
Ron.
-- 
As democracy is perfected, the office of president represents,
  more and more closely, the inner soul of the people. On some great
and glorious day the plain folks of the land will reach their heart's
   desire at last and the White House will be adorned by a downright moron.
-- H.L. Mencken

   -- http://www.olgiati-in-paraguay.org --
 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226071448.58083...@ron.cerrocora.org



Re: File transfer

2015-02-26 Thread Jochen Spieker
> Jochen Spieker  wrote:
> 
>> If you have a home router or a switch with at least two Ethernet ports,
>> then the easiest way is probably to install openssh-server on one of the
>> two laptops and use scp or rsync from the other laptop.
> 
> Why not just connect directly RJ45 to RJ45 ?

The only reason I didn't mention that possibility is that I didn't want
to have to explain how to manually configure IP addresses. :) If the OP
has a home router, chances are that IP networking "just works".

J.
-- 
I am getting worse rather than better.
[Agree]   [Disagree]
 


signature.asc
Description: Digital signature


Re: Givemi libgs.so

2015-02-26 Thread Darac Marjal
On Thu, Feb 26, 2015 at 01:17:48AM -0800, jaeminkim0...@gmail.com wrote:
>Please give libgs.so

"apt-get install libgs9"

In the future, you can find this information at
https://packages.debian.org/search?searchon=contents&keywords=libgs.so&mode=filename&suite=stable&arch=any

> 
> 
> 
>나의 LG 스마트폰에서 보냄
> 
> 


signature.asc
Description: Digital signature


Re: File transfer

2015-02-26 Thread Rusi Mody
On Thursday, February 26, 2015 at 1:00:04 PM UTC+5:30, Maureen L Thomas wrote:
> I bought a new Toshiba lap top and want to copy the files from my old 
> Toshiba lap top to the new one.  They both have Debian, the latest 
> version, so can I just hook up usb to usb and copy that way? If so would 
> I need a certain command to do it?
> 
> Just a thought to make it easier since the old one's dvd burner no 
> longer works.

H/W: Back to back ethernet
http://en.wikipedia.org/wiki/Ethernet_crossover_cable
  Special cable not needed nowadays it seems
  http://en.wikipedia.org/wiki/Medium_Dependent_Interface#Auto_MDI-X

S/W netcat maybe piped to tar

The netcat scripts I use are like so:

sendnc:
otherip=192.168.1.1
nc -vv -n -w 2 $otherip 5600 < $1

recvnc:
nc -vv -w 30 -p 5600 -l > $1

These can be directly piped to/from tar but I always have trouble working
that command out :-)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/4f706043-5228-4674-b086-eb4323f69...@googlegroups.com



Re: File transfer

2015-02-26 Thread Ron
On Thu, 26 Feb 2015 11:57:39 +0100
Jochen Spieker  wrote:

> >> If you have a home router or a switch with at least two Ethernet ports,
> >> then the easiest way is probably to install openssh-server on one of the
> >> two laptops and use scp or rsync from the other laptop.  

> > Why not just connect directly RJ45 to RJ45 ?  
 
> The only reason I didn't mention that possibility is that I didn't want
> to have to explain how to manually configure IP addresses. :) If the OP
> has a home router, chances are that IP networking "just works".

Not much of a problem: (Install and) open wicd, Wired Network Properties, click 
Use Static IPs, and 192.168.1.x, and 255.255.255.0
 
Cheers,
 
Ron.
-- 
As democracy is perfected, the office of president represents,
  more and more closely, the inner soul of the people. On some great
and glorious day the plain folks of the land will reach their heart's
   desire at last and the White House will be adorned by a downright moron.
-- H.L. Mencken

   -- http://www.olgiati-in-paraguay.org --
 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226080746.51fca...@ron.cerrocora.org



Very small fonts in KDE after installing Nvidia drivers

2015-02-26 Thread James Allsopp
Hello,
I've just installed the nvidia drivers after following the instructions
here https://wiki.debian.org/NvidiaGraphicsDrivers

but now my fonts are so small they are unreadable. My display is a HDMI
television.

I think this could be related to the EDID settings but I'm not sure how to
set this. I'm using the small piecewise Xorg described in the document.

echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver
"nvidia"\nEndSection' > /etc/X11/xorg.conf.d/20-nvidia.conf

I can't run nvidia-settings as I can't read the text,

Any ideas what changes I need to make to fix this please?

Thanks,

James


Re: Okular vs printer, okular 1, printer 0

2015-02-26 Thread Brian
On Wed 25 Feb 2015 at 16:49:13 +, Lisi Reisz wrote:

> On Wednesday 25 February 2015 15:29:11 Brian wrote:
> >
> > That's a big jump from what I said. And what bug is it you are talking
> > about? There have been a number of assertions in this thread. None lead
> > me to think that Wheezy is heading for imminent breakdown on the printing
> > front. :)
> 
> I htink that it is a case of watch this space!!  TDE may yet save the day.

TDE will not (and does not) bring anything to the party in terms of
setting up a print queue and displaying options in the KDE print
dialogue that is not provided by every desktop-based system in Wheezy.
The operation of the printing system is not determined by cosmetic
features.


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



Re: File transfer

2015-02-26 Thread Floris
Op Thu, 26 Feb 2015 08:06:46 +0100 schreef Maureen L Thomas  
:


I bought a new Toshiba lap top and want to copy the files from my old  
Toshiba lap top to the new one.  They both have Debian, the latest  
version, so can I just hook up usb to usb and copy that way? If so would  
I need a certain command to do it?


Just a thought to make it easier since the old one's dvd burner no  
longer works.




An other solution is take the old hard drive out of the laptop and
put it in the new one. One downside, you must have a spare slot
or replace the optical drive with the hard disk.

Success,

floris


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

Archive: https://lists.debian.org/op.xunynuvu5k9...@jessica.jkfloris.demon.nl



Re: Okular vs printer, okular 1, printer 0

2015-02-26 Thread Lisi Reisz
On Thursday 26 February 2015 11:57:38 Brian wrote:
> TDE will not (and does not) bring anything to the party in terms of
> setting up a print queue and displaying options in the KDE print
> dialogue

No, it will display them in the TDE print dialogue, not the KDE print 
dialogue, and for the moment Gene seems to have that better configured.  
Perhaps he finds the defaults easier.

I don't know why Gene's finding one thing easier than another upsets you.

Lisi


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



Re: Chromium fatal error

2015-02-26 Thread lee json
Updating kernel to 3.16.0-4 fixes the problem.

Thanks!

On 25 February 2015 at 18:26, Reco  wrote:
>  Hi.
>
> On Wed, Feb 25, 2015 at 05:35:51PM +0800, lee json wrote:
>> Chromium on my debian system throws following error and couldn't be
>> launched at all.
>>
>> [1:1:0225/173352:FATAL:sandbox_bpf.cc(266)]
>> [3:3:0225/173352:FATAL:sandbox_bpf.cc(351)] Check failed: -1 == rv (-1
>> vs. 354)
>>
>> Not very sure why and how to fix it. In addition, I do not find
>> similar bug report at
>> https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=chromium;dist=unstable
>>
>> Environment:
>> kernel 3.14-1-686-pae
>> Chromium 40.0.2214.111 Built on 8.0, running on Debian 8.0
>>
>> Any suggestions?
>
>  Update your kernel to current jessie's one, try it then:
>
> https://code.google.com/p/chromium/issues/detail?id=439795
>
> Reco
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: https://lists.debian.org/20150225102645.ga19...@d1696.int.rdtex.ru
>


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAG6=6-tr6rqa5t4hdsqunpbzete69lvdvmfj0yyutxyqfml...@mail.gmail.com



Re: File transfer

2015-02-26 Thread Curt
On 2015-02-26, Floris  wrote:
>>
> An other solution is take the old hard drive out of the laptop and
> put it in the new one. One downside, you must have a spare slot
> or replace the optical drive with the hard disk.
>
> Success,
>
> floris
>
>

Or for the less mechnically-inclined, seeing that both laptops have
available usb ports, you might just copy the files from the old laptop onto
a USB flash drive, and then stick the flash drive into the new laptop.   


-- 

"Meaning is not in things but in between; in the iridescence, the interplay: in
the interconnections; at the intersections, at the crossroads. Meaning is
transitional as it is transitory, in the puns or bridges, the correspondence."
— Mallarmé


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/slrnmeu6a5.2am.cu...@einstein.electron.org



Re: File transfer

2015-02-26 Thread Reco
 Hi.

On Thu, Feb 26, 2015 at 08:07:46AM -0300, Renaud OLGIATI wrote:
> On Thu, 26 Feb 2015 11:57:39 +0100
> Jochen Spieker  wrote:
> 
> > >> If you have a home router or a switch with at least two Ethernet ports,
> > >> then the easiest way is probably to install openssh-server on one of the
> > >> two laptops and use scp or rsync from the other laptop.  
> 
> > > Why not just connect directly RJ45 to RJ45 ?  
>  
> > The only reason I didn't mention that possibility is that I didn't want
> > to have to explain how to manually configure IP addresses. :) If the OP
> > has a home router, chances are that IP networking "just works".
> 
> Not much of a problem: (Install and) open wicd, Wired Network Properties, 
> click Use Static IPs, and 192.168.1.x, and 255.255.255.0

Installing wicd would require working IP networking in the first place,
isn't it?

Besides, one doesn't need to configure anything as ipv6 provides those
funny fe80:/64 addresses out of the box. Sure, they won't work outside
of a local network segment, but that's not the issue here.

Reco


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226135204.ga10...@d1696.int.rdtex.ru



Re: recommended ftp clients for Debian

2015-02-26 Thread Lisi Reisz
On Thursday 26 February 2015 14:04:54 Tony Baldwin wrote:
> On Thu, Feb 26, 2015 at 09:20:39AM +, Curt wrote:
> > On 2015-02-25, Wilko Fokken  wrote:
> > >> I want a simple ftp client, for putting not getting, that is easy and
> > >> pleasant to use.  GUI based.  For the use of non-geeks as well as
> > >> myself.
>
> This one works nicely and is very simple:
> https://github.com/tonybaldwin/tclup
> It was created by a Debianista on this list,
> but is not in Debian repos.
> It is known to work fine on Debian systems.
>
> Tony

thanks, Tony.

Lisi


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



debian 8 Kmail IMAP funktioniert nach einiger Zeit nicht mehr, Rechner muss neu gestartet werden

2015-02-26 Thread Thomas
Hallo,
ich habe seit debian 8 Schwierigkeiten mit Kmail und IMAP Servern, ich benutze 
zum Beispiel den IMAP Server von Gmail.
Andauernd kann ich nicht mehr auf die Emails zugreifen. Sie werden nicht mehr 
angezeigt, ein abholen des Ordnerinhalts funktioniert ewig oder es steht da es 
befindet sich im Offline Modus und ob ich online gehen möchte. Das alles bringt 
nichts.
Ein Schließen von kmail funktioniert nicht sauber, das killen des Prozesses 
bringt nichts. Ich muss den ganzen Rechner neu starten
Das funktioniert dann wieder einige Zeit bis die gleichen Probleme wieder 
auftreten.
Gruss
Thomas


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/2462707.y6sJOqnqza@tmprod1



Re: Corrupted USB drive

2015-02-26 Thread Gary Dale

On 25/02/15 11:59 PM, German wrote:

On Wed, 25 Feb 2015 23:50:20 -0500
Gary Dale  wrote:


On 25/02/15 06:03 PM, German wrote:

On Wed, 25 Feb 2015 16:06:58 -0500
Gary Dale  wrote:


On 25/02/15 03:09 PM, German wrote:

Hi list, can't mount my usb drive. It seems it is corrupted. I tried to run 
ntfsfix and here is its ouput:
digger@digger:~$ sudo ntfsfix /dev/sdc1
Mounting volume... ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read of MFT, mft=17625 count=1 br=-1: Input/output error
Inode is corrupt (5): Input/output error
Index root attribute missing in directory inode 5: Input/output error
FAILED
Attempting to correct errors...
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read of MFT, mft=17625 count=1 br=-1: Input/output error
Inode is corrupt (5): Input/output error
Index root attribute missing in directory inode 5: Input/output error
Remount failed: Input/output error


If anyone can suggest how I can recover my drive and what is exactly a problem, 
I'd appreciate it. Thanks



Testdisk might be able to help.

What exactly should I be looking for in testdisk? I checked structure, it is ok. Should I do 
"deeper search"? And what means "Index root attribute missing in directory inode 
5"?


The problem you reported was inability to mount a USB stick. Testdisk
helps you recover from disk/file system corruption.

I suggest you use ddrescue to create an image of the NTFS partition on
the USB stick and retry ntfsfix against the image. Assuming ntfsfix
works, you can then mount the image using the loop option.

e.g.  ddrescue /dev/sdx1 ./ntfs.img
  ntfsfix ./ntfs.img
 mkdir ntfs-image
 mount -o loop ./ntfs.img ./ntfs-image

If ntfsfix doesn't work, try using testdisk against the .img file.

Once you've got your files copied to a new stick, don't use the old one.

Thanks for your suggestion. However I am afraid I can't create .img file because my 
internal disk is 128 GB and my unmountable drive is 2 TB. ( it is 3'5" external 
usb disk, not a USB stick ).


In that case, get another USB drive or internal SATA drive of sufficient 
capacity to make the copy. Once you have a good copy that you have 
verified / fixed, you can reformat the faulty drive. Do a full reformat, 
not a quick one, as the full reformat verifies the disk surface and 
marks bad blocks.



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

Archive: https://lists.debian.org/54ef355c.3000...@torfree.net



user mounting a filesystem; was Re: ld.so.nohwcap and ld.so.preload; was Re: mounting a labeled filesystem.

2015-02-26 Thread peter
From: Reco 
Date: Thu, 26 Feb 2015 09:31:14 +0300
> In that case a correct way of doing this is:
> 
> mount -v LABEL=GRNSDHC41

Output is independent of the -v option.

peter@dalton:~$ mount -v -t ext2 LABEL=GRNSDHC41
mount: only root can do that
peter@dalton:~$ mount-t ext2 LABEL=GRNSDHC41
mount: only root can do that

Regards, ... Peter E.




-- 
123456789 123456789 123456789 123456789 123456789 123456789 123456789 12
Tel +1 360 639 0202   http://carnot.yi.org/   Bcc: peter at easthope. ca


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/E1YR0HO-0001ea-Uu@dalton.invalid



Re: Very small fonts in KDE after installing Nvidia drivers

2015-02-26 Thread Curt
On 2015-02-26, James Allsopp  wrote:
>
> I can't run nvidia-settings as I can't read the text,
>
> Any ideas what changes I need to make to fix this please?
>

Searching, I find

sudo nvidia-xconfig --no-use-edid-dpi

which generates a etc/X11/xorg.conf file disabling the DPI info from the
monitor's EDID.

Then you would edit the xorg.conf file's monitor section and put
something agreeable here:

Option "DPI" "96 x 96"

I guess the DPI ratio should correspond to your TV's resolution (or
something).  In other words, unless you got a square TV, 96 x 96 is
probably not the way you want to go.

HTH.

-- 

"Meaning is not in things but in between; in the iridescence, the interplay: in
the interconnections; at the intersections, at the crossroads. Meaning is
transitional as it is transitory, in the puns or bridges, the correspondence."
— Mallarmé


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/slrnmeufho.2am.cu...@einstein.electron.org



Re: user mounting a filesystem; was Re: ld.so.nohwcap and ld.so.preload; was Re: mounting a labeled filesystem.

2015-02-26 Thread Reco
 Hi.

On Thu, 26 Feb 2015 07:23:10 -0800
pe...@easthope.ca wrote:

> From: Reco 
> Date: Thu, 26 Feb 2015 09:31:14 +0300
> > In that case a correct way of doing this is:
> > 
> > mount -v LABEL=GRNSDHC41
> 
> Output is independent of the -v option.
> 
> peter@dalton:~$ mount -v -t ext2 LABEL=GRNSDHC41
> mount: only root can do that
> peter@dalton:~$ mount-t ext2 LABEL=GRNSDHC41
> mount: only root can do that

And that means 'close, but no cookie'.

Get your hands on util-linux source. Wheezy's one, to be specific - [1].

util-linux-2.20.1/mount/mount.c has this wonderful snippet at line 2621:

  if (restricted &&
(types || options || readwrite || nomtab || mount_all ||
 nocanonicalize || fake || mounttype ||
 (argc + specseen) != 1)) {
   
if (ruid == 0 && euid != 0)
/* user is root, but setuid to non-root */
die (EX_USAGE, _("mount: only root can do that "
"(effective UID is %u)"), euid);

die (EX_USAGE, _("mount: only root can do that"));
}

Translating this into plain English - there're arguments for mount
executable that are expected to work only if you're root. Those are
'restricted' ones. Filesystem type ('-t', types in source) is one of
these 'restricted' options.

So, your options to solving the problem are:

1) Patch out a check for the filesystem type.
It seems like a bad idea to me - such options are checked for a reason,
after all, but the patch itself is trivial.

2) Use good old automount(8) for your mounting needs.

3) Use whatever shiny new thing FreeDesktop thinks is best today. A
current one should be called udisks2, but don't trust me on this.

4) Use systemd. It definitely has some kind of automounting facility.

[1]
http://ftp.de.debian.org/debian/pool/main/u/util-linux/util-linux_2.20.1.orig.tar.gz

Reco


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



Re: Chromium fatal error

2015-02-26 Thread Reco
Hereby resending the answer to the list.
For the archives and stuff.

Reco

On Thu, 26 Feb 2015 20:16:13 +0800
lee json  wrote:

> Updating kernel to 3.16.0-4 fixes the problem.
> 
> Thanks!
> 
> On 25 February 2015 at 18:26, Reco  wrote:
> >  Hi.
> >
> > On Wed, Feb 25, 2015 at 05:35:51PM +0800, lee json wrote:
> >> Chromium on my debian system throws following error and couldn't be
> >> launched at all.
> >>
> >> [1:1:0225/173352:FATAL:sandbox_bpf.cc(266)]
> >> [3:3:0225/173352:FATAL:sandbox_bpf.cc(351)] Check failed: -1 == rv (-1
> >> vs. 354)
> >>
> >> Not very sure why and how to fix it. In addition, I do not find
> >> similar bug report at
> >> https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=chromium;dist=unstable
> >>
> >> Environment:
> >> kernel 3.14-1-686-pae
> >> Chromium 40.0.2214.111 Built on 8.0, running on Debian 8.0
> >>
> >> Any suggestions?
> >
> >  Update your kernel to current jessie's one, try it then:
> >
> > https://code.google.com/p/chromium/issues/detail?id=439795
> >
> > Reco


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



Re: File transfer

2015-02-26 Thread Pete Ley
Wouldn't you need a crossover cable to do that?


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87a900vdbp@enterprise.sectorq.net



Re: File transfer

2015-02-26 Thread Reco
 Hi.

On Thu, 26 Feb 2015 08:37:30 -0800
Pete Ley  wrote:

> Wouldn't you need a crossover cable to do that?

Unless they installed really braindead 15-years old NICs at both
laptops - no, one does not need crossover cable.
Although, given the existence of some horrible companies like D-Link,
Trendnet and Ahteros (to name a few) - I won't be surprised.

Reco


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



Re: File transfer

2015-02-26 Thread Don Armstrong
On Thu, 26 Feb 2015, Pete Ley wrote:
> Wouldn't you need a crossover cable to do that?

Any relatively modern piece of networking kit (and almost anything that
can do 1000bT) will auto-sense, so no crossover cable is needed.

-- 
Don Armstrong  http://www.donarmstrong.com

It can sometimes happen that a scholar, his task completed, discovers
that he has no one to thank. Never mind. He will invent some debts.
Research without indebtedness is suspect, and somebody must always,
somehow, be thanked.
 -- Umberto Eco "How to Write an Introduction"


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226173913.gf6...@teltox.donarmstrong.com



Re: File transfer

2015-02-26 Thread Doug

On 02/26/2015 11:37 AM, Pete Ley wrote:

Wouldn't you need a crossover cable to do that?



Not if he's on a LAN and goes thru a router.


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

Archive: https://lists.debian.org/54ef5f05.4040...@optonline.net



Re: Okular vs printer, okular 1, printer 0

2015-02-26 Thread Brian
On Thu 26 Feb 2015 at 12:08:03 +, Lisi Reisz wrote:

> On Thursday 26 February 2015 11:57:38 Brian wrote:
> > TDE will not (and does not) bring anything to the party in terms of
> > setting up a print queue and displaying options in the KDE print
> > dialogue
> 
> No, it will display them in the TDE print dialogue, not the KDE print 
> dialogue, and for the moment Gene seems to have that better configured.  

I was mislead by the activation of the help button in Konqueror and
other applications displaying the KDEPrint Handbook.

> Perhaps he finds the defaults easier.

The only default which has received any attention in this thread is
that for duplex printing. Anyone hoping to have them available with
the Brother PPD will be very disappointed to find they are greyed-out.

On the other hand, if they realise that CUPS has no way to get them from
the PPD (there is no Duplex keyword) they will have an understanding of
why.

And , as we are all aware, they have no bearing on setting up a print
queue anyway.


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



Re: File transfer

2015-02-26 Thread David Wright
Quoting Maureen L Thomas (silverorbspin...@tampabay.rr.com):
> I bought a new Toshiba lap top and want to copy the files from my
> old Toshiba lap top to the new one.  They both have Debian, the
> latest version, so can I just hook up usb to usb and copy that way?
> If so would I need a certain command to do it?

Once a network connection is established, I use scp as in

$ scp -pr top-of-tree username@host:

After the colon, relative paths are with respect to username's home.
-p preserves permissions, -r for recursion, but be aware that files
can be overwritten at the destination; there's no -i as in cp.

With the right ssh keys in place, you don't need to type passwords.

Cheers,
David.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226184638.gg11...@alum.home



Re: File transfer

2015-02-26 Thread David Wright
Quoting Reco (recovery...@gmail.com):
> On Thu, Feb 26, 2015 at 08:07:46AM -0300, Renaud OLGIATI wrote:
> > On Thu, 26 Feb 2015 11:57:39 +0100
> > Jochen Spieker  wrote:
> > 
> > > > Why not just connect directly RJ45 to RJ45 ?  
> >  
> > > The only reason I didn't mention that possibility is that I didn't want
> > > to have to explain how to manually configure IP addresses. :) If the OP
> > > has a home router, chances are that IP networking "just works".
> > 
> > Not much of a problem: (Install and) open wicd, Wired Network Properties, 
> > click Use Static IPs, and 192.168.1.x, and 255.255.255.0
> 
> Installing wicd would require working IP networking in the first place,
> isn't it?
> 
> Besides, one doesn't need to configure anything as ipv6 provides those
> funny fe80:/64 addresses out of the box. Sure, they won't work outside
> of a local network segment, but that's not the issue here.

No configuring: great. You just have to know how to use them...

So, I pull the cat5 cable out of a wired host, and stick into a
wireless laptop's eth0 socket. Both were chatting happily to a router
with ipv4 before. What do I do next to copy a file to the other host?
Both ways please, because there's an assymetry: only the wired host
"knows" it's been isolated from its gateway; the laptop is still happy.
ie,

wired ~$ scp a-file :destination-file-on-laptop
laptop ~$ scp a-file :destination-file-on-wired

Cheers,
David.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150226190414.gh11...@alum.home



Re: Very small fonts in KDE after installing Nvidia drivers

2015-02-26 Thread Mark Neyhart
On 02/26/2015 02:28 AM, James Allsopp wrote:
> Hello,
> I've just installed the nvidia drivers after following the instructions
> here https://wiki.debian.org/NvidiaGraphicsDrivers
> 
> but now my fonts are so small they are unreadable. My display is a HDMI
> television.
> 
> I think this could be related to the EDID settings but I'm not sure how to
> set this. I'm using the small piecewise Xorg described in the document.
> 
> echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver
> "nvidia"\nEndSection' > /etc/X11/xorg.conf.d/20-nvidia.conf
> 

I just went through this last week with Debian Wheezy using a large
television driven by an Nvidia card with the proprietary Nvidia
driver.  I added

Option "DPI" "100 x 100"

to my xorg.conf in the Device section for the Nvidia card.

In your case I think you should be able to replace your echo statement
with:

echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver
"nvidia"\n\tOption "DPI" "100 x 100"\nEndSection' >
/etc/X11/xorg.conf.d/20-nvidia.conf


Watch out for line wrapping, this should all be on one line.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ef7802.3010...@akleg.gov



gv won't show footers

2015-02-26 Thread Rodolfo Medina
Hi all.

With Debian Sid: when gv reads a `.ps' file, page numbers are half cut off.
The same file and its footers are properly read by gv in older Debian boxes.

Please help anybody can.

Thanks!

Rodolfo


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



Re: File transfer

2015-02-26 Thread Reco
 Hi.

On Thu, 26 Feb 2015 13:04:14 -0600
David Wright  wrote:

> Quoting Reco (recovery...@gmail.com):
> > On Thu, Feb 26, 2015 at 08:07:46AM -0300, Renaud OLGIATI wrote:
> > > On Thu, 26 Feb 2015 11:57:39 +0100
> > > Jochen Spieker  wrote:
> > > 
> > > > > Why not just connect directly RJ45 to RJ45 ?  
> > >  
> > > > The only reason I didn't mention that possibility is that I didn't want
> > > > to have to explain how to manually configure IP addresses. :) If the OP
> > > > has a home router, chances are that IP networking "just works".
> > > 
> > > Not much of a problem: (Install and) open wicd, Wired Network Properties, 
> > > click Use Static IPs, and 192.168.1.x, and 255.255.255.0
> > 
> > Installing wicd would require working IP networking in the first place,
> > isn't it?
> > 
> > Besides, one doesn't need to configure anything as ipv6 provides those
> > funny fe80:/64 addresses out of the box. Sure, they won't work outside
> > of a local network segment, but that's not the issue here.
> 
> No configuring: great. You just have to know how to use them...

That's the trick, isn't it?

 
> So, I pull the cat5 cable out of a wired host, and stick into a
> wireless laptop's eth0 socket. Both were chatting happily to a router
> with ipv4 before. What do I do next to copy a file to the other host?
> Both ways please, because there's an assymetry: only the wired host
> "knows" it's been isolated from its gateway; the laptop is still happy.
> ie,
> 
> wired ~$ scp a-file :destination-file-on-laptop
> laptop ~$ scp a-file :destination-file-on-wired

First, you invoke 'ip a l dev eth0' on both hosts.
In the case the interface lacks 'UP' flag, you invoke 'ip l s dev eth0
up'.
Once both interfaces are up, invoke 'ip a l dev eth0' again, and search
for the strings that look like (on both source and target hosts):

inet6 fe80::2867:acff:fef1:968d/64 scope link 
   valid_lft forever preferred_lft forever

In this example, 'fe80::2867:acff:fef1:968d' is so called 'link-local'
ipv6 address of the host.

Next, you invoke from source host:

ssh @%eth0

And, if everything goes well, you should see customary 'The
authenticity of host … can't be established' message.

To copy the needed files, you invoke from the source host:

scp -r  \
@[%eth0]:

I.e, to copy /home/user/Documents from one host to another, use:

scp -r /home/user/Documents \
user@[fe80::2867:acff:fef1:968d%eth0]:/home/user

The definition of 'source' and 'target' hosts is left as an exercise
for the readers. 


Of course, there're more complex (but faster) ways to copy files,
but the basics are here.

Reco


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



Re: debian 8 Kmail IMAP funktioniert nach einiger Zeit nicht mehr, Rechner muss neu gestartet werden

2015-02-26 Thread Linux-Fan
On 02/26/2015 03:43 PM, Thomas wrote:
> Hallo,
> ich habe seit debian 8 Schwierigkeiten mit Kmail und IMAP Servern, ich 
> benutze 
> zum Beispiel den IMAP Server von Gmail.
> Andauernd kann ich nicht mehr auf die Emails zugreifen. Sie werden nicht mehr 
> angezeigt, ein abholen des Ordnerinhalts funktioniert ewig oder es steht da 
> es 
> befindet sich im Offline Modus und ob ich online gehen möchte. Das alles 
> bringt 
> nichts.
> Ein Schließen von kmail funktioniert nicht sauber, das killen des Prozesses 
> bringt nichts. Ich muss den ganzen Rechner neu starten
> Das funktioniert dann wieder einige Zeit bis die gleichen Probleme wieder 
> auftreten.
> Gruss
> Thomas

Das hier ist die internationale (englischsprachige) Debian-User Liste.
Es wäre deshalb sinnvoll, die Frage entweder auf Englisch zu stellen
oder sich an die deutsche Debian-Userliste zu wenden.

Inhaltlich kann ich bei dem Problem leider nicht direkt weiterhelfen.
Ich würde zunächst die Netzwerkverbindung im Allgemeinen überprüfen und
dann nachsehen, ob das Problem mit anderen Clients und Servern auch
auftritt.

Trying to paraphrase this in English:

This is the international debian-user list. It would be recommended to
either ask the same question in English or send it to the German
debian-user list.

Contentwise, I can not directly give an answer to the problem. I'd check
the general network connectivity first and then check if the problem
also occurs with other clients or servers.

Linux-Fan

-- 
http://masysma.lima-city.de/



signature.asc
Description: OpenPGP digital signature


Re: File transfer

2015-02-26 Thread Celejar
On Thu, 26 Feb 2015 19:44:19 +0300
Reco  wrote:

>  Hi.
> 
> On Thu, 26 Feb 2015 08:37:30 -0800
> Pete Ley  wrote:
> 
> > Wouldn't you need a crossover cable to do that?
> 
> Unless they installed really braindead 15-years old NICs at both
> laptops - no, one does not need crossover cable.
> Although, given the existence of some horrible companies like D-Link,
> Trendnet and Ahteros (to name a few) - I won't be surprised.

Atheros is a horrible company? I thought they were rather well
regarded. And I've used a number of Trendnet products, and they've
worked well for me - cheap, but did the job.

Celejar


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



Re: File transfer

2015-02-26 Thread David Christensen

On 02/25/2015 11:06 PM, Maureen L Thomas wrote:

I bought a new Toshiba lap top and want to copy the files from my old
Toshiba lap top to the new one.  They both have Debian, the latest
version, so can I just hook up usb to usb and copy that way? If so would
I need a certain command to do it?
Just a thought to make it easier since the old one's dvd burner no
longer works.


I suggest that you start with a full back up of both computers (with an 
extra archival set stored off site).  Do you know how to do this?



David


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

Archive: https://lists.debian.org/54efdcad.8000...@holgerdanske.com



Re: File transfer

2015-02-26 Thread Maureen L Thomas


On 02/26/2015 09:55 PM, David Christensen wrote:

On 02/25/2015 11:06 PM, Maureen L Thomas wrote:

I bought a new Toshiba lap top and want to copy the files from my old
Toshiba lap top to the new one.  They both have Debian, the latest
version, so can I just hook up usb to usb and copy that way? If so would
I need a certain command to do it?
Just a thought to make it easier since the old one's dvd burner no
longer works.


I suggest that you start with a full back up of both computers (with 
an extra archival set stored off site).  Do you know how to do this?



David


The second machine is a clean install, actually a new install.  I have 
not yet done it but ran into a problem getting to the CMOS on the new 
toshiba.  I do know how to do a back up but why back up a new install?



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

Archive: https://lists.debian.org/54efe89c.8080...@tampabay.rr.com



Re: File transfer

2015-02-26 Thread Paul E Condon
On 20150226_2246-0500, Maureen L Thomas wrote:
> 
> On 02/26/2015 09:55 PM, David Christensen wrote:
> >On 02/25/2015 11:06 PM, Maureen L Thomas wrote:
> >>I bought a new Toshiba lap top and want to copy the files from my old
> >>Toshiba lap top to the new one.  They both have Debian, the latest
> >>version, so can I just hook up usb to usb and copy that way? If so would
> >>I need a certain command to do it?
> >>Just a thought to make it easier since the old one's dvd burner no
> >>longer works.
> >
> >I suggest that you start with a full back up of both computers (with an
> >extra archival set stored off site).  Do you know how to do this?
> >
> >
> >David
> >
> >
> The second machine is a clean install, actually a new install.  I have not
> yet done it but ran into a problem getting to the CMOS on the new toshiba.
> I do know how to do a back up but why back up a new install?

You asked for help at this list because you didn't know, for sure, how to
move data from the old computer to the new. It's clear to me that you have
gotten clear, step-by-step instructions, so ... something that you do may
be wrong for the very special case of a broken compute connected to a brand
new compute, which *MAY* allow the broken computer to clobber the system
files on the new computer. Do you have a way of re-installing on the new
computer if this happens? Are you sure? Or do you expect to take a damaged
computer back to the retailer who sold it to you and get a replacement.
Maybe check out that expectation with the retailer.

You asked for advice. I think you got some good advice that maybe you don't
want to hear. Maybe? The sad fact is that you cannot install Debian on a
computer that won't boot from an install CD because some drivers or whatever
have been damaged. 

YMMV
-- 
Paul E Condon   
pecon...@mesanetworks.net


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150227054951.gb24...@big.lan.gnu



Re: File transfer

2015-02-26 Thread Reco
 Hi.

On Thu, 26 Feb 2015 19:48:52 -0500
Celejar  wrote:

> On Thu, 26 Feb 2015 19:44:19 +0300
> Reco  wrote:
> 
> >  Hi.
> > 
> > On Thu, 26 Feb 2015 08:37:30 -0800
> > Pete Ley  wrote:
> > 
> > > Wouldn't you need a crossover cable to do that?
> > 
> > Unless they installed really braindead 15-years old NICs at both
> > laptops - no, one does not need crossover cable.
> > Although, given the existence of some horrible companies like D-Link,
> > Trendnet and Ahteros (to name a few) - I won't be surprised.
> 
> Atheros is a horrible company? I thought they were rather well
> regarded. 

Clearly you're lucky by not encountering anything that's using atl1c
kernel module. That card was the reason alone I use backported kernel
on my laptop, and it has some hiccups even then.

And, back in the old days, stock Debian 2.6.18 suffered from the random
kernel panics then using atl1 kernel module. They fixed as far as I can
tell, but I have a good memory.


> And I've used a number of Trendnet products, and they've
> worked well for me - cheap, but did the job.

Trendnet's unmanaged 1Gb switches actually manage to process whopping
200 Mbps maximum. Heck, maybe they buy counterfeit ones where I work,
but somehow I doubt it.

Reco


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



Re: File transfer

2015-02-26 Thread Maureen L Thomas


On 02/27/2015 12:49 AM, Paul E Condon wrote:

On 20150226_2246-0500, Maureen L Thomas wrote:

On 02/26/2015 09:55 PM, David Christensen wrote:

On 02/25/2015 11:06 PM, Maureen L Thomas wrote:

I bought a new Toshiba lap top and want to copy the files from my old
Toshiba lap top to the new one.  They both have Debian, the latest
version, so can I just hook up usb to usb and copy that way? If so would
I need a certain command to do it?
Just a thought to make it easier since the old one's dvd burner no
longer works.

I suggest that you start with a full back up of both computers (with an
extra archival set stored off site).  Do you know how to do this?


David



The second machine is a clean install, actually a new install.  I have not
yet done it but ran into a problem getting to the CMOS on the new toshiba.
I do know how to do a back up but why back up a new install?

You asked for help at this list because you didn't know, for sure, how to
move data from the old computer to the new. It's clear to me that you have
gotten clear, step-by-step instructions, so ... something that you do may
be wrong for the very special case of a broken compute connected to a brand
new compute, which *MAY* allow the broken computer to clobber the system
files on the new computer. Do you have a way of re-installing on the new
computer if this happens? Are you sure? Or do you expect to take a damaged
computer back to the retailer who sold it to you and get a replacement.
Maybe check out that expectation with the retailer.

You asked for advice. I think you got some good advice that maybe you don't
want to hear. Maybe? The sad fact is that you cannot install Debian on a
computer that won't boot from an install CD because some drivers or whatever
have been damaged.

YMMV


OK, First of all the old computer is my Toshiba laptop that works just 
fine.  The only thing wrong is the burner.  This machine is 4 years old 
and I wanted a newer model.  When all my files are transferred off of it 
it will be GIVEN to someone who needs a working computer.


Second, the new machine is also a Toshiba laptop just a newer model.  I 
have had to download a different set of ISO's since the new machine is a 
64 bit and the old one is 32 bit.  That is what I was doing tonite.  
Tomorrow I will use USB sticks to copy my files to and install them on 
the new machine.


I don't know why you got snarky with me.  I was unsure if I could use a 
usb cord from one to the other.  After the explanation about master and 
slave my 64 year old brain kicked in and I understood why it could not 
be done.  I have found a way and I appreciate everyone's help.  I have 
stored this information in a file for future use since as the family 
matriarch and computer person I try my best to learn new stuff about how 
things work.  Again thank you all.




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

Archive: https://lists.debian.org/54f016d1.7040...@tampabay.rr.com