Re: No space left on device (28) but device is NOT full!

2013-11-07 Thread Celejar
On Wed, 6 Nov 2013 21:45:28 -0800 un...@physics.ubc.ca (unruh) wrote: In linux.debian.user, you wrote: On Mon, 04 Nov 2013 21:51:26 -0600 Stan Hoeppner s...@hardwarefreak.com wrote: ... Food for thought: your /dev/sda7 is an EXT filesystem of 26GB with 1.7M inodes. XFS would give

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Wawrzek Niewodniczanski
On 5 November 2013 02:30, Tazman Deville tazmande...@gmx.com wrote: On Mon, Nov 04, 2013 at 06:43:45PM -0500, Hecber Cordova wrote: Hi, Did you check inodes usage? (df -i) I could be inodes availability rather than block availability. [...] I have no idea what the significance of

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Neal Murphy
On Wednesday, November 06, 2013 07:44:18 AM Wawrzek Niewodniczanski wrote: This is a bit off main topic, but definitely 'on' for this list. Lets imagine a scenario there is nothing to delete on the troublesome partition, but there is another disk. What would be the best tool to move data to

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Beco
On 6 November 2013 13:43, Neal Murphy neal.p.mur...@alum.wpi.edu wrote: Assuming the problem is /var/log is part of the root filesystem and is crammed with millions of files. Assume other drive is /dev/sdb. The general process is as follows. 1. Reboot to single-user 2. Add partition #1 to

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Jonathan Dowland
On Wed, Nov 06, 2013 at 11:43:09AM -0500, Neal Murphy wrote: 3. 'mkreiserfs /dev/sdb1' # to avoid the whole issue of inodes Before opting for ReiserFS (version 3), users would be advised to do some reading on the current level of support it attracts in the kernel, and possibly seek out some

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Sven Hartge
Neal Murphy neal.p.mur...@alum.wpi.edu wrote: 3. 'mkreiserfs /dev/sdb1' # to avoid the whole issue of inodes Really? ReiserFS 3 is dead, IMHO and ReiserFS 4 was never included in any vanilla kernel. I'd suggest XFS or a properly configured ext4. Sure, ext4 has a fixed set of inodes, but

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Neal Murphy
On Wednesday, November 06, 2013 12:11:33 PM Beco wrote: On 6 November 2013 13:43, Neal Murphy neal.p.mur...@alum.wpi.edu wrote: Assuming the problem is /var/log is part of the root filesystem and is crammed with millions of files. Assume other drive is /dev/sdb. The general process is as

Re: No space left on device (28) but device is NOT full!

2013-11-06 Thread Celejar
On Mon, 04 Nov 2013 21:51:26 -0600 Stan Hoeppner s...@hardwarefreak.com wrote: ... Food for thought: your /dev/sda7 is an EXT filesystem of 26GB with 1.7M inodes. XFS would give you ~23M inodes on a 26GB filesystem. An ext[2-4] filesystem can be created with any desired number inodes by

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Stan Hoeppner
On 11/4/2013 10:28 PM, Tazman Deville wrote: ... Got it! find . -name 'popularity-*' | xargs rm -rf (passes the files to rm one at a time). Glad you got it squared away Anthony. Normally I'd suggest filing a bug report against the problem application, but since the system is Squeeze it's

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Stan Hoeppner
On 11/5/2013 1:21 AM, Richard Hector wrote: On 05/11/13 16:51, Stan Hoeppner wrote: Second, you have a serious problem here because it is your root filesystem that has run out of inodes. You need to ask yourself why you have 1.7M files in your rootfs. That's very dumb. Or perhaps That's

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Jonathan Dowland
On Tue, Nov 05, 2013 at 05:28:16AM +0100, Tazman Deville wrote: find . -name 'popularity-*' | xargs rm -rf Sorry, opportunity for a bit of golf. Find has a built-in for deleting files: find . -type f -name 'popularity-*' -delete I'd also be rather wary of invoking rm -rf with the results of

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Reco
Hi. On Tue, Nov 05, 2013 at 09:41:58AM +, Jonathan Dowland wrote: On Tue, Nov 05, 2013 at 05:28:16AM +0100, Tazman Deville wrote: find . -name 'popularity-*' | xargs rm -rf Sorry, opportunity for a bit of golf. Find has a built-in for deleting files: find . -type f -name

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Tazman Deville
On Tue, Nov 05, 2013 at 02:52:52AM -0600, Stan Hoeppner wrote: On 11/5/2013 1:21 AM, Richard Hector wrote: On 05/11/13 16:51, Stan Hoeppner wrote: Second, you have a serious problem here because it is your root filesystem that has run out of inodes. You need to ask yourself why you have

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Tazman Deville
On Tue, Nov 05, 2013 at 09:41:58AM +, Jonathan Dowland wrote: On Tue, Nov 05, 2013 at 05:28:16AM +0100, Tazman Deville wrote: find . -name 'popularity-*' | xargs rm -rf Sorry, opportunity for a bit of golf. Find has a built-in for deleting files: find . -type f -name 'popularity-*'

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Tazman Deville
On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: Hi. On Tue, Nov 05, 2013 at 09:41:58AM +, Jonathan Dowland wrote: On Tue, Nov 05, 2013 at 05:28:16AM +0100, Tazman Deville wrote: find . -name 'popularity-*' | xargs rm -rf Sorry, opportunity for a bit of golf. Find has a

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Lars Noodén
On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: perl -e 'for(popularity-*){((stat)[9](unlink))}' I have two questions. Why before unlink and why stat[9] there? stat[9] is mtime. Regards, /Lars -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Jonathan Dowland
On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: find . -type f -name 'popularity-*' -print0 | xargs -0rn 20 rm -f I idly wonder (don't know) to what extend find might parallelize the unlinks with -delete. A cursory scan of the semantics would suggest it could potentially do so: it's not

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Reco
On Tue, Nov 05, 2013 at 02:29:10PM +, Jonathan Dowland wrote: On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: find . -type f -name 'popularity-*' -print0 | xargs -0rn 20 rm -f I idly wonder (don't know) to what extend find might parallelize the unlinks with -delete. A cursory scan

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Reco
Hi. On Tue, Nov 05, 2013 at 04:25:13PM +0200, Lars Noodén wrote: On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: perl -e 'for(popularity-*){((stat)[9](unlink))}' I have two questions. Why before unlink and why stat[9] there? You have to pass unlink something to delete. Stat is

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Lars Noodén
On 11/05/2013 05:33 PM, Reco wrote: Hi. On Tue, Nov 05, 2013 at 04:25:13PM +0200, Lars Noodén wrote: On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: perl -e 'for(popularity-*){((stat)[9](unlink))}' I have two questions. Why before unlink and why stat[9] there? You have to pass

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Jonathan Dowland
On Tue, Nov 05, 2013 at 07:15:19PM +0400, Reco wrote: On Tue, Nov 05, 2013 at 02:29:10PM +, Jonathan Dowland wrote: On Tue, Nov 05, 2013 at 03:13:10PM +0400, Reco wrote: find . -type f -name 'popularity-*' -print0 | xargs -0rn 20 rm -f I idly wonder (don't know) to what extend find

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Reco
On Tue, Nov 05, 2013 at 04:54:19PM +, Jonathan Dowland wrote: The binary size effects the initial load-up time which, for small numbers of files/short execution times, may be the lions share of the total execution time. However as you point out, for orders of magnitute like 500,000; it's

Re: No space left on device (28) but device is NOT full!

2013-11-05 Thread Joel Rees
On Tue, Nov 5, 2013 at 11:29 AM, Tazman Deville tazmande...@gmx.com wrote: On Tue, Nov 05, 2013 at 08:34:37AM +0900, Joel Rees wrote: [...] The first thing that I check when I get disk full errors but the disks are not full is the permissions. And the second thing should be the inodes, but I

No space left on device (28) but device is NOT full!

2013-11-04 Thread Tazman Deville
gotten around to it). Now, the device is far from full. df -h shows: FilesystemSize Used Avail Use% Mounted on /dev/sda7 26G 9.7G 15G 40% / tmpfs 949M 0 949M 0% /lib/init/rw udev 944M 200K 944M 1% /dev tmpfs 949M

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Joel Rees
the debian repos. The server is running Squeeze still (I know.. I should upgrade it, but I'll spend a day ironing out dovecot and postfix when I do, so haven't gotten around to it). Now, the device is far from full. df -h shows: FilesystemSize Used Avail Use% Mounted on /dev/sda7

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Hecber Cordova
here I have. Scuttle is installed from the debian repos. The server is running Squeeze still (I know.. I should upgrade it, but I'll spend a day ironing out dovecot and postfix when I do, so haven't gotten around to it). Now, the device is far from full. df -h shows: Filesystem

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Tazman Deville
installation on a little server here I have. Scuttle is installed from the debian repos. The server is running Squeeze still (I know.. I should upgrade it, but I'll spend a day ironing out dovecot and postfix when I do, so haven't gotten around to it). Now, the device is far from full. df -h

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Tazman Deville
when I do, so haven't gotten around to it). Now, the device is far from full. df -h shows: Filesystem � � � � � �Size �Used Avail Use% Mounted on /dev/sda7 � � � � � � �26G �9.7G � 15G �40% / tmpfs � � � � � � � � 949M � � 0 �949M � 0% /lib/init/rw udev

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Hecber Cordova
and postfix when I do, so haven't gotten around to it). Now, the device is far from full. df -h shows: Filesystem � � � � � �Size �Used Avail Use% Mounted on /dev/sda7 � � � � � � �26G �9.7G � 15G �40% / tmpfs � � � � � � � � 949M � � 0 �949M � 0% /lib

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Stan Hoeppner
On 11/4/2013 8:30 PM, Tazman Deville wrote: On Mon, Nov 04, 2013 at 06:43:45PM -0500, Hecber Cordova wrote: Hi, Did you check inodes usage? (df -i) I could be inodes availability rather than block availability. AHA! I have no idea what the significance of this is, but df -i

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Tazman Deville
what /home and /data and other places are to be used for. I'm not the dummy that filled up my / Before this, it was barely more than hafl full (well, df -h shows I'm only using 9.6gb of the 16gb there). Also, that hdd is old. I ran fedora core 4 on it.That's how old it is. Then I tried Ubuntu Dapper

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Tazman Deville
for. I'm not the dummy that filled up my / Before this, it was barely more than hafl full (well, df -h shows I'm only using 9.6gb of the 16gb there). Also, that hdd is old. I ran fedora core 4 on it.That's how old it is. Then I tried Ubuntu Dapper Duck on it, and some old PCLinuxOS

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Richard Hector
On 05/11/13 16:51, Stan Hoeppner wrote: Second, you have a serious problem here because it is your root filesystem that has run out of inodes. You need to ask yourself why you have 1.7M files in your rootfs. That's very dumb. Or perhaps That's not generally advisable. or similar. Richard

Re: No space left on device (28) but device is NOT full!

2013-11-04 Thread Neal Murphy
On Tuesday, November 05, 2013 02:21:36 AM Richard Hector wrote: On 05/11/13 16:51, Stan Hoeppner wrote: Second, you have a serious problem here because it is your root filesystem that has run out of inodes. You need to ask yourself why you have 1.7M files in your rootfs. That's very dumb.

Re: Last line of aptitude output after full-upgrade

2013-09-20 Thread Andrei POPESCU
On Lu, 05 aug 13, 14:25:07, Lisi Reisz wrote: On Monday 05 August 2013 13:54:54 Harry Putnam wrote: I guess I'm having a bit of trouble seeing why that is something I need to know... In the context of a `Current Status' report following a `full-upgrade', it would seem more reasonable

Last line of aptitude output after full-upgrade

2013-08-05 Thread Harry Putnam
Can anyone explain what the final line from an aptitude update (After setting sources.list to testing) aptitude full-upgrade This very last line from aptitude seems like its probably full of meaning, but not much use if I cannot find out what the heck it means. It apparently sums up what

Re: Last line of aptitude output after full-upgrade

2013-08-05 Thread Darac Marjal
On Mon, Aug 05, 2013 at 06:21:14AM -0400, Harry Putnam wrote: Can anyone explain what the final line from an aptitude update (After setting sources.list to testing) aptitude full-upgrade This very last line from aptitude seems like its probably full of meaning, but not much use

Re: Last line of aptitude output after full-upgrade

2013-08-05 Thread Harry Putnam
Darac Marjal mailingl...@darac.org.uk writes: On Mon, Aug 05, 2013 at 06:21:14AM -0400, Harry Putnam wrote: Can anyone explain what the final line from an aptitude update (After setting sources.list to testing) aptitude full-upgrade This very last line from aptitude seems like

Re: Last line of aptitude output after full-upgrade

2013-08-05 Thread Lisi Reisz
On Monday 05 August 2013 13:54:54 Harry Putnam wrote: I guess I'm having a bit of trouble seeing why that is something I need to know... In the context of a `Current Status' report following a `full-upgrade', it would seem more reasonable to mention how many pkgs are on my system before

Re: Problème avec pstriks texlive-full

2013-07-25 Thread Jean-Marc
On Thu, 25 Jul 2013 16:38:09 +0200 bonjour tout le monde cpgespe...@gmail.com wrote: Bonjour à toi aussi, Bonjour j'étais habitué de latex (windows) j'avais donc plusieurs fichier tex notamment courbe schéma (éducation) mais je me suis reconvertis vers opensource ubuntu 12.04 et texlive-full

Re: Problème avec pstriks texlive-full

2013-07-25 Thread Dominique Asselineau
suis reconvertis vers opensource ubuntu 12.04 et texlive-full mais le problème la simple instruction de pstricks telle que \psline n'est pas reconnue par le compilateur (édite texmaker) Je vous demande de m'aider car sûrement j'ai loupé quelque chose et Merci Je doute que tu reçoives de

Re: Problème avec pstriks texlive-full

2013-07-25 Thread Philippe Delavalade
plusieurs fichier tex notamment courbe schéma (éducation) mais je me suis reconvertis vers opensource ubuntu 12.04 et texlive-full mais le problème la simple instruction de pstricks telle que \psline n'est pas reconnue par le compilateur (édite texmaker) Je vous demande de m'aider car

Darkice-full , dependencia quebrada

2013-07-17 Thread Marco A
Prezados. Estou sofrendo pra istalar o darkice-full no Squeeze, apos atualizar o opt e chamar a instalaçao do darkice-full o apt mostra a mensagem de pacote quebrado ´darkice-full :depende: libpulse0 (=0.9.22 mas nao sera instalado, E pacotes quebrados´ No source list eu adicionei o repositorio

Re: Debian full disk encryption

2013-05-06 Thread Brad Alexander
this. :) Also, I have never built on an SSD...But the procedure is sound. --b On Sun, May 5, 2013 at 9:07 PM, Bob Proulx b...@proulx.com wrote: John Thoe wrote: I am trying to set up full disk encryption for Debian. There are a lot of options available and I cannot choose which one to use

Debian full disk encryption

2013-05-05 Thread John Thoe
Hello debian-user, I am trying to set up full disk encryption for Debian. There are a lot of options available and I cannot choose which one to use.. For starters, I am using a laptop for SSD so I read that using LUKS is not a good option since it disables TRIM. Anyways, I came across

Re: Debian full disk encryption

2013-05-05 Thread Bob Proulx
John Thoe wrote: I am trying to set up full disk encryption for Debian. There are a lot of options available and I cannot choose which one to use.. For starters, I am using a laptop for SSD so I read that using LUKS is not a good option since it disables TRIM. Anyways, I came across

Re: Debian full disk encryption

2013-05-05 Thread green
John Thoe wrote at 2013-05-05 19:45 -0500: For starters, I am using a laptop for SSD so I read that using LUKS is not a good option since it disables TRIM. I am using cryptsetup, LUKS, and ext4 on a SSD; TRIM seems to work. At least, fstrim seems to work as expected. Note that this is with

Re: Debian full disk encryption

2013-05-05 Thread Christoph Anton Mitterer
Trim is disabled peer default for security reasons. Cheers, Chris. green greenfreedo...@gmail.com schrieb: John Thoe wrote at 2013-05-05 19:45 -0500: For starters, I am using a laptop for SSD so I read that using LUKS is not a good option since it disables TRIM. I am using cryptsetup,

Re: /var full

2013-01-31 Thread Steven Ayre
Also there is still no nerw syslog file, probably because the filesystem shows 0 bytes free. The reason for this is the syslog-ng daemon still has a handle open to the old file (which as already has been mentioned is why the partition was still full). If you are going to delete the file, you

Re: /var full

2013-01-31 Thread Martin Steigerwald
Am Mittwoch, 30. Januar 2013 schrieb David Guntner: Bob Proulx grabbed a keyboard and wrote: In the future instead of removing a file that you want to be freed immediately consider truncating it instead. By truncating the file it does not matter if there are other handles to it. The

/var full

2013-01-30 Thread Bonno Bloksma
Hi, I had a problem that generated A LOT of messages in syslog and it grew untill the entire /var partition had 0 bytes free. The /var/log/syslog file was over 4GB large. I deleted it using a simple rm /var/log/syslog command and the file is indeed no longer there. The du /var/log -s command

RE: /var full

2013-01-30 Thread Bonno Bloksma
Hi, Van: Igor Cicimov [mailto:icici...@gmail.com] Restart syslog. Thanks that worked. On 30/01/2013 11:54 PM, Bonno Bloksma b.blok...@tio.nl wrote: I had a problem that generated A LOT of messages in syslog and it grew untill the entire /var partition had 0 bytes free. The

Re: /var full

2013-01-30 Thread emmanuel segura
Maybe you deleted the files, but some process are using the inodes 2013/1/30 Bonno Bloksma b.blok...@tio.nl Hi, I had a problem that generated A LOT of messages in syslog and it grew untill the entire /var partition had 0 bytes free. The /var/log/syslog file was over 4GB large. I deleted it

Re: /var full

2013-01-30 Thread Darac Marjal
On Wed, Jan 30, 2013 at 12:54:25PM +, Bonno Bloksma wrote: Hi, I had a problem that generated A LOT of messages in syslog and it grew untill the entire /var partition had 0 bytes free. The /var/log/syslog file was over 4GB large. I deleted it using a simple rm /var/log/syslog command

Re: /var full

2013-01-30 Thread Stan Hoeppner
On 1/30/2013 6:54 AM, Bonno Bloksma wrote: Hi, I had a problem that generated A LOT of messages in syslog and it grew untill the entire /var partition had 0 bytes free. The /var/log/syslog file was over 4GB large. I deleted it using a simple rm /var/log/syslog command and the file is

Re: /var full

2013-01-30 Thread William Ivanski
On 30-01-2013 11:03, Darac Marjal wrote: Linux takes the view that, although you've deleted the file, it won't disappear if you're still using it. This is very useful for temporary files (create a file, open it, delete it and no-one else can overwrite it). Man, I didn't know that, very useful.

Re: /var full

2013-01-30 Thread Erwan David
On Wed, Jan 30, 2013 at 02:15:45PM CET, William Ivanski william.ivan...@gmail.com said: On 30-01-2013 11:03, Darac Marjal wrote: Linux takes the view that, although you've deleted the file, it won't disappear if you're still using it. This is very useful for temporary files (create a file,

Re: /var full

2013-01-30 Thread emmanuel segura
That's what i means :-) 2013/1/30 Erwan David er...@rail.eu.org On Wed, Jan 30, 2013 at 02:15:45PM CET, William Ivanski william.ivan...@gmail.com said: On 30-01-2013 11:03, Darac Marjal wrote: Linux takes the view that, although you've deleted the file, it won't disappear if you're

Re: /var full

2013-01-30 Thread William Ivanski
On 30-01-2013 11:23, Erwan David wrote: On Wed, Jan 30, 2013 at 02:15:45PM CET, William Ivanskiwilliam.ivan...@gmail.com said: On 30-01-2013 11:03, Darac Marjal wrote: Linux takes the view that, although you've deleted the file, it won't disappear if you're still using it. This is very

Re: /var full

2013-01-30 Thread Bob Proulx
Bonno Bloksma wrote: The /var/log/syslog file was over 4GB large. I deleted it using a simple rm /var/log/syslog command and the file is indeed no longer there. As others have noted simply removing the file only removes it from the directory. It will NOT free up the disk space until the last

Re: /var full

2013-01-30 Thread David Guntner
Bob Proulx grabbed a keyboard and wrote: In the future instead of removing a file that you want to be freed immediately consider truncating it instead. By truncating the file it does not matter if there are other handles to it. The filesystem will immediately free the storage associated

Re: /var full

2013-01-30 Thread David Baron
Problem is that once this occurs, some things are crippled. After removing the syslog and daemonlog files, one must usually reboot. What caused this? In my case, it was the gpm mouse driver. Simply went wild with wireless mouse. SO I simply do not use it. The x driver does what I need.

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Andrei POPESCU
On Mi, 16 ian 13, 00:27:48, Brian wrote: Different authors; different recommendations. I'd see cp, dd and cat as equivalent in what they do. cp in the Guide was altered from cat because some systems require you to be root to use 'cat ISO /dev/sdX'. $ ls -l /dev/sdb brw-rw---T 1 root floppy

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Andrei POPESCU
On Ma, 15 ian 13, 15:12:25, GoOSSBears wrote: My preferences at this point would be to (a) use the 'dd' command to image-copy the full CD ISO onto a Linux type 82 partitioned /dev/sdX1 for USB-booting and then AFTERWARDS partition+format a separately accessible /dev/sdX2 for various stored

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Brian
On Thu 17 Jan 2013 at 11:17:50 +0200, Andrei POPESCU wrote: On Mi, 16 ian 13, 00:27:48, Brian wrote: Different authors; different recommendations. I'd see cp, dd and cat as equivalent in what they do. cp in the Guide was altered from cat because some systems require you to be root to

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Brian
On Thu 17 Jan 2013 at 11:26:33 +0200, Andrei POPESCU wrote: 3. Inspect the stick with a partitioning tool (fdisk/parted/gparted). Not sure about the full CD images, but I know for sure the smaller images create two partitions: one for the installer (and packages, if any) and one for your

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Andrei POPESCU
On Jo, 17 ian 13, 10:45:43, Brian wrote: Please see #660776. The changelog has: * Use dd of= instead of cat , to save users who use sudo. Advise to make sure the stick is unmounted. Closes: #660776. Did you read the full bug log? The issue is that redirecting with sudo

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Brian
read the full bug log? The issue is that redirecting with sudo is not as easy as it seems[1]. Every word :). But did I recollect everything in it when I originally wrote: . . . because some systems require you to be root to use 'cat ISO /dev/sdX'. ? I'd have to say not and go on to thank

Re: Full CD ISO image of Testing for USB Booting?

2013-01-17 Thread Steve McIntyre
Brian wrote: On Thu 17 Jan 2013 at 11:26:33 +0200, Andrei POPESCU wrote: 3. Inspect the stick with a partitioning tool (fdisk/parted/gparted). Not sure about the full CD images, but I know for sure the smaller images create two partitions: one for the installer (and packages, if any

Full CD ISO image of Testing for USB Booting?

2013-01-15 Thread GoOSSBears
Hey advanced Debian users, I would like to use a full CD ISO image of Testing/Wheezy (e.g., one of the downloaded CD images from an /iso-cd subfolder of [1]) to make a bootable USB stick onto a 1 GB, 2 GB or larger capacity stick. Several related questions really, all related to Section 4.3

Re: Full CD ISO image of Testing for USB Booting?

2013-01-15 Thread Brian
On Tue 15 Jan 2013 at 15:12:25 -0800, GoOSSBears wrote: Hey advanced Debian users, I would like to use a full CD ISO image of Testing/Wheezy (e.g., one of the downloaded CD images from an /iso-cd subfolder of [1]) to make a bootable USB stick onto a 1 GB, 2 GB or larger capacity stick

Laptop fan not working at full speed on Debian 6.0

2012-12-10 Thread Tom Braine
Hello! I just installed debian 6.0 squeeze on my laptop. Fan seems to work at the same speed for over 12 hours. I never had this problem while running Ubuntu or Trisquel. Fan would work for some time, then when it got really hot it would run at full speed then back to low. I didn't found anything

Re: Laptop fan not working at full speed on Debian 6.0

2012-12-10 Thread Andrei POPESCU
at full speed then back to low. But does the processor really get hot? Please post the output of acpi -V Kind regards, Andrei -- Offtopic discussions among Debian users and developers: http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic signature.asc Description: Digital

Re: Laptop fan not working at full speed on Debian 6.0

2012-12-10 Thread Tom Braine
. I never had this problem while running Ubuntu or Trisquel. Fan would work for some time, then when it got really hot it would run at full speed then back to low. But does the processor really get hot? Please post the output of acpi -V Kind regards, Andrei -- Offtopic discussions

root folder 100% full

2012-11-07 Thread G.Paulo
Caros: Deparei-me com o fato do diretório raiz estar praticamente todo cheio (ele tem apenas 938 Mb). É uma instalaćão Wheezy amd64. Os dados são estes: $ df -h Filesystem Size Used Avail Use% Mounted on rootfs

Re: root folder 100% full

2012-11-07 Thread Eden Caldas
Depois de fazer a sugestão de Paulino Kenji, executa: apt-get autoremove --purge para remover as dependências dos pacotes do kernel, ou seja, os módulos, etc. Em 7 de novembro de 2012 22:23, Paulino Kenji Sato pks...@gmail.comescreveu: Ola 2012/11/7 G.Paulo linu...@terra.com.br: Caros:

Re: full automated installation preseed without any network connection?

2012-10-20 Thread Richard Owlett
anots...@fastmail.fm wrote: Dear list, can Debian be fully automated installed when there is no network connection available? Did you actually test it? If so, can share your preseed.cfg please? Did you solve your problem(s)? I wish to do something similar, but more perhaps more

Squeeze - MySQL : erreur à chaque requete SHOW FULL FIELDS

2012-09-05 Thread Olivier
Bonjour, J'ai un système avec Squeeze, MySQL et phpMyAdmin (en version nominale). J'ai un pb étrange: quelque soit la base de données, puis la table choisie, quand je clique sur l'onglet Structure j'ai une erreur avec une requête du type mysql SHOW FULL FIELDS FROM `matable1` ; ERROR 1 (HY000

Re: Squeeze - MySQL : erreur à chaque requete SHOW FULL FIELDS

2012-09-05 Thread Bzzz
On Wed, 5 Sep 2012 18:18:59 +0200 Olivier oza_4...@yahoo.fr wrote: mysql SHOW FULL FIELDS FROM `matable1` ; ERROR 1 (HY000): Can't create/write to file '/tmp/#sql_4d3_0.MYI' (Errcode: 13) Mauvais droits sur /tmp (41777 dans mc)? -- dindin dit : vista c'est trop bon dindin dit : je coupe

Re: Squeeze - MySQL : erreur à chaque requete SHOW FULL FIELDS [RESOLU]

2012-09-05 Thread Olivier
Le 5 septembre 2012 18:25, Bzzz lazyvi...@gmx.com a écrit : On Wed, 5 Sep 2012 18:18:59 +0200 Olivier oza_4...@yahoo.fr wrote: mysql SHOW FULL FIELDS FROM `matable1` ; ERROR 1 (HY000): Can't create/write to file '/tmp/#sql_4d3_0.MYI' (Errcode: 13) Mauvais droits sur /tmp (41777 dans mc

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-22 Thread Camaleón
El Tue, 21 Aug 2012 20:31:49 +0200, Javier San Román escribió: On Martes, 21 de agosto de 2012 15:26:54 usted escribió: El Mon, 20 Aug 2012 11:43:12 -0500, Hector Garcia escribió: (...) Terminé desinstalando mysql, en cuanto el tiempo me permita seguiré probando. Personalmente me

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-22 Thread Javier San Román
On Miércoles, 22 de agosto de 2012 15:38:42 usted escribió: El Tue, 21 Aug 2012 20:31:49 +0200, Javier San Román escribió: On Martes, 21 de agosto de 2012 15:26:54 usted escribió: El Mon, 20 Aug 2012 11:43:12 -0500, Hector Garcia escribió: (...) Terminé desinstalando mysql, en cuanto el

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-21 Thread Camaleón
El Mon, 20 Aug 2012 11:43:12 -0500, Hector Garcia escribió: El día 18 de agosto de 2012 07:21, Javier San Román deb...@caolin.net escribió: On Viernes, 17 de agosto de 2012 15:55:07 usted escribió: (...) Leo el bug 682232 [1] Ese parece tu problema, sí. Y parece serio, para que luego

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-21 Thread Javier San Román
On Martes, 21 de agosto de 2012 15:26:54 usted escribió: El Mon, 20 Aug 2012 11:43:12 -0500, Hector Garcia escribió: El día 18 de agosto de 2012 07:21, Javier San Román deb...@caolin.net escribió: On Viernes, 17 de agosto de 2012 15:55:07 usted escribió: (...) Leo el bug 682232 [1]

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-20 Thread Hector Garcia
El día 18 de agosto de 2012 07:21, Javier San Román deb...@caolin.net escribió: On Viernes, 17 de agosto de 2012 15:55:07 usted escribió: El Thu, 16 Aug 2012 14:18:56 -0500, Hector Garcia escribió: Desde hace 2 dias pasó: aptitude update aptitude full-upgrade me quiso actualizar mysql

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-18 Thread Javier San Román
On Viernes, 17 de agosto de 2012 15:55:07 usted escribió: El Thu, 16 Aug 2012 14:18:56 -0500, Hector Garcia escribió: Desde hace 2 dias pasó: aptitude update aptitude full-upgrade me quiso actualizar mysql-server y mysql-server-5.5, pero con el siguiente resultado [FAIL

Re: mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-17 Thread Camaleón
El Thu, 16 Aug 2012 14:18:56 -0500, Hector Garcia escribió: Desde hace 2 dias pasó: aptitude update aptitude full-upgrade me quiso actualizar mysql-server y mysql-server-5.5, pero con el siguiente resultado [FAIL] Starting MySQL database server: mysqld

mysql-server-5.5 en wheezy error despues de aptitude full-upgrade :(

2012-08-16 Thread Hector Garcia
Buenas tardes. Desde hace 2 dias pasó: aptitude update aptitude full-upgrade me quiso actualizar mysql-server y mysql-server-5.5, pero con el siguiente resultado [FAIL] Starting MySQL database server: mysqld . . . . . . . . . . . . . . failed! invoke-rc.d: initscript mysql, action start

Re: ssh problem (possible disk full)

2012-07-18 Thread lina
$ ssh badapple df -lh Not work. the administrator can't ssh either. I don't know. at present just wait. Thanks, Best regards, -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

ssh problem (possible disk full)

2012-07-17 Thread lina
did a rough estimation that the disk was going to be full, but still seems wouldn't cross the line, possibly on the edge. Later I tried to mount the remote server into my local, so I can delete some files (hopefully). $ sshfs badapple:/home/lina pinkapple no reaction, so $ ls ls: cannot access

Re: ssh problem (possible disk full)

2012-07-17 Thread Gary Dale
to generate more than 300GB data, I did a rough estimation that the disk was going to be full, but still seems wouldn't cross the line, possibly on the edge. Later I tried to mount the remote server into my local, so I can delete some files (hopefully). $ sshfs badapple:/home/lina pinkapple

Re: ssh problem (possible disk full)

2012-07-17 Thread Bob Proulx
might not. If so then that is useful and you can actually use that to repair a broken connection. yesterday I run something, after hours, it's supposed to generate more than 300GB data, I did a rough estimation that the disk was going to be full, but still seems wouldn't cross the line, possibly

Re: full automated installation preseed without any network connection?

2012-07-11 Thread Andrei POPESCU
On Ma, 10 iul 12, 16:29:54, anots...@fastmail.fm wrote: Dear list, can Debian be fully automated installed when there is no network connection available? Could you please give more details about what you want to achieve? I'd install on a removable drive, boot the new system with it and cp

Re: full automated installation preseed without any network connection?

2012-07-11 Thread rjc
On Wed, Jul 11, 2012 at 07:11:13AM BST, Andrei POPESCU wrote: On Ma, 10 iul 12, 16:29:54, anots...@fastmail.fm wrote: Dear list, can Debian be fully automated installed when there is no network connection available? Could you please give more details about what you want to achieve?

Re: full automated installation preseed without any network connection?

2012-07-11 Thread Camaleón
On Tue, 10 Jul 2012 16:29:54 -0700, anotst01 wrote: can Debian be fully automated installed when there is no network connection available? Yes, but depending on the installation media (netiso, CD or DVD) the amount of packages you can install will vary. Did you actually test it? If so, can

Re: problem with 2 monitors and full screen games in wine

2012-07-10 Thread Roman V.Leon.
On 28.06.2012 21:47, Markus wrote: Am 25.06.2012 00:28, schrieb Markus: Hi, i am running Wheezy with 2 monitors connected to a Nvidia Geforce 9800GTX. Twin-View is configured via nvidia-settings. And i am quit happy with that setup. But...If i run a game within wine in full screen the right

full automated installation preseed without any network connection?

2012-07-10 Thread anotst01
Dear list, can Debian be fully automated installed when there is no network connection available? Did you actually test it? If so, can share your preseed.cfg please? -- http://www.fastmail.fm - IMAP accessible web-mail -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a

Re: full automated installation preseed without any network connection?

2012-07-10 Thread Istimsak
Debian can be installed with internet access. Never configured automation. That is something to experiment with. anots...@fastmail.fm wrote: Dear list, can Debian be fully automated installed when there is no network connection available? Did you actually test it? If so, can share your

Re: full automated installation preseed without any network connection?

2012-07-10 Thread anotst01
I want to install without network and automation. Is it possible? Can you share a working preseed.cfg please? -- http://www.fastmail.fm - The professional email service -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: backuppc failed full backup of itself

2012-07-02 Thread Umarzuki Mochlis
2012/6/27 Keith McKenzie km3...@gmail.com: The system isn't backed up normally, as you would have installation media to restore it; you would just backup configuration. Having said that, if you do want to back it up, use a live media, not the running system. (Usually it is only your data

<    2   3   4   5   6   7   8   9   10   11   >