Re: Another funny update?

2010-06-24 Thread Mark Knoop
At 23:58 on 23 Jun 2010, Steve Searle wrote:
 Around 11:50pm on Wednesday, June 23, 2010 (UK time), Marcel Rieux
 scrawled:
 
  Once again, and this is bound to be the last answer I give. (Michael
 
 And then 3 minutes later
 
 Around 11:53pm on Wednesday, June 23, 2010 (UK time), Marcel Rieux
 scrawled:
 
  Reinstalling to install a driver? Are you serious! That's worst
  than being back to the Windows days!
 
 Give it a rest, please.

echo m.z.ri...@gmail.com  ~/.kill_from
echo Another funny update  ~/.kill_subject

-- 
Mark Knoop
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread John Austin
On Thu, 2010-06-24 at 02:06 -0600, Linuxguy123 wrote:
 I'm moving /, /boot and swap from a conventional hard drive to an SSD.
 
 Both drives are 160 GB in size.
 
 I want to resize the /boot and swap partitions from 200 MB and 2 GB to
 500 MB and 8 GB respectively.   The first resize is because preupgrade
 now fails to run unless /boot is 500 MB or larger and the second because
 the swap file is supposed to be as big as the RAM in the computer and my
 laptop currently has 4GB and I want to upgrade to 8 GB in the future.
 
 So... I partitioned the SSD to the appropriate sizes.   I then ran
 Clonezilla and installed the /boot data seemingly without any problem.
 I used the expert mode and told it to resize things to fit the new /boot
 partition size. 
 
 Unfortunately, Clonezilla won't let me do the same for / because / on
 the SSD is 6 GB or so smaller than it was on the hard drive
 because /boot and swap are larger.
 
 So how do I move ALL the data from / on the hard drive to / on the sdd ?
 
 dd won't work because its for device files, not for partitions.  If I
 use dd between the devices, it won't resize anything.
 
 Or should I do an outright dd and then use gparted to resize everything
 afterward ? 
 
 Can one make cp copy EVERYTHING on one drive to another and keep the
 timestamps, etc, all correct ?
 
 I think I did this once a few years ago using tar, but I can't remember
 how and I think it took up a lot of disk space and took forever to run.
 
I have tried a couple of methods successfully, here are my hints files

I liked the fsarchiver method as I could save an image file containing a 
complete
replica of /, it was only 8.5GB when compressed in my case
35mins to save the file, 20 mins to restore
Maybe of some help

John

1. From this list using cpio
2. Using fsarchiver

1. cpio
From:   gary artim gar...@gmail.com
Reply-to:   Community support for Fedora users 
users@lists.fedoraproject.org
To: Community support for Fedora users users@lists.fedoraproject.org
Subject:Re: change HDD without Re-installing Fedora 12 ..
Date:   02/25/2010 05:04:17 PM

Just uses create a mirror of a system I'm running. May help?! -- gary

## Add the new disk to the system
this example assumes a /dev/sda and (new) /dev/sdb
sda has 3 partitions, 1 swap, /boot, /. / and /boot are ext3 fstype.

## create new partition on new disk

parted (you need to set the partition type as gpt)
mkpart
## (model after target disk only larger, note: change the names (labels)
##  create 3 partition /, /boot, swap)

## make filesystem and copy

mkfs.ext3 /dev/sdb3
mount /dev/sdb3 /mnt
cd /
find . -xdev | cpio -pdumv /mnt
umount /mnt

mkfs.ext3 /dev/sdb1
mount /dev/sdb1 /mnt
cd /boot
find . -xdev | cpio -pdumv /mnt
umount /mnt

## mbr copy

dd if=/dev/sda of=/dev/sdb bs=446 count=1

## fix grub
## boot fc11 recovery dvd
## (need newer grub for gpt partition tables)
## assumes your first partition has grub installed on it
grub
root (hd0,0)
setup (hd0)
exit
###
2. fsarchiver
fuerte hints_info 7# cat fsarchiver_partition_cloning_recipe
11_03_2010

Copied from ~/hints_info/backup_restore_summary
Boot from ssd1 or maybe rescueCD
Check selinux status
See http://www.fsarchiver.org/QuickStart - Execution environment
and http://www.fsarchiver.org/Attributes

Neither source nor destination are mounted

fsarchiver -o -j3 -z 6 savefs /tmp/fsarchive_sda7.fsa /dev/sda7

fsarchiver restfs /tmp/fsarchive_sda7.fsa id=0,dest=/dev/sda2,mkfs=ext3

fsarchiver copies the UUID be careful 
tune2fs -U random /dev/sda2 as required

mount /dev/sda2 /mnt/zip
nedit /mnt/zip/etc/fstabChange UUID
nedit /mnt/zip/boot/grub/grub.conf  Change root (hdx,y) and UUID

grubCheck which disk is which by root (hd1,7) say to access a 
unique partition!
root (hd0,1)
setup (hd0,1)
Rebooted - the restored partition appears clean with SElinux enabled !!
---
fsarchiver - is still in development, don't use it for critical data yet
Installed fsarchiver on F12 fuerte and tried backup of 48GB part
Speed about 0.8 GB/min
fsarchiver -o -j3 -z 6 savefs /media/max80/fsarchive_sda7.fsa /dev/sda7
Can be used on a directory but is it better than tar?
fsarchiver -o -j3 -z 6 savedir /media/max80/fsarchive_ja.fsa /home/ja

Installed fsarchiver on ssd1 and then with selinux enabled in permissive mode, 
sda7 unmounted
NB In future ideally selinux should be DISABLED
See http://www.fsarchiver.org/QuickStart - Execution environment
and http://www.fsarchiver.org/Attributes
These two URLs are very important reading - I don't understand them yet !
It is recommended to restore filesystems using fsarchiver from an environment 
where SELinux is disabled or not supported.
fsarchiver -o -j3 -z 6 savefs /tmp/fsarchive_sda7.fsa /dev/sda7
Timed at 34mins,  du -hs 21GB - 8.5GB
fsarchiver 

Re: Seeking a grep-like script

2010-06-24 Thread Dave Cross
On 10 June 2010 14:26, Bill Davidsen david...@tmr.com wrote:
 Timothy Murphy wrote:

 I'm looking for a grep-like script that searches for a given word,
 and returns the paragraphs in which it appears (rather than the lines),
 where a paragraph is defined as the material between 2 blank lines.

 All suggestions gratefully received.

 It would be relatively easy to do in perl, suggested logic is to read in a
 paragraph, check for the word, print if found. Only takes a few lines of
 code.

 If by looking for you mean finding a script which does you what you want,
 I don't know where you find it, it's a bit trivial to bother to save.

 Sample attached.

The code becomes even easier if you put Perl into paragraph mode.

#!/use/bin/perl

use strict;
use warnings;

$/ = ''; # paragraph mode - see perldoc perlvar

# Assume first argument is word to find
my $word = shift;

while () {
  print if /\b\Q$word\b/; # \Q is a safety measure - escape metacharacters
}



Cheers,

Dave...
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


automatic video processing

2010-06-24 Thread Adel ESSAFI
Hi list
I have no experience with video processing on linux. I have tried kdenlive
but the experience is not concluent.

I want to ask if it is possible to make simple video editing automatically
with line command. More precisely, I want to add a test or an image (logo)
to a video.

Could you help please.

Any input will help

Thanks in advance

Adel



-- 
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
fax: +216 71 391 166
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: automatic video processing

2010-06-24 Thread Antonio M
2010/6/24 Adel ESSAFI adeless...@gmail.com:
 Hi list
 I have no experience with video processing on linux. I have tried kdenlive
 but the experience is not concluent.

 I want to ask if it is possible to make simple video editing automatically
 with line command. More precisely, I want to add a test or an image (logo)
 to a video.

 Could you help please.

 Any input will help

 Thanks in advance

 Adel



 --
 PhD candidate in Computer Science
 Address
 3 avenue lamine, cité ezzahra, Sousse 4000
 Tunisia
 tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
 fax: +216 71 391 166

 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines



Openshot?? It should be on the way in Rpmfusion, anyway 12 Release is
working also in 13...

-- 
Antonio Montagnani
Skype : amontag52
SIP: antoniomon...@ekiga.net
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


[389-users] Install the 389 directory server error

2010-06-24 Thread sync
Hi ,all :

   When I install the 389 ds today , there is a very strange thing on
installing it .
Please see the following  messages, by the way , I installed the 389 ds
version is 1.1.3  via the rpm packages:


[r...@foo dirsrv]# setup-ds-admin.pl

==
This program will set up the 389 Directory and Administration Servers.

It is recommended that you have root privilege to set up the software.
Tips for using this program:
  - Press Enter to choose the default and go to the next screen
  - Type Control-B then Enter to go back to the previous screen
  - Type Control-C to cancel the setup program

Would you like to continue with set up? [yes]:

==
BY SETTING UP AND USING THIS SOFTWARE YOU ARE CONSENTING TO BE BOUND BY
AND ARE BECOMING A PARTY TO THE AGREEMENT FOUND IN THE
LICENSE.TXT FILE. IF YOU DO NOT AGREE TO ALL OF THE TERMS
OF THIS AGREEMENT, PLEASE DO NOT SET UP OR USE THIS SOFTWARE.

Do you agree to the license terms? [no]: yes

==
Your system has been scanned for potential problems, missing patches,
etc.  The following output is a report of the items found that need to
be addressed before running this software in a production
environment.

389 Directory Server system tuning analysis version 10-AUGUST-2007.

NOTICE : System is x86_64-unknown-linux2.6.18-128.7.1.el5 (2 processors).

WARNING: 994MB of physical memory is available on the system. 1024MB is
recommended for best performance on large production system.

NOTICE : The net.ipv4.tcp_keepalive_time is set to 720 milliseconds
(120 minutes).  This may cause temporary server congestion from lost
client connections.

WARNING: There are only 1024 file descriptors (hard limit) available, which
limit the number of simultaneous connections.

WARNING: There are only 1024 file descriptors (soft limit) available, which
limit the number of simultaneous connections.

Would you like to continue? [no]: yes

==
Choose a setup type:

   1. Express
   Allows you to quickly set up the servers using the most
   common options and pre-defined defaults. Useful for quick
   evaluation of the products.

   2. Typical
   Allows you to specify common defaults and options.

   3. Custom
   Allows you to specify more advanced options. This is
   recommended for experienced server administrators only.

To accept the default shown in brackets, press the Enter key.

Choose a setup type [2]:

==
Enter the fully qualified domain name of the computer
on which you're setting up server software. Using the form
hostname.domainname
Example: eros.example.com.

To accept the default shown in brackets, press the Enter key.

Computer name [foo]:
The hostname foo does not look like a
fully qualified host and domain name.
If you feel you have made a mistake,
please go back to this dialog and enter another name.


==
The servers must run as a specific user in a specific group.
It is strongly recommended that this user should have no privileges
on the computer (i.e. a non-root user).  The setup procedure
will give this user/group some permissions in specific paths/files
to perform server-specific operations.

If you have not yet created a user and group for the servers,
create this user and group using your native operating
system utilities.

System User [nobody]:
System Group [nobody]:

==
Server information is stored in the configuration directory server.
This information is used by the console and administration server to
configure and manage your servers.  If you have already set up a
configuration directory server, you should register any servers you
set up or create with the configuration server.  To do so, the
following information about the configuration server is required: the
fully qualified host name of the form
hostname.domainname(e.g. hostname.example.com), the port number
(default 389), the suffix, the DN and password of a user having
permission to write the configuration information, usually the
configuration directory administrator, and if you are using security
(TLS/SSL).  If you are using TLS/SSL, specify the TLS/SSL (LDAPS) port
number (default 636) instead of the regular LDAP port number, and
provide the CA certificate (in PEM/ASCII format).

If you do not yet have a configuration directory server, enter 'No' to
be prompted to set up one.

Do you want to register this software with an existing
configuration directory server? [no]:

==
Please enter 

SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread Gary Stainburn
I had to re-install windows on my laptop, and also wanted to try Fedora 13, so 
I came up with the idea of replacing the HDD and doing the installs onto 
that.

This has worked fine, and I now have a clean (but still flakey) WinXP install, 
and F13 dual booting fine.

I have now the old HDD in an external chassis connected via USB.

My problem is that neither OS will allow me access to either of the partitions 
on the old HDD. Both see the USB-SATA bridge, and see the HDD but neither 
will allow me access to the contents.

Windows just sits and smiles at me. Linux says it cannot access the drive.  
Can anyone help?

Gary

[r...@dcomp5 ~]# fdisk /dev/sdb

Unable to read /dev/sdb
[r...@dcomp5 ~]# mount -t ext3 /dev/sdb2 /media/linux/
mount: special device /dev/sdb2 does not exist
[r...@dcomp5 ~]# 


[/var/log/messages]
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: new high speed USB device using 
ehci_hcd and address 5
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: New USB device found, idVendor=152d, 
idProduct=2338
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: New USB device strings: Mfr=1, 
Product=2, SerialNumber=5
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: Product: USB to ATA/ATAPI Bridge
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: Manufacturer: JMicron
Jun 24 12:54:54 dcomp5 kernel: usb 2-2: SerialNumber: 152D203380B6
Jun 24 12:54:54 dcomp5 kernel: scsi6 : usb-storage 2-2:1.0
Jun 24 12:54:59 dcomp5 kernel: scsi 6:0:0:0: Direct-Access  
  
PQ: 0 ANSI: 2 CCS
Jun 24 12:54:59 dcomp5 kernel: sd 6:0:0:0: Attached scsi generic sg2 type 0
Jun 24 12:54:59 dcomp5 kernel: sd 6:0:0:0: [sdb] Attached SCSI disk

-- 
Gary Stainburn
 
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000 
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread Tim
On Thu, 2010-06-24 at 13:11 +0100, Gary Stainburn wrote:
 [r...@dcomp5 ~]# fdisk /dev/sdb
  
 Unable to read /dev/sdb

Should it be sdb?  Try fdisk -l to list all the drives it finds.

-- 
[...@localhost ~]$ uname -r
2.6.27.25-78.2.56.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread Gary Stainburn
On Thursday 24 June 2010 13:51:29 Tim wrote:
 On Thu, 2010-06-24 at 13:11 +0100, Gary Stainburn wrote:
  [r...@dcomp5 ~]# fdisk /dev/sdb
 
  Unable to read /dev/sdb

 Should it be sdb?  Try fdisk -l to list all the drives it finds.

 --
 [...@localhost ~]$ uname -r
 2.6.27.25-78.2.56.fc9.i686

 Don't send private replies to my address, the mailbox is ignored.  I
 read messages from the public lists.

[r...@dcomp5 ~]# fdisk -l

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x926c926c

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   *   1   14023   1126397167  HPFS/NTFS
/dev/sda2   14024   14087  512000   83  Linux
/dev/sda3   14087   14215 1024000   82  Linux swap / Solaris
/dev/sda4   14215   30402   1300224005  Extended
/dev/sda5   14215   30402   130021376   83  Linux
[r...@dcomp5 ~]# uname -a
Linux dcomp5.ringways.co.uk 2.6.33.5-124.fc13.i686.PAE #1 SMP Fri Jun 11 
09:42:24 UTC 2010 i686 i686 i386 GNU/Linux
[r...@dcomp5 ~]# 

Also found in dmesg: (full file available at 
http://www.stainburn.com/dmesg.txt )

scsi 5:0:0:0: Direct-AccessPQ: 0 ANSI: 2 
CCS
sd 5:0:0:0: Attached scsi generic sg2 type 0
sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
sd 5:0:0:0: [sdb] Using 0x as device size
sd 5:0:0:0: [sdb] 4294967296 512-byte logical blocks: (2.19 TB/2.00 TiB)
sd 5:0:0:0: [sdb] Write Protect is off
sd 5:0:0:0: [sdb] Mode Sense: 00 38 00 00
sd 5:0:0:0: [sdb] Assuming drive cache: write through
sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
sd 5:0:0:0: [sdb] Using 0x as device size
sd 5:0:0:0: [sdb] Assuming drive cache: write through
 sdb: unknown partition table
sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
sd 5:0:0:0: [sdb] Using 0x as device size
sd 5:0:0:0: [sdb] Assuming drive cache: write through
sd 5:0:0:0: [sdb] Attached SCSI disk



-- 
Gary Stainburn
 
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000 
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread Mikkel
On 06/24/2010 08:11 AM, Gary Stainburn wrote:
 Also found in dmesg: (full file available at 
 http://www.stainburn.com/dmesg.txt )
 
 scsi 5:0:0:0: Direct-AccessPQ: 0 ANSI: 2 
 CCS
 sd 5:0:0:0: Attached scsi generic sg2 type 0
 sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
 sd 5:0:0:0: [sdb] Using 0x as device size
 sd 5:0:0:0: [sdb] 4294967296 512-byte logical blocks: (2.19 TB/2.00 TiB)
 sd 5:0:0:0: [sdb] Write Protect is off
 sd 5:0:0:0: [sdb] Mode Sense: 00 38 00 00
 sd 5:0:0:0: [sdb] Assuming drive cache: write through
 sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
 sd 5:0:0:0: [sdb] Using 0x as device size
 sd 5:0:0:0: [sdb] Assuming drive cache: write through
  sdb: unknown partition table
 sd 5:0:0:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
 sd 5:0:0:0: [sdb] Using 0x as device size
 sd 5:0:0:0: [sdb] Assuming drive cache: write through
 sd 5:0:0:0: [sdb] Attached SCSI disk
 
Dumb question - is your external case rated for a drive that large?
From the messages, it sounds like the drive is too big. Depending on
the electronics, there is a drive size limit to external cases.

Mikkel
-- 

  Do not meddle in the affairs of dragons,
for thou art crunchy and taste good with Ketchup!



signature.asc
Description: OpenPGP digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [389-users] how to quickly recover from a corrupt database in multiple master configuration

2010-06-24 Thread mark benschop
Just in case anybody is interested in the reason the corruption occurred.
Apparently a rotten browsing index caused it.
An error message pointed me in this direction :
 errors:[17/Jun/2010:12:51:18 +0200] - vlv_build_idl: can't follow db cursor
(err -30989)
I deleted the browsing index from the particular ou and the problem was
gone.

On Wed, Jun 16, 2010 at 9:39 PM, Rich Megginson rmegg...@redhat.com wrote:

 mark benschop wrote:
  Hi Rich,
  Thanks for your reply.
  Please find the logging from the problems below.
  The serverb55 is one of 2 servers in a multiple masters configuration
  that consists of serverb55 and serverb05.
 
  The problem I inititially had was that I had 2 entries that could not
  be deleted serverb55.
 
  Here's logging from the access file.
  ===
  access.20100614-092820:[15/Jun/2010:09:20:49 +0200] conn=342177 op=7
  SRCH base=uid=dbeijk, ou=people, dc=directory,dc=intern scope=0
  filter=(objectClass=*) attrs=ALL
  access.20100614-092820:[15/Jun/2010:09:20:49 +0200] conn=342177 op=7
  RESULT err=0 tag=101 nentries=1 etime=0
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=8
  SRCH base=uid=dbeijk, ou=people, dc=directory,dc=intern scope=1
  filter=(objectClass=*) attrs=objectClass
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=8
  RESULT err=0 tag=101 nentries=0 etime=0 notes=U
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=9
  DEL dn=uid=dbeijk, ou=people, dc=directory,dc=intern
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=9
  RESULT err=1 tag=107 nentries=0 etime=0 csn=4c172a210037
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=10
  SRCH base=uid=dbeijk, ou=people, dc=directory,dc=intern scope=1
  filter=(objectClass=*) attrs=objectClass
  access.20100614-092820:[15/Jun/2010:09:22:08 +0200] conn=342177 op=10
  RESULT err=0 tag=101 nentries=0 etime=0 notes=U
  ===
 
  LDAP error 1 i found means 'unwiling to perform'. First I thought
  something might be wrong with the entry itself.
  The error log found in the error log from the serverb55 I've added
  below seemed to point in that direction.
 
 
  When I logged on the the other ldapserver, serverb05, I tried to
  delete the same entry to see if this slapd had the same issue but here
  it worked.
  Replicating the delete didn't. The following error was logged to the
  errorlog of this :
 
  
  [15/Jun/2010:09:35:17 +0200] NSMMReplicationPlugin -
  agmt=cn=serverb55 (serverb55:636): Consumer failed to replay change
  (uniqueid a276337c-5dc511df-852cfef8-667fa4d4, CSN
  4c172d360005): Operations error. Will retry later.
  ===
 
  So there seemed to be a problem with the serverb55 only.
  Since I assumed the database got somehow corrupt or inconsistent I've
  tried the following steps to try and recreate the database or had it
  checked in order to get it right again.
  First there's the errors from the account that could not be deleted.
  I 'reinitialised the consumer' from the working serverb05 to the
  problematic serverb55.
  Then I restarted the slapd.
  Made an export of the database and imported that.
  Slapd stopped the database.
 
  Please find the logging from /var/log/dirsrv/slapd-serverb55/errors
  from the actions leading to the problem of the fatal server stop.
  ==
  CentOS-Directory/8.1.0
  B2009.134.1334
 
  serverb55:636
  (/etc/dirsrv/slapd-serverb55)
 
 
 
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute uidNumber required by
  object class posixAccount
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute gidNumber required by
  object class posixAccount
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern -- attribute uidNumber not allowed
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute uid required by object
  class posixAccount
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute cn required by object
  class posixAccount
  [15/Jun/2010:09:22:58 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute homeDirectory required by
  object class posixAccount
  [15/Jun/2010:09:23:04 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute uidNumber required by
  object class posixAccount
  [15/Jun/2010:09:23:18 +0200] - Entry uid=dbeijk, ou=People,
  dc=directory,dc=intern missing attribute uidNumber required by
  object class posixAccount
  

RE: USB Printer Install help needed

2010-06-24 Thread Smith, Herb


 -Original Message-
 From: users-boun...@lists.fedoraproject.org [mailto:users-
 boun...@lists.fedoraproject.org] On Behalf Of Tim Waugh
 Sent: Wednesday, June 23, 2010 6:21 AM
 To: Community support for Fedora users
 Subject: RE: USB Printer Install help needed
 
 On Tue, 2010-06-22 at 13:51 -0500, Smith, Herb wrote:
  That command (executed as root) produced absolutely no response.
 
 Let's try to find out what the usb backend is actually up to.
 
 Could you please run this command as root and attach the output?:
 
 strace /usr/lib/cups/backend/usb 21 | tail -n +200
 
 It might be that you have something (perhaps the 'hp' backend?) using libusb 
 with
 the printer, preventing the usblp kernel module from getting access.
 
 Tim.
 */

I'm not sure how helpful this is, but I'm not sure what you're looking for:

strace /usr/lib/cups/backend/usb 21 | tail -n +200 
open(/dev/usblp1, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp1, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp1, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp2, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp2, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp2, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp3, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp3, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp3, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp4, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp4, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp4, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp5, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp5, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp5, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp6, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp6, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp6, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp7, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp7, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp7, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp8, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp8, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp8, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp9, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp9, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp9, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usblp10, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp10, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp10, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory) 
open(/dev/usblp11, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp11, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp11, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory) 
open(/dev/usblp12, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp12, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp12, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory) 
open(/dev/usblp13, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp13, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp13, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory) 
open(/dev/usblp14, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp14, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp14, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory) 
open(/dev/usblp15, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/lp15, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file or 
directory) 
open(/dev/usb/usblp15, O_RDWR|O_EXCL|O_LARGEFILE) = -1 ENOENT (No such file 
or directory)
exit_group(0)   = ?

Herb

-- 
users mailing list
users@lists.fedoraproject.org
To 

Re: F13 - installation problem (Anaconda + Display)

2010-06-24 Thread Richard Shaw
On Thu, Jun 24, 2010 at 8:07 AM, Federico Marziali
federico.marzi...@gmail.com wrote:
 I'm trying to install Fedora 13 on a Sony Vaio VPCF11C5E (F-series)
 and I'm incurring in the following 2 problems

 1. If I try to customize the partitioning layout, I get a python error
 and the suggestion to file a bug. I just applied for an account to
 bugzilla.redhat.com and I might try to reproduce the bug once I have
 access to bugzilla. In the meanwhile, since I'm installing on a SSD,
 I'm curious to know if somebody else had the same problem with this
 type of hard drives.
 Not sure what's going on here, but then again I wanted a striped LVM
 partition (4GB SSD, 4GB SD) so I used System Rescue CD booted on a USB
 flash drive to setup my partitions. I only let Anaconda format them.

 Oh well, I still haven't got access to bugzilla, so I'll worry to file
 a bug when I eventually get the username and password (BTW, is that
 normal that it takes so long - i.e. more than 24 hours - for an
 account?)

No, that's not normal, you might need to try again.

 2. More serious: the screen resolution used is wrong and as a result I
 can see only a portion of the screen content, which creates
 difficulties both at installation time, when one wants to click on the
 forward button :), and during normal usafe.
 After installation I tried to install the nvidia drivers from RPM
 fusion, resulting in a not anymore functioning system (the boot
 process gets till when the fedora logo gets filled up and than hangs
 there forever)
 The graphic card is a Nvidia geforce 330M.
 Specifying the parameter resolution=1920x1080 at boot time didn't help.
 Any ideas how to proceed?
 Try adding rdblacklist=nouveau to your grub kernel parameters in
/boot/grub/menu.lst. This usually happens after a fresh install
because the initial ram disk still has the nouveau driver in it and
once it's loaded the nvidia driver can't load. If the proper module
blacklist was added by the package, which it should have been, this
will be taken care of for you at the next kernel update but it doesn't
hurt to leave the kernel parameter there.

If you saw the graphical bootup (called Plymouth) and did not add a
vga= then the rdblacklist= parameter did not take. If it does and you
don't specify vga= then you should see the text mode bootup version of
Plymouth, so I would assume the nouveau driver is still loading. You
definitely need to fix this problem first.

Perhaps you can post your /boot/grub/grub.conf to the list? (this is
the same as menu.lst, in fact, menu.lst is a symbolic link to
grub.conf)

 Richard, thanks for your hint, but unfortunately this didn't fix the problem.
 I now have a black screen after the filled-up logo.
 Is there a way to boot  and loading a compatibility display driver?
 So that I can remove the nvidia packages...

 I just came across a IA 64 specific readme on the nvidia website:
 ftp://download.nvidia.com/XFree86/Linux-ia64/1.0-5336/README.IA64
 I assume that the RPMFusion package redistributes this proprietary
 driver butIs that a typo or does the above readme really state
 that the 64 bit drivers do not work with kernel 2.6???!!

I think you're confusing IA 64 with x86_64. Your system is x86 based.
I use the rpmfusion packaged driver on 3 x86_64 installs of Fedora 12
 13.

 Also, once you do that it will revert to a text mode boot up, if you
 want the graphical bootup add a vga=... kernel parameter as well.
 The best way to figure out what resolution is to manually add
 vga=ask the first time and pick one of the available resolutions,
 such as 317 or whatever it is. Once you find one you like (this will
 also affect virtual terminals), add it to your grub kernel options but
 put 0x in front of your choice, i.e.: vga=0x317
 Actually this didn't fix the problem when X gets started... it still
 leaves a portion of the screen chopped out...

I would leave the vga parameter out until you get the nouveau driver
to stop loading.

 I'm starting to wonder if these problems coudl have an easy happy
 ending by just installing the 32-bit version of fedora. :)

It may be worth a try, but I don't think your problems are 32 vs. 64
bit problems. I did a quick search online and found some bug reports
for your specific model on Ubuntu for graphical issues[1].

Richard

[1] 
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/565382
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Mounting LVM partition - was Re: SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread Michael Cronenworth
Gary Stainburn wrote:
 Can anyone please tell me how to mount the LVM so I can copy the contents
 across.

If you're using F13, you can run palimpset (a.k.a. Disk Utility from 
your ApplicationsSystem Tools menu) to perform any disk maintenance. I 
could tell you how to activate the LVM via command line but palimpset is 
so pretty. ;)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Unexplained temporary freezes in Thunderbird Fedora 13

2010-06-24 Thread Jerry Feldman
  On 06/23/2010 05:43 PM, g wrote:
 snip
 if Konstantin Svist is running 3.1 without problems, i see no reason that
 you should not be able to.

 if you reinstall, install 32 bit so you can get enigmail back.

 as you are aware of, if you start in safe-mode, extensions are disabled.

 you did say that you tried watching what else was running, but nothing
 seemed to be occurring when you had freezes.

 if you have 'ntp' enabled, try turning it off to see if it's causing any
 problems.

 also, anything else that maybe hitting internet.


I'm currently running without any extensions on 64-bit 3.1-0.2.rc2.fc14. 
Yesterday the bandwidth from work to home was constrained, but it is 
back to normal today.  My CPU is a quad-core Opteron and should not be a 
problem in that at the time of the freezes, I was running Firefox and 1 
or 2 Gnome-terminals. I'm going to use this today to see if I have any 
freezes. Running X over IP through an ssh tunnel has its own issues, so 
it really is not a valid test. I did experience a freeze while typing 
the word, 'test' in the last sentence, but as I stated, it is not a 
valid test.

My plan over the next few days is to run 64-bit 3.1 from Rawhide with no 
extensions with ntpd and possibly some other daemons disabled. Another 
possible cause is that it may be trying an IMAP sync to GMAIL.  The two 
tests here is to (1) change the timing, and (2) do offline and only 
manually get mail. After reading some of the posts on the T-Bird list, 
I'm leaning in this direction.
If things go well, then we'll re-enable some of these. I will install 
the 32-bit 3.1 with no extensions and see if that is clean, then install 
enigmail and a few other extensions after testing for a while.

The one common factor is that top shows Thunderbird using 100% CPU.

-- 
Jerry Feldmang...@blu.org
Boston Linux and Unix
PGP key id: 537C5846
PGP Key fingerprint: 3D1B 8377 A3C0 A5F2 ECBB  CA3B 4607 4319 537C 5846

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


RE: OpenOffice Crash - bad Java JRE

2010-06-24 Thread Smith, Herb


 -Original Message-
 From: users-boun...@lists.fedoraproject.org [mailto:users-
 boun...@lists.fedoraproject.org] On Behalf Of Andrew Haley
 Sent: Friday, June 18, 2010 10:33 AM
 To: users@lists.fedoraproject.org
 Subject: Re: OpenOffice Crash - bad Java JRE
 
 On 06/18/2010 04:14 PM, Smith, Herb wrote:
  I have a new F13 install, fully updated.
 
  OpenOffice crashes saying that the Java JRE is bad and that I should 
  install a new
 one and point OpenOffice to it.
 
  The only JRE that I have on the machine is what came with the F13 install.  
  Is this
 a known bug?
  Any suggestions other than installing the JRE from Sun, which I can do, no
 problem, but I didn't want to if this was going to be fixed or there was some 
 other
 obvious thing I'm missing.
 
 Please make sure that java-1.6.0-openjdk is installed with yum install 
 java-1.6.0-
 openjdk
 
 If that doesn't work, please open a new bug, make sure that the exact 
 information to
 reproduce the bug is in there, and send it to me.
 
 Andrew.
 --

Java-1.6.0-openjdk is already installed.  The yum command indicated that there 
was nothing to do.

I'll attempt the Bugzilla report as soon as I can.

Thanks
Herb

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: OpenOffice Crash - bad Java JRE

2010-06-24 Thread Frank Murphy
On 24/06/10 15:30, Smith, Herb wrote:

 Java-1.6.0-openjdk is already installed.  The yum command indicated that 
 there was nothing to do.
 

Did you install OpenOffice from fedora repo,
or OpenOffice.org ?

-- 
Regards,

Frank Murphy
UTF_8 Encoded
Friend of Fedora
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: f13-don't boot after monitor k/b and mouse change (solved)

2010-06-24 Thread Joe Feely
Rule No 1 ish.
Do the updates, and it'll probably solve itself!

Sorry for the noise.
Joe
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Fedora 13 - single pixel for GUI login screen so unable to login to Gnome/Xfce

2010-06-24 Thread Edmon Begoli
I found a bandaid fix for my problem, so I want to share.

sudo vi /etc/gconf/gconf.xml.defaults/%gconf-tree.xml

Find line:

entry name=disable_user_list mtime=1277236514
schema=/schemas/apps/gdm/simple-greeter/disable_user_list
type=bool value=true/

and change true value to false like in the example below:

entry name=disable_user_list mtime=1277236514
schema=/schemas/apps/gdm/simple-greeter/disable_user_list
type=bool value=false/

Edmon

On Thu, Jun 24, 2010 at 10:28 AM, Edmon Begoli ebeg...@gmail.com wrote:
 I see that this has been reported as a bug.

 How do I enable user login list?

 I get following error when I try to execute:

 Failed to access configuration source(s): Failed to contact
 configuration server; some possible causes are that you need to enable
 TCP/IP networking for ORBit, or you have stale NFS locks due to a
 system crash. See http://projects.gnome.org/gconf/ for information.
 (Details -  1: Not running within active session)


 when I try to execute:

 sudo /usr/bin/gconftool-2 --set --type bool --config-source
 xml:merged:/etc/gconf/gconf.xml.defaults
 /apps/gdm/simple-greeter/disable_user_list false

 Is there an easy way to change this disable_user_list setting from
 the command line?


 On Thu, Jun 24, 2010 at 9:25 AM, Edmon Begoli ebeg...@gmail.com wrote:
 I upgraded from Fedora 12 to Fedora 13 and now, when my computer boots,
 I get a login screen but the actual login box with user accounts is a
 one pixel wide.

 I tried to log in from the other machine, and I found my user accounts
 intact but the
 graphical login is squeezed-unusable.

 Does anyone have any suggestions for this problem?

 Thank you,
 EB


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: multibooting linux

2010-06-24 Thread Jerry Feldman
  On 06/23/2010 09:21 PM, Joel Rees wrote:
 On Jun 23, 2010, at 8:31 PM, Steven I Usdansky wrote:

 My vote is for one grub to rule them all,

Just want to chime in a bit. I used to multi-boot Linux years ago when I 
was running SuSE. When a new release came out I would multi-boot the old 
and new versions. I knew about the grub issues and handled them 
satisfactorily, but the issue of sharing one's home directory bit be in 
the posterior. At that time I was running KDE. At this point, the 
interaction between the old release and new release that contained an 
updated KDE essentially made my desktop unusable to where I essentially 
had to switch to GNOME (or another window manager but retaining the same 
display manager) at the time. Because I run many Linux installfests, I 
had always advocated allocating a separate /home partition.

One possible solution is to set up your real home directory with 
symlinks to different desktop configurations, such as:
/home/mydir
/home/fakeFedora12
/home/fakeFedora13
Then set up a login script to symlink the relevant configuration files 
and directories. While this is a real PIA, it allows you to have a 
single home directory, but when initially configuring your new release, 
create the fake directories, and copy your relevant configs, such as 
~/.gnome2 in these fake directories. As I said it is a real PIA, but it 
is workable, and allows you to boot into whatever system you want.

Personally, today I prefer to use VMs.

-- 
Jerry Feldmang...@blu.org
Boston Linux and Unix
PGP key id: 537C5846
PGP Key fingerprint: 3D1B 8377 A3C0 A5F2 ECBB  CA3B 4607 4319 537C 5846

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: SATA HDD in an external case over USB - 2 partitions

2010-06-24 Thread JD


On 06/24/2010 05:51 AM, Tim was caught red-handed while writing::
 On Thu, 2010-06-24 at 13:11 +0100, Gary Stainburn wrote:

 [r...@dcomp5 ~]# fdisk /dev/sdb

 Unable to read /dev/sdb
  
 Should it be sdb?  Try fdisk -l to list all the drives it finds.


Are you sure /dev/sdb exists?
Could it be /dev/sdc or sdd?
Do ls -l /dev/sdb
Also, sudo grep 'sd\.' /var/log/messages
to see how many drives were probed and attached.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


RE: OpenOffice Crash - bad Java JRE

2010-06-24 Thread Smith, Herb


 -Original Message-
 From: users-boun...@lists.fedoraproject.org [mailto:users-
 boun...@lists.fedoraproject.org] On Behalf Of Frank Murphy
 Sent: Thursday, June 24, 2010 9:35 AM
 To: users@lists.fedoraproject.org
 Subject: Re: OpenOffice Crash - bad Java JRE
 
 On 24/06/10 15:30, Smith, Herb wrote:
 
  Java-1.6.0-openjdk is already installed.  The yum command indicated that 
  there
 was nothing to do.
 
 
 Did you install OpenOffice from fedora repo, or OpenOffice.org ?
 
 --

It was installed from Fedora during my F13 install.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: strange behaviour of sssd

2010-06-24 Thread Rick Stevens
On 06/24/2010 07:05 AM, Eric Doutreleau wrote:
 well

 sorry to have disturb the list
 i found the problem
 the /etc/nsswitch.conf was not readable by regular users.

You weren't disturbing the list.  This could be a real issue for
others.  The big question is...why wasn't it readable for normal
users?  It should have mode 644.  Did you change it or did the nssd
install bugger it?  If it's the latter, then a bug report should be
filed against nssd I would imagine.

 Le 24/06/2010 14:18, Stephen Gallagher a écrit :
 On 06/24/2010 07:48 AM, Eric Doutreleau wrote:


 Le 24/06/2010 12:58, Stephen Gallagher a écrit :
 If this works with root but not with a regular user, I'd bet you that
 you're actually experiencing an SELinux denial here. Check your
 /var/log/audit.log



 hi
 i have selinux disabled on that machine
 in my audit.log file i can read
 snip


 Can you examine /var/log/sssd/sssd_default.log for any obvious errors?



-- 
--
- Rick Stevens, Systems Engineer, C2 Hosting  ri...@nerd.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-  LOOK OUT!!! BEHIND YOU!!! -
--
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Fedora 13 - single pixel for GUI login screen so unable to login to Gnome/Xfce

2010-06-24 Thread Roger K. Wells
On 06/24/2010 09:25 AM, Edmon Begoli wrote:
 I upgraded from Fedora 12 to Fedora 13 and now, when my computer boots,
 I get a login screen but the actual login box with user accounts is a
 one pixel wide.


This happened to me after installing the AccountsDialog user
management facility that was described as wonderful in a recent
e-week article.  To do anything I logged in via ssh.  Once back
in I uninstalled AcountsDialog (I think there was one dependency
that I uninstalled as well) and installed the KDE login manager.
Even after uninstalling AccoountsDialog the problem remained.
KDE log in works and I now log in from there selecting the GNOME session
option as default.  At least I am back in business.

 I tried to log in from the other machine, and I found my user accounts
 intact but the
 graphical login is squeezed-unusable.

 Does anyone have any suggestions for this problem?

 Thank you,
 EB



-- 
Roger Wells, P.E.
SAIC
221 Third St
Newport, RI 02840
401-847-4210 (voice)
401-849-1585 (fax)
roger.k.we...@saic.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Fedora 13 - single pixel for GUI login screen so unable to login to Gnome/Xfce

2010-06-24 Thread Andrew Gray
On Thu, 2010-06-24 at 11:21 -0400, Roger K. Wells wrote:
 On 06/24/2010 09:25 AM, Edmon Begoli wrote:
  I upgraded from Fedora 12 to Fedora 13 and now, when my computer boots,
  I get a login screen but the actual login box with user accounts is a
  one pixel wide.
 
 
 This happened to me after installing the AccountsDialog user
 management facility that was described as wonderful in a recent
 e-week article.  To do anything I logged in via ssh.  Once back
 in I uninstalled AcountsDialog (I think there was one dependency
 that I uninstalled as well) and installed the KDE login manager.
 Even after uninstalling AccoountsDialog the problem remained.
 KDE log in works and I now log in from there selecting the GNOME session
 option as default.  At least I am back in business.
 
  I tried to log in from the other machine, and I found my user accounts
  intact but the
  graphical login is squeezed-unusable.
 
  Does anyone have any suggestions for this problem?
 
  Thank you,
  EB
 
 
 
 -- 
 Roger Wells, P.E.
 SAIC
 221 Third St
 Newport, RI 02840
 401-847-4210 (voice)
 401-849-1585 (fax)
 roger.k.we...@saic.com
 
I had this problem upgrading from F12 to F13 using Gnome 

I found it was due to me hiding logon names, I was using:-

Don't show login names assuming your using GDM:-

gconftool-2 --direct --config-source
xml:readwrite:/etc/gconf/gconf.xml.defaults --type bool
--set /apps/gdm/simple-greeter/disable_user_list true 

re running the above setting it to false solved the logon
albeit showing the users names. 

--Andrew Gray

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F13 - installation problem (Anaconda + Display)

2010-06-24 Thread Richard Shaw
On Thu, Jun 24, 2010 at 10:17 AM, Federico Marziali
federico.marzi...@gmail.com wrote:
 2. More serious: the screen resolution used is wrong and as a result I
 can see only a portion of the screen content, which creates
 difficulties both at installation time, when one wants to click on the
 forward button :), and during normal usafe.
 After installation I tried to install the nvidia drivers from RPM
 fusion, resulting in a not anymore functioning system (the boot
 process gets till when the fedora logo gets filled up and than hangs
 there forever)
 The graphic card is a Nvidia geforce 330M.
 Specifying the parameter resolution=1920x1080 at boot time didn't help.
 Any ideas how to proceed?
 Try adding rdblacklist=nouveau to your grub kernel parameters in
/boot/grub/menu.lst. This usually happens after a fresh install
because the initial ram disk still has the nouveau driver in it and
once it's loaded the nvidia driver can't load. If the proper module
blacklist was added by the package, which it should have been, this
will be taken care of for you at the next kernel update but it doesn't
hurt to leave the kernel parameter there.

 If you saw the graphical bootup (called Plymouth) and did not add a
 vga= then the rdblacklist= parameter did not take. If it does and you
 don't specify vga= then you should see the text mode bootup version of
 Plymouth, so I would assume the nouveau driver is still loading. You
 definitely need to fix this problem first.

 Perhaps you can post your /boot/grub/grub.conf to the list? (this is
 the same as menu.lst, in fact, menu.lst is a symbolic link to
 grub.conf)

 Of couse, here it goes:

 default=0
 timeout=5
 splashimage=(hd0,4)/grub/splash.xpm.gz
 hiddenmenu
 title Fedora (2.6.33.5-124.fc13.x86_64)
        root (hd0,4)
        kernel /vmlinuz-2.6.33.5-124.fc13.x86_64 ro
 root=/dev/mapper/VolGroup-lv_root rd_LVM_LV=VolGroup/lv_root
 rd_LVM_LV=VolGroup/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM
 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=de rhgb quiet
        initrd /initramfs-2.6.33.5-124.fc13.x86_64.img
 title Fedora (2.6.33.3-85.fc13.x86_64)
        root (hd0,4)
        kernel /vmlinuz-2.6.33.3-85.fc13.x86_64 ro
 root=/dev/mapper/VolGroup-lv_root rd_LVM_LV=VolGroup/lv_root
 rd_LVM_LV=VolGroup/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM
 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=de rhgb quiet
        initrd /initramfs-2.6.33.3-85.fc13.x86_64.img
 title Windows 7 DE
        rootnoverify (hd0,1)
        chainloader +1

Let's concentrate here first. I know the email is wrapping the lines,
but where did you add the 'rdblacklist=' parameter? It should be added
to the 'kernel' line, doesn't really matter where, so after 'quiet'
you would want

rdblacklist=nouveau

 I wonder if I can just remove the nouveau drivers now that the nvidia
 ones are  somehow working.

Are you sure it's the nvidia drivers? Do you see the nvidia logo on
graphical start? You shouldn't need to remove the nouveau drivers,
just stop them from loading. Like I said, the first time you get a
kernel update it should be removed from the initial ram disk.

You should have the file /etc/modprobe.d/blacklist-nouveau.conf

If you look at it, it will give you directions on how to rebuild your
initial ramdisk using dracut if you want to get rid of nouveau, and
the need for the rdblacklist kernel parameter.

Richard
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Fedora 13 - single pixel for GUI login screen so unable to login to Gnome/Xfce

2010-06-24 Thread Roger K. Wells
On 06/24/2010 11:39 AM, Andrew Gray wrote:
 On Thu, 2010-06-24 at 11:21 -0400, Roger K. Wells wrote:

 On 06/24/2010 09:25 AM, Edmon Begoli wrote:
  
 I upgraded from Fedora 12 to Fedora 13 and now, when my computer boots,
 I get a login screen but the actual login box with user accounts is a
 one pixel wide.



 This happened to me after installing the AccountsDialog user
 management facility that was described as wonderful in a recent
 e-week article.  To do anything I logged in via ssh.  Once back
 in I uninstalled AcountsDialog (I think there was one dependency
 that I uninstalled as well) and installed the KDE login manager.
 Even after uninstalling AccoountsDialog the problem remained.
 KDE log in works and I now log in from there selecting the GNOME session
 option as default.  At least I am back in business.

  
 I tried to log in from the other machine, and I found my user accounts
 intact but the
 graphical login is squeezed-unusable.

 Does anyone have any suggestions for this problem?

 Thank you,
 EB



 -- 
 Roger Wells, P.E.
 SAIC
 221 Third St
 Newport, RI 02840
 401-847-4210 (voice)
 401-849-1585 (fax)
 roger.k.we...@saic.com

  
 I had this problem upgrading from F12 to F13 using Gnome

 I found it was due to me hiding logon names, I was using:-


I did the same thing at the time I installed AccountsDialog.
I'll bet that's the problem not AccountsDialog itself.
(Although we should be able to not show login names)
thanks for the observation.
 Don't show login names assuming your using GDM:-

 gconftool-2 --direct --config-source
 xml:readwrite:/etc/gconf/gconf.xml.defaults --type bool
 --set /apps/gdm/simple-greeter/disable_user_list true

 re running the above setting it to false solved the logon
 albeit showing the users names.

 --Andrew Gray




-- 
Roger Wells, P.E.
SAIC
221 Third St
Newport, RI 02840
401-847-4210 (voice)
401-849-1585 (fax)
roger.k.we...@saic.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: automatic video processing

2010-06-24 Thread Adel ESSAFI
2010/6/24 Antonio M antonio.montagn...@gmail.com

 2010/6/24 Adel ESSAFI adeless...@gmail.com:
  Hi list
  I have no experience with video processing on linux. I have tried
 kdenlive
  but the experience is not concluent.
 
  I want to ask if it is possible to make simple video editing
 automatically
  with line command. More precisely, I want to add a test or an image
 (logo)
  to a video.
 
  Could you help please.
 
  Any input will help
 
  Thanks in advance
 
  Adel
 
 
 
  --
  PhD candidate in Computer Science
  Address
  3 avenue lamine, cité ezzahra, Sousse 4000
  Tunisia
  tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
  fax: +216 71 391 166
 
  --
  users mailing list
  users@lists.fedoraproject.org
  To unsubscribe or change subscription options:
  https://admin.fedoraproject.org/mailman/listinfo/users
  Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 
 

 Openshot?? It should be on the way in Rpmfusion, anyway 12 Release is
 working also in 13...

I tried it. it works fine.

But, now I am looking for making simple things automatically.

Regards







 --
 Antonio Montagnani
 Skype : amontag52
 SIP: antoniomon...@ekiga.net
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines




-- 
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
fax: +216 71 391 166
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Possible NetworkManager problem, but where to look?

2010-06-24 Thread Richard Shaw
My wife's laptop has started having interesting networking issues.
She's connecting to a WPA2 secured wireless AP.

All networking communications work fine right after boot, but at some
point all connection attempts TO her computer fail, while all
networking communications coming FROM her laptop continue to work
fine. I have tried disabling the firewall but it has no affect.

Failure Observations:
- Auto-discovered printer queues drop off
- Can no longer ssh to her machine
- nmap -sS hostname can't find that she even exists. This would be
GREAT if I wanted to be stealth on a network.

Currently the workaround is to restart NetworkManager which
temporarily fixes the problem. I'm not ready to say that NM IS the
problem as it could be something else, such as a buggy driver, that's
the root cause.

So where do I start? OS is Fedora 13 x86_64 fully updated. (lspci
posted to bottom of message)

Thanks,
Richard

---

00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Acer Incorporated [ALI] Device 9602
00:05.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI
bridge (PCIE port 1)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI
bridge (PCIE port 2)
00:07.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI
bridge (PCIE port 3)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA
Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:18.0 Host bridge: Advanced Micro Devices [AMD] Mobile K10 [Turion
X2, Athlon X2, Sempron] HyperTransport Configuration (rev 40)
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 11h [Turion
X2, Athlon X2, Sempron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] Mobile K10 [Turion
X2, Athlon X2, Sempron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] Mobile K10 [Turion
X2, Athlon X2, Sempron] Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] Mobile K10 [Turion
X2, Athlon X2, Sempron] Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc RS780M/RS780MN
[Radeon HD 3200 Graphics]
03:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5764M
Gigabit Ethernet PCIe (rev 10)
06:00.0 Network controller: Atheros Communications Inc. AR928X
Wireless Network Adapter (PCI-Express) (rev 01)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Possible NetworkManager problem, but where to look?

2010-06-24 Thread Tom Horsley
On Thu, 24 Jun 2010 12:11:12 -0500
Richard Shaw wrote:

 All networking communications work fine right after boot, but at some
 point all connection attempts TO her computer fail, while all
 networking communications coming FROM her laptop continue to work
 fine.

That sounds a bit like a DHCP lease being dropped, but I'm not
sure how to check. I know I've seen behavior like this on virtual
machines with totally rotten clocks which keep time so badly they
don't think they have to renew their lease yet even though the
server has already dropped them :-).
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


hi. ^

2010-06-24 Thread Tom Weston
DIVHello,BROne of my friends bought an iphone from a
website:nbsp; A
href=http://www.myfure.com;www.myfure.com/ABRHe has got the
phone, its quality is very good. And the website is promoting their
products these days, so they have very good price and big discount
now. This website also sells tv,motor,laptop and so on. The promotion
will keep 30 days . if you need, please have a look at the website. I
am sure you will get much surprise. BRNever forget to share good
things with us!BRGreetings!/DIV f
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: hi. ^

2010-06-24 Thread jack craig


On 06/24/2010 10:43 AM, Tom Weston wrote:
 DIVHello,BROne of my friends bought an iphone from a
 website:nbsp;A
 href=http://www.myfure.com;www.myfure.com/ABRHe has got the
 phone, its quality is very good. And the website is promoting their
 products these days, so they have very good price and big discount
 now. This website also sells tv,motor,laptop and so on. The promotion
 will keep 30 days . if you need, please have a look at the website. I
 am sure you will get much surprise.BRNever forget to share good
 things with us!BRGreetings!/DIV  f

Boo Hiss...

-- 
Jack Craig
Software Engineer
831.461.7100 x120
www.extraview.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Possible NetworkManager problem, but where to look?

2010-06-24 Thread Richard Shaw
On Thu, Jun 24, 2010 at 12:48 PM, Tom Horsley horsley1...@gmail.com wrote:
 On Thu, 24 Jun 2010 12:11:12 -0500
 Richard Shaw wrote:

 All networking communications work fine right after boot, but at some
 point all connection attempts TO her computer fail, while all
 networking communications coming FROM her laptop continue to work
 fine.

 That sounds a bit like a DHCP lease being dropped, but I'm not
 sure how to check. I know I've seen behavior like this on virtual
 machines with totally rotten clocks which keep time so badly they
 don't think they have to renew their lease yet even though the
 server has already dropped them :-).

I'll take a look when I get home, but it seems unlikely. I use the
DHCP built into my Netgear FVS318G router and none of the other
computers seem to have this problem.

Richard
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Possible NetworkManager problem, but where to look?

2010-06-24 Thread Stephen Gallagher
On 06/24/2010 02:41 PM, Richard Shaw wrote:
 On Thu, Jun 24, 2010 at 12:48 PM, Tom Horsleyhorsley1...@gmail.com  wrote:
 On Thu, 24 Jun 2010 12:11:12 -0500
 Richard Shaw wrote:

 All networking communications work fine right after boot, but at some
 point all connection attempts TO her computer fail, while all
 networking communications coming FROM her laptop continue to work
 fine.

 That sounds a bit like a DHCP lease being dropped, but I'm not
 sure how to check. I know I've seen behavior like this on virtual
 machines with totally rotten clocks which keep time so badly they
 don't think they have to renew their lease yet even though the
 server has already dropped them :-).

 I'll take a look when I get home, but it seems unlikely. I use the
 DHCP built into my Netgear FVS318G router and none of the other
 computers seem to have this problem.

 Richard

Check the date and time on the machine. It's possible that you have a 
bad CMOS battery and it's losing/resetting time at random.

-- 
Stephen Gallagher
RHCE 804006346421761

Delivering value year after year.
Red Hat ranks #1 in value among software vendors.
http://www.redhat.com/promo/vendor/
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Resizing LVM-formatted partitions

2010-06-24 Thread Chris Adams
Once upon a time, Patrick O'Callaghan pocallag...@gmail.com said:
 My main disk has two partitions:
 
Device Boot  Start End  Blocks   Id  System
 /dev/sda1   *   1  25  200781   83  Linux
 /dev/sda2  26   20023   160633935   8e  Linux LVM
 
 /dev/sda1 is /boot. /dev/sda2 contains an LVM Volume Group with 3
 logical volumes (/, /home and swap).
 
 I want to increase the size of /boot from 190MB to 500MB. If I use
 gparted, I'm afraid of screwing up the LVM partition since gparted
 doesn't understand LVM.
 
 Do I need to mess with Physical Volumes to achieve this? I find the LVM
 documentation unclear, and Palimpsest doesn't seem to address this sort
 of thing.

You have to do several things (and I don't know if any of the above
tools can handle these things):

- if all space in the volume group is allocated, you have to:
  - resize one or more filesystems or swap to free up space
  - shrink the appropriate logical volume to the new size of the FS/swap
  - rearrange the physical extents so the now-unused PEs are at the end
of the VG (easiest thing to do is shrink whichever LV is last)
  - shrink the VG

- shrink the VG partition (sda2) to the same size as the VG

- use some type of smart partition tool to move the sda2 partition
  further out on the disk (I know the old Partition Magic could do this,
  but I don't know if any free tools can)

- increase the size of sda1 (repartition and then resize the FS)

The reason you have to do all of this is that /boot is not under LVM (it
can't be today because the boot loader can't load from LVM), so you have
to make space in the partition table.

Hmm, there may be one alternative; if you can free up 500M at the end of
the volume group (going through the steps above except changing sda1),
you could create an sda3 at the end of your disk.  You'd have to make
the filesystem, copy your existing /boot, change /etc/fstab, and then
re-install GRUB so it looks at sda3.

GRUB2 supports (or at least is supposed to support; I haven't used it)
booting directly from LVM, so hopefully the need for a separate /boot
will eventually go away.  There is a Fedora feature page for GRUB2 at
https://fedoraproject.org/wiki/Features/Grub2, but it doesn't appear to
have been updated in almost a year.
-- 
Chris Adams cmad...@hiwaay.net
Systems and Network Administrator - HiWAAY Internet Services
I don't speak for anybody but myself - that's enough trouble.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Firefox identity strings

2010-06-24 Thread JD
Is there a way to dynamically alter the identity strings that firefox 
sends when it connects to a web site?


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Resizing LVM-formatted partitions

2010-06-24 Thread g
Chris Adams wrote:
snip

 The reason you have to do all of this is that /boot is not under LVM (it
 can't be today because the boot loader can't load from LVM), so you have
 to make space in the partition table.

had not thought about that, and friend dave was not working with boot.

so like you say, poc will have to use 'lvreduce' to get an upper 500m0
free for his /boot.

that or copy lvm to another drive, resize and restore lvm. :(


-- 

peace out.

tc,hago.

g
.


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread Steven Stern
On 06/24/2010 02:59 PM, JD wrote:
 Is there a way to dynamically alter the identity strings that firefox
 sends when it connects to a web site?


User Agent Switcher

https://addons.mozilla.org/en-US/firefox/addon/59/

-- 
-- Steve
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread Michael Cronenworth
JD wrote:
 Is there a way to dynamically alter the identity strings that firefox
 sends when it connects to a web site?


https://addons.mozilla.org/en-US/firefox/addon/59/
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread g
JD wrote:
 Is there a way to dynamically alter the identity strings that firefox 
 sends when it connects to a web site?


yes, it is called 'user agent switcher';

  https://addons.mozilla.org/en-US/firefox/addon/59/


not in answer to your question, but a question to your posting.

why do you post original questions in 'text/html', then follow up
with 'text/plain'?


btw, please reply with 'text/plain', so i do not have to change
folders to see your answer. :)

thank you.

-- 

peace out.

tc,hago.

g
.


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: inkscape fedora 10 not working

2010-06-24 Thread Roberto Ragusa
François Patte wrote:
 Le 19/06/2010 12:25, Frank Murphy a écrit :
 On 19/06/10 11:22, François Patte wrote:
 
 Of course! It was my starting point and, as it did not work, I compiled
 the latest version

 Start it from cli and see what errors may come.
 
 No errors, nothing happens: fan speed increases a lot, cpu climbs to
 100% but whatever is the time I wait for something nothing happens
 and I have to kill the process...

Start it with strace inkscape.

-- 
   Roberto Ragusamail at robertoragusa.it
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Resizing LVM-formatted partitions

2010-06-24 Thread Patrick O'Callaghan
On Thu, 2010-06-24 at 14:44 -0500, Chris Adams wrote:
 Once upon a time, Patrick O'Callaghan pocallag...@gmail.com said:
  My main disk has two partitions:
  
 Device Boot  Start End  Blocks   Id  System
  /dev/sda1   *   1  25  200781   83  Linux
  /dev/sda2  26   20023   160633935   8e  Linux LVM
  
  /dev/sda1 is /boot. /dev/sda2 contains an LVM Volume Group with 3
  logical volumes (/, /home and swap).
  
  I want to increase the size of /boot from 190MB to 500MB. If I use
  gparted, I'm afraid of screwing up the LVM partition since gparted
  doesn't understand LVM.
  
  Do I need to mess with Physical Volumes to achieve this? I find the LVM
  documentation unclear, and Palimpsest doesn't seem to address this sort
  of thing.
 
 You have to do several things (and I don't know if any of the above
 tools can handle these things):
 
 - if all space in the volume group is allocated, you have to:
   - resize one or more filesystems or swap to free up space
   - shrink the appropriate logical volume to the new size of the FS/swap
   - rearrange the physical extents so the now-unused PEs are at the end
 of the VG (easiest thing to do is shrink whichever LV is last)
   - shrink the VG
 
 - shrink the VG partition (sda2) to the same size as the VG
 
 - use some type of smart partition tool to move the sda2 partition
   further out on the disk (I know the old Partition Magic could do this,
   but I don't know if any free tools can)
 
 - increase the size of sda1 (repartition and then resize the FS)

Yes, I pretty much feared that would be it. My caution is due to the
fact that the LVM docs don't seem to state explicitly that reducing the
size of an lv is equivalent to cutting space from the end. Lv's are
allocated in units of some-number-of-mbs and the fact that you can
reassign space between them (with appropriate resizing of filesystems)
makes me wonder about this. I recently changed the split between /
and /home and it happened instantly (not counting the resizing), i.e.
nothing in the spec leads me to believe that any physical sector copying
went on. That being the case, it's very likely that / is in fact
physically split between two different areas of the disk even though it
looks contiguous. So how can I be sure of the effect of lopping a bit
off the end of the VG and moving the whole thing up a bit?

 The reason you have to do all of this is that /boot is not under LVM (it
 can't be today because the boot loader can't load from LVM), so you have
 to make space in the partition table.
 
 Hmm, there may be one alternative; if you can free up 500M at the end of
 the volume group (going through the steps above except changing sda1),
 you could create an sda3 at the end of your disk.  You'd have to make
 the filesystem, copy your existing /boot, change /etc/fstab, and then
 re-install GRUB so it looks at sda3.

Yes, I suppose that could work.

I can't help wondering, not for the first time, whether LVM is really
worth the hassle on a desktop machine. I could have solved all this with
gparted in no time because it's very clear what is going on. These extra
levels of abstraction don't represent a win in my case.

poc

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread JD

On 06/24/2010 01:18 PM, g was caught red-handed while writing::
 JD wrote:

 Is there a way to dynamically alter the identity strings that firefox
 sends when it connects to a web site?
  

 yes, it is called 'user agent switcher';

https://addons.mozilla.org/en-US/firefox/addon/59/


 not in answer to your question, but a question to your posting.

 why do you post original questions in 'text/html', then follow up
 with 'text/plain'?


 btw, please reply with 'text/plain', so i do not have to change
 folders to see your answer. :)

 thank you.

Thank you Steven, Michael and G for the clue.
It is a good one.
re: text vs html: I had not edited the contacts in Thunderbird to set 
the preference for this list to be text only. Now it is.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Possible NetworkManager problem, but where to look?

2010-06-24 Thread Richard Shaw
On Thu, Jun 24, 2010 at 1:55 PM, Stephen Gallagher sgall...@redhat.com wrote:
 On 06/24/2010 02:41 PM, Richard Shaw wrote:
 On Thu, Jun 24, 2010 at 12:48 PM, Tom Horsleyhorsley1...@gmail.com  wrote:
 On Thu, 24 Jun 2010 12:11:12 -0500
 Richard Shaw wrote:

 All networking communications work fine right after boot, but at some
 point all connection attempts TO her computer fail, while all
 networking communications coming FROM her laptop continue to work
 fine.

 That sounds a bit like a DHCP lease being dropped, but I'm not
 sure how to check. I know I've seen behavior like this on virtual
 machines with totally rotten clocks which keep time so badly they
 don't think they have to renew their lease yet even though the
 server has already dropped them :-).

 I'll take a look when I get home, but it seems unlikely. I use the
 DHCP built into my Netgear FVS318G router and none of the other
 computers seem to have this problem.

 Richard

 Check the date and time on the machine. It's possible that you have a
 bad CMOS battery and it's losing/resetting time at random.

Hmm.. just checked it remotely:

# date
Thu Jun 24 15:50:52 CDT 2010

Richard
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Resizing LVM-formatted partitions

2010-06-24 Thread Chris Adams
Once upon a time, Patrick O'Callaghan pocallag...@gmail.com said:
 So how can I be sure of the effect of lopping a bit
 off the end of the VG and moving the whole thing up a bit?

With LVM, a physical volume (PV) belongs to a volume group (VG) and is
divided up into physical extents (PEs).  PEs are then allocated to
logical volumes (LVs).  When you take space from one LV and add it to
another, the PEs are just reassigned, not physically moved.

You can run lvdisplay --map and/or pvdisplay --map to see which PEs
belong to which LV, so you can know which LV is at the end of the VG.

You can use pvmove to move PEs from one PV to another (in the same VG);
this is useful for replacing a drive with minimal downtime.  I don't
know of a tool to move PEs around on the same PV though.
-- 
Chris Adams cmad...@hiwaay.net
Systems and Network Administrator - HiWAAY Internet Services
I don't speak for anybody but myself - that's enough trouble.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread Linuxguy123
On Thu, 2010-06-24 at 09:35 +0100, John Austin wrote:
 On Thu, 2010-06-24 at 02:06 -0600, Linuxguy123 wrote:
  I'm moving /, /boot and swap from a conventional hard drive to an SSD.
  
  Both drives are 160 GB in size.
  
  
 I have tried a couple of methods successfully, here are my hints files
 
 I liked the fsarchiver method as I could save an image file containing a 
 complete
 replica of /, it was only 8.5GB when compressed in my case
 35mins to save the file, 20 mins to restore
 Maybe of some help
 
 John

I found the easiest way to do this was to download a copy of Ubuntu 10.4
and use gparted.   It has a function to copy a partition from the source
drive to the destination drive.  Then I resized them.It was a bit
slow and tedius, but it also worked flawlessly.  Sometimes no excitement
is good.  

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread g
JD wrote:
snip

 Thank you Steven, Michael and G for the clue.

most welcome.

 It is a good one.

only one that i am aware of. it does work well.

 re: text vs html: I had not edited the contacts in Thunderbird to set 
 the preference for this list to be text only. Now it is.

thank you. now i can keep up with your post better. :D


-- 

peace out.

tc,hago.

g
.


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread JD


On 06/24/2010 02:27 PM, g was caught red-handed while writing::
 JD wrote:
 snip


 Thank you Steven, Michael and G for the clue.
  
 most welcome.


 It is a good one.
  
 only one that i am aware of. it does work well.


 re: text vs html: I had not edited the contacts in Thunderbird to set
 the preference for this list to be text only. Now it is.
  
 thank you. now i can keep up with your post better. :D


I downloaded and installed the extension
I restarted firefox when I click
Tools - Agent - Edit
To the bottom of the window is a link
Download lists of user agents to import
That link takes you to
http://chrispederick.com/work/user-agent-switcher/
There, click on Download for Firefox, etc
After download I restarted FF.
Again, I clicked Tools - Agent - Edit
and the popped windows shows no list of user agents
at all. So I created one of my own.
I tried to contact the developer about it, but
ther is not Contacts us link on the page :)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [389-users] restarting the 389 after a reboot

2010-06-24 Thread Rich Megginson
Steven Jones wrote:

 8-

  

 This is the real problem I think - looks like you've told the

 console/admin server to use SSL to connect to the directory server, but

 you haven't specified to use port 636

  

 8-

 Im not aware I did

 8-

  

 http://directory.fedoraproject.org/wiki/Howto:SSL#Console_SSL_Information

  

 see also the configuration directory ldap url - ldapurl in

 /etc/dirsrv/admin-serv/adm.conf

  

 8-

  

 Ok, I fixed the latter by editing the adm.conf to point at 
 636however I now have a SSL error...

  

 

 [r...@vuwunicooimm001 admin-serv]# ldapsearch -x -D cn=ldapadmin -w 
 XXX -b o=netscaperoot ((nsServerID=slapd-vuwunicooimm001))

 ldap_bind: Can't contact LDAP server (-1)

 additional info: error:14090086:SSL 
 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

Why is /usr/bin/ldapsearch attempting to use SSL by default?  What's in 
your /etc/openldap/ldap.conf or ~/.ldaprc?

 

  

 Ive tried using this syntax but with no joy...

  

 ldapmodify -x -D cn=directory manager -w password

 dn: dn of your server instance entry

 changetype: modify

 replace: nsServerSecurity

 nsServerSecurity: on

  

 so my command is,

  

 ldapmodify -x -D cn=lpdapadmin -w password XXX 
 dn:vuwunicooimm001.vuw.ac.nz changetype: modify replace: 
 nsServerSecurity nsServerSecurity on

? this is all on one command line?I guess it's not clear from the 
example, but ldapmodify by default wants to read the LDIF input from 
stdin - so after you type in
$ ldapmodify -x -D cn=lpdapadmin -w password XXX
it will wait for you to type in the rest on stdin, followed by a blank 
line (i.e. hit Enter twice) followed by Ctrl-C or Ctrl-D to get out of 
ldapmodify

you could also dump those commands in a file and run
$ ldapmodify -x -D cn=lpdapadmin -w password XXX -f /path/to/file.ldif

  

 which fails..

  

 Doing a,

  

 [r...@vuwunicooimm001 admin-serv]# certutil -d . -L

  

 ===

 Certificate Nickname Trust 
 Attributes

  
 SSL,S/MIME,JAR/XPI

  

 VUW CA cert  CT,,

 ==

  

 So I dont know if cutting and pasting the errors work, anyway, 
 attempting to restart the console I get,

  

  

 So I put in the details,

  

  

 Which fails,

Is the directory server listening for TLS/SSL requests on port 636?  
That is, have you configured the directory server for TLS/SSL and have 
you confirmed that it is listening?

  

  

 error log for adminserv

  

  

 ==

 [Fri Jun 25 09:19:22 2010] [notice] [client 127.0.0.1] 
 admserv_host_ip_check: ap_get_remote_host could not resolve 127.0.0.1

 [Fri Jun 25 09:19:22 2010] [notice] [client 127.0.0.1] 
 admserv_host_ip_check: host [localhost.localdomain] did not match 
 pattern [*.vuw.ac.nz] -will scan aliases

 [Fri Jun 25 09:19:22 2010] [notice] [client 127.0.0.1] 
 admserv_host_ip_check: host alias [localhost] did not match pattern 
 [*.vuw.ac.nz]

 [Fri Jun 25 09:19:22 2010] [debug] mod_admserv/mod_admserv.c(2762): 
 admserv_check_user_id

 [Fri Jun 25 09:19:22 2010] [debug] mod_admserv/mod_admserv.c(1910): 
 [25584] cache entry not found for user [ldapadmin]

 [Fri Jun 25 09:19:22 2010] [debug] mod_admserv/mod_admserv.c(1918): 
 [25584] user [ldapadmin] not cached - reason user not in cache

 [Fri Jun 25 09:19:22 2010] [crit] buildUGInfo(): unable to initialize 
 TLS connection to LDAP host vuwunicooimm001.vuw.ac.nz port 636: 4

 [Fri Jun 25 09:19:22 2010] [notice] [client 127.0.0.1] 
 admserv_check_authz(): passing [/admin-serv/authenticate] to the 
 userauth handler

 [Fri Jun 25 09:19:22 2010] [crit] buildUGInfo(): unable to initialize 
 TLS connection to LDAP host vuwunicooimm001.vuw.ac.nz port 636: 4

 [Fri Jun 25 09:19:22 2010] [debug] mod_admserv/mod_admserv.c(2609): 
 userauth, bind (null)

 =

  

  

 regards

Before you do anything else, confirm that the directory server is indeed 
listening for TLS/SSL requests on port 636.

  

  

  

  

  

  

  

 

 --
 389 users mailing list
 389-us...@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/389-users

--
389 users mailing list
389-us...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-users


Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread Kam Leo
On Thu, Jun 24, 2010 at 2:09 PM, Linuxguy123 linuxguy...@gmail.com wrote:
 On Thu, 2010-06-24 at 09:35 +0100, John Austin wrote:
 On Thu, 2010-06-24 at 02:06 -0600, Linuxguy123 wrote:
  I'm moving /, /boot and swap from a conventional hard drive to an SSD.
 
  Both drives are 160 GB in size.
 
 
 I have tried a couple of methods successfully, here are my hints files

 I liked the fsarchiver method as I could save an image file containing a 
 complete
 replica of /, it was only 8.5GB when compressed in my case
 35mins to save the file, 20 mins to restore
 Maybe of some help

 John

 I found the easiest way to do this was to download a copy of Ubuntu 10.4
 and use gparted.   It has a function to copy a partition from the source
 drive to the destination drive.  Then I resized them.    It was a bit
 slow and tedius, but it also worked flawlessly.  Sometimes no excitement
 is good.

The Clonezilla and Parted Magic distros have all the tools that you need.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Waffle was: Re: hi. ^

2010-06-24 Thread Frank Murphy
On 24/06/10 19:17, jack craig wrote:

 Boo Hiss...
 

Remember the Snippidy Snip
We've now seen it twice.

-- 
Regards,

Frank Murphy
UTF_8 Encoded
Friend of Fedora
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [389-users] restarting the 389 after a reboot

2010-06-24 Thread Steven Jones
Steven Jones wrote:

8-


 see also the configuration directory ldap url - ldapurl in

 /etc/dirsrv/admin-serv/adm.conf
  
8-  

 Ok, I fixed the latter by editing the adm.conf to point at 
 636however I now have a SSL error... 

 

 [r...@vuwunicooimm001 admin-serv]# ldapsearch -x -D cn=ldapadmin -w 
 XXX -b o=netscaperoot ((nsServerID=slapd-vuwunicooimm001))

 ldap_bind: Can't contact LDAP server (-1)

 additional info: error:14090086:SSL 
 routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

Why is /usr/bin/ldapsearch attempting to use SSL by default?  What's in 
your /etc/openldap/ldap.conf or ~/.ldaprc?

Ok, fixed

ldaps changed to ldap


 

  

 Ive tried using this syntax but with no joy...

  

 ldapmodify -x -D cn=directory manager -w password

 dn: dn of your server instance entry

 changetype: modify

 replace: nsServerSecurity

 nsServerSecurity: on

  

 so my command is,

  

 ldapmodify -x -D cn=lpdapadmin -w password XXX 
 dn:vuwunicooimm001.vuw.ac.nz changetype: modify replace: 
 nsServerSecurity nsServerSecurity on

? this is all on one command line? 


Yes...


   I guess it's not clear from the 
example, but ldapmodify by default wants to read the LDIF input from 
stdin - so after you type in

OK...


$ ldapmodify -x -D cn=lpdapadmin -w password XXX
it will wait for you to type in the rest on stdin, followed by a blank 
line (i.e. hit Enter twice) followed by Ctrl-C or Ctrl-D to get out of 
ldapmodify


===
[r...@vuwunicooimm001 admin-serv]# ldapmodify -x -D cn=lpdapadmin
ldap_bind: Server is unwilling to perform (53)
additional info: Unauthenticated binds are not allowed
[r...@vuwunicooimm001 admin-serv]# ldapsearch -x -D cn=ldapadmin -w XX
ldap_bind: No such object (32)
[r...@vuwunicooimm001 admin-serv]#
===

um?


you could also dump those commands in a file and run
$ ldapmodify -x -D cn=lpdapadmin -w password XXX -f /path/to/file.ldif

===
[r...@vuwunicooimm001 admin-serv]# ldapmodify -x -D cn=lpdapadmin -w 
cvbrty542 -f file.ldif
ldap_bind: No such object (32)
[r...@vuwunicooimm001 admin-serv]#
===

8--

Is the directory server listening for TLS/SSL requests on port 636?  
That is, have you configured the directory server for TLS/SSL and have 
you confirmed that it is listening?

8-

Before you do anything else, confirm that the directory server is indeed 
listening for TLS/SSL requests on port 636.


=
[r...@vuwunicooimm001 admin-serv]# netstat -a -n |grep :636
tcp0  0 127.0.0.1:49186 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:49185 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35428 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35429 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35430 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35424 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35425 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35426 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35427 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35412 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35413 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35414 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35415 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35408 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35409 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35410 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35411 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35420 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35421 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35422 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35423 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35416 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35417 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35418 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35419 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35404 127.0.0.1:636   
TIME_WAIT   
tcp0  0 127.0.0.1:35405 

Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread Patrick Bartek
--- On Thu, 6/24/10, Linuxguy123 linuxguy...@gmail.com wrote:

 I'm moving /, /boot and swap from a
 conventional hard drive to an SSD.
 
 Both drives are 160 GB in size.
 
 I want to resize the /boot and swap partitions from 200 MB
 and 2 GB to
 500 MB and 8 GB respectively.   The first
 resize is because preupgrade
 now fails to run unless /boot is 500 MB or larger and the
 second because
 the swap file is supposed to be as big as the RAM in the
 computer and my
 laptop currently has 4GB and I want to upgrade to 8 GB in
 the future.
 
 [snip]
 So how do I move ALL the data from / on the hard drive to /
 on the sdd ?
 
 dd won't work because its for device files, not for
 partitions.  If I
 use dd between the devices, it won't resize anything.

In Linux, everything's a file. ;-)

No, dd won't resize a partition, but you can use it to copy the filesystem 
from one partition to another of the same size or larger, then just resize the 
filesystem using an appropriate tool.  I've done this.  Not that hard at all.

 Or should I do an outright dd and then use gparted to
 resize everything
 afterward ? 

I would dd the filesystem on each partition separately for safety.  Not the 
whole drive.  Although, what you said above will work.

 Can one make cp copy EVERYTHING on one drive to another and
 keep the
 timestamps, etc, all correct ?
 [snip]

I've used cp with the -a ARCHIVE switch set, and it worked quite well. The 
copied files should be exact duplicates of the old.  However, I copied the 
contents of one partition at a time.  Never tried to do a whole drive all at 
once.

B
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


uuid - /dev/sdx partition resize

2010-06-24 Thread Robert Arkiletian
I have 1 drive /dev/sda (which is actually a hardware raid 10 array
but Fedora doesn't know that)

I want to resize my partitions bigger.
Going to use Clonezilla to make an image of each partition and save it
on another box.

Then re-partition and format new bigger partitions.
Then restore images with Clonezilla.

But I know UUID's will be wrong and I don't feel like creating new
ones. I just want to use /dev/sdx

Am I correct in assuming I only need to edit /etc/fstab and /etc/grub.conf
or is there anything else I need to edit?

-- 
Robert Arkiletian
Eric Hamber Secondary, Vancouver, Canada
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: uuid - /dev/sdx partition resize

2010-06-24 Thread Linuxguy123
On Thu, 2010-06-24 at 16:19 -0700, Robert Arkiletian wrote:
 I have 1 drive /dev/sda (which is actually a hardware raid 10 array
 but Fedora doesn't know that)
 
 I want to resize my partitions bigger.
 Going to use Clonezilla to make an image of each partition and save it
 on another box.
 
 Then re-partition and format new bigger partitions.
 Then restore images with Clonezilla.
 
 But I know UUID's will be wrong and I don't feel like creating new
 ones. I just want to use /dev/sdx
 
 Am I correct in assuming I only need to edit /etc/fstab and /etc/grub.conf
 or is there anything else I need to edit?

I highly recommend using gparted.  I used it via Ubuntu 10.4 live.   I
am not sure if its on the Fedora live distros or not. 

With gparted you don't need to copy any of the filesystem anywhere.  It
will resize the partition and move the data on the drive without copying
it anywhere.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread JD


On 06/24/2010 04:12 PM, Patrick Bartek was caught red-handed while 
writing::
 --- On Thu, 6/24/10, Linuxguy123linuxguy...@gmail.com  wrote:


 I'm moving /, /boot and swap from a
 conventional hard drive to an SSD.

 Both drives are 160 GB in size.

 I want to resize the /boot and swap partitions from 200 MB
 and 2 GB to
 500 MB and 8 GB respectively.   The first
 resize is because preupgrade
 now fails to run unless /boot is 500 MB or larger and the
 second because
 the swap file is supposed to be as big as the RAM in the
 computer and my
 laptop currently has 4GB and I want to upgrade to 8 GB in
 the future.

 [snip]
 So how do I move ALL the data from / on the hard drive to /
 on the sdd ?

 dd won't work because its for device files, not for
 partitions.  If I
 use dd between the devices, it won't resize anything.
  
 In Linux, everything's a file. ;-)

 No, dd won't resize a partition, but you can use it to copy the filesystem 
 from one partition to another of the same size or larger, then just resize 
 the filesystem using an appropriate tool.  I've done this.  Not that hard at 
 all.


 Or should I do an outright dd and then use gparted to
 resize everything
 afterward ?
  
 I would dd the filesystem on each partition separately for safety.  Not the 
 whole drive.  Although, what you said above will work.


 Can one make cp copy EVERYTHING on one drive to another and
 keep the
 timestamps, etc, all correct ?
 [snip]
  
 I've used cp with the -a ARCHIVE switch set, and it worked quite well. The 
 copied files should be exact duplicates of the old.  However, I copied the 
 contents of one partition at a time.  Never tried to do a whole drive all at 
 once.

 B

If you dd partition A on drive 1  to partition B from drive 2, and the 
size of partition B is
LARGER that partition A, then the size of the FILESYSTEM on partition B 
will be identical to size of partition A. In other words, the filesystem 
superblock will retain the info about the size that it occupied on 
partition A - and thus you will  not be able to take advantage of the 
full size of partition B.
If B is bigger than A, then you need to do something different:
Boot any Linux System Rescue CD, and DO NOT ALLOW IT TO MOUNT ANY LINUX 
SYSTEM IT FINDS.
That is important.
After you have fdisk'ed your partitions on the new drive,
and mkfs'ed the correct filesystems on those partitions:
1. mkdir -p /disk1/part1 /disk1/part2 ...etc
2. mount these partitions. i.e.
mount /dev/sda1 /disk1/part1; mount /dev/sda2 /disk1/part2
3. mkdir -p /disk2/part1 /disk2/part2 etc
4. mount these partitions. i.e.
mount /dev/sdb1 /disk2/part1; mount /dev/sdb2 /disk2/part2
5. cd /disk1/part1
6. tar cf - . | tar -C /disk2/part1 -xpf -

similarly repeat steps 5 and 6 for part2, part3, ...etc; i.e.
cd /disk1/part2
tar cf - . | tar -C /disk2/part2

As far as swap partitions (I asume you created them on disk 2:
mkswap /dev/sdbX where X is the number of the swap partition.

Good luck
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Firefox identity strings

2010-06-24 Thread Tim
On Thu, 2010-06-24 at 15:51 -0700, JD wrote:
 Found a large list of user agents strings.
 wget -c -ndH
 http://qainsight.net/content/binary/AgentStrings20070304.xml
 and import it into the  userAgent

What?!  There's no Commodore 64 in there.  ;-)  I used to see one
occasionally pop up in my web logs.

-- 
[...@localhost ~]$ uname -r
2.6.27.25-78.2.56.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: How do I clone a drive and resize (downsize) a partition ? fdisk verify warning.

2010-06-24 Thread Linuxguy123
On Thu, 2010-06-24 at 17:10 -0700, JD wrote:

 If you dd partition A on drive 1  to partition B from drive 2, and the 
 size of partition B is
 LARGER that partition A, then the size of the FILESYSTEM on partition B 
 will be identical to size of partition A. In other words, the filesystem 
 superblock will retain the info about the size that it occupied on 
 partition A - and thus you will  not be able to take advantage of the 
 full size of partition B.
 If B is bigger than A, then you need to do something different:
 Boot any Linux System Rescue CD, and DO NOT ALLOW IT TO MOUNT ANY LINUX 
 SYSTEM IT FINDS.
 That is important.
 After you have fdisk'ed your partitions on the new drive,
 and mkfs'ed the correct filesystems on those partitions:
 1. mkdir -p /disk1/part1 /disk1/part2 ...etc
 2. mount these partitions. i.e.
 mount /dev/sda1 /disk1/part1; mount /dev/sda2 /disk1/part2
 3. mkdir -p /disk2/part1 /disk2/part2 etc
 4. mount these partitions. i.e.
 mount /dev/sdb1 /disk2/part1; mount /dev/sdb2 /disk2/part2
 5. cd /disk1/part1
 6. tar cf - . | tar -C /disk2/part1 -xpf -
 
 similarly repeat steps 5 and 6 for part2, part3, ...etc; i.e.
 cd /disk1/part2
 tar cf - . | tar -C /disk2/part2
 
 As far as swap partitions (I asume you created them on disk 2:
 mkswap /dev/sdbX where X is the number of the swap partition.
 
 Good luck

Or you could just use gparted !


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: multibooting linux

2010-06-24 Thread Tom Horsley
On Thu, 24 Jun 2010 17:03:28 -0700 (PDT)
Patrick Bartek wrote:

 Doesn't the hibernated system(s) file(s) have a unique name(s) or 
 designation(s) in the swap, so there'll be no conflicts?  Seems the smart 
 thing to do.

It has a unique ID so it can tell if it should resume from hibernate,
but if there is only one sawp, there is only one hibernate image
in that one swap.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Wireless problem in Fedora13

2010-06-24 Thread Thomas Taylor
Hi all;

Recently installed Fedora13 and am working through problems.  I've managed to
solve most by lots of reading documentation and googling but am being frustated
with wireless not working in KDE.  It's working fine in Gnome but I prefer KDE.

I've tried both using NetworkManager and traditional (ifup) methods but can't
get associated with my wireless router except in Gnome.  The router (Linksys
WRT54G) is set to not broadcast ESSID.  I can see it with iwlist wlan0 scan but
only Gnome will associate with it.

It's my understanding that both Gnome and KDE use NetworkManager but with
different GUIs.  If that is so, why won't both associate?

Any comments or suggestions gladly accepted.

Thanks, Tom

-- 
Tom Taylor - retired penguin
openSuSE 11.3-RC1 x86_64
Fedora13
KDE 4.4.3, FF 3.6.4
claws-mail 3.7.6
registered linux user 263467
linxt-At-comcast-DoT-net
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Wireless problem in Fedora13

2010-06-24 Thread Tim
On Thu, 2010-06-24 at 18:24 -0700, Thomas Taylor wrote:
 I've tried both using NetworkManager and traditional (ifup) methods
 but can't get associated with my wireless router except in Gnome.  The
 router (Linksys WRT54G) is set to not broadcast ESSID.  I can see it
 with iwlist wlan0 scan but only Gnome will associate with it.
  
 .

 Any comments or suggestions gladly accepted.

Since you say any suggestions...   start broadcasting the ESSID.  Hiding
it doesn't protect anything, *at* *all*.  It *never* has, and it *never*
well.  But it certainly makes finding and selecting the right access
point to use harder than it needs to be.

-- 
[...@localhost ~]$ uname -r
2.6.27.25-78.2.56.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Kernel boot problems or is my hard drive failing ?

2010-06-24 Thread Linuxguy123
Update

I cloned the original 160 GB hard drive onto a new 160 GB SSD.  The
booting problem is even worse now.   It used to take 2-6 tries to get my
laptop to boot.  Now it takes about 10.

The SMART tests from the original 160 GB drive all came back fine.  So
did all the fscks.

I've run the bios memory check and it comes back fine too.

The boot problem also occurred when I booted the ubuntu 10.4 live CD.

Any ideas ?

Thanks







On Tue, 2010-01-05 at 12:14 -0700, Linuxguy123 wrote:
 If I power down my laptop via the usual KStart-Shutdown means, it can
 take up to 4 restart attempts before it fully boots. 
 
 It has no problem launching grub and the kernel selection screen.  That
 it does reliably every time.   After that, there are issues.  
 
 Twice I will get a back screen with a flashing cursor.  Then I will get
 an ehci -19 error.  Then it will boot properly. 
 
 My fscks are fine.  I had a block error once, about two weeks ago, but
 that was with an older F12 kernel after completely crashing during a
 resume from suspend to RAM.  
 
 Is anyone else experiencing a problem booting ?   Does this sound like a
 kernel problem or is my hard drive failing ? 
 
 Thanks
 
 $ uname -a
 Linux localhost.localdomain 2.6.31.9-174.fc12.i686.PAE #1 SMP Mon Dec 21
 06:04:56 UTC 2009 i686 i686 i386 GNU/Linux
 


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Bugzilla 513386 - Removing large file kills JFS

2010-06-24 Thread moodyjunk
This problem seems to have been written against FC11.  How can I tell if it 
exists in FC12?  

I've moved to FC12 and all my data filesystems are JFS.  Mount fails with 
unknown filesystem type 'jfs' even if a new filesystem is created with 
jfs_mkfs on this system and jfs_fsck reports it as clean.  So, I can create the 
jfs filesystem, and validate it is good, I just can't mount and use it.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Kernel boot problems or is my hard drive failing ?

2010-06-24 Thread Peter Langfelder
On Thu, Jun 24, 2010 at 5:53 PM, Linuxguy123 linuxguy...@gmail.com wrote:
 Update

 I cloned the original 160 GB hard drive onto a new 160 GB SSD.  The
 booting problem is even worse now.   It used to take 2-6 tries to get my
 laptop to boot.  Now it takes about 10.

 The SMART tests from the original 160 GB drive all came back fine.  So
 did all the fscks.

 I've run the bios memory check and it comes back fine too.

 The boot problem also occurred when I booted the ubuntu 10.4 live CD.

 Any ideas ?

Unless the BIOS memory test is exhaustive rather than quick, run
memtest. However, it could also be a motherboard problem or problem
with seating of the internal boards in the machine.

Peter
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: multibooting linux

2010-06-24 Thread g
Patrick Bartek wrote:
snip

 Wouldn't the sleeping/hibernating system file have a unique designation?

i have never looked into what is actually done, but i would imagine that
within first few bytes of *swap partition* there would be some form of
coding to indicate if partition contained hibernation data. for sure, if
you designate in grub.config menu that there is a swap/hibernation/restore
partition, there is a check made during system boot.

as to bytes being unique to a particular distrib and version, i can not say.

if it does not designate such, there can/may/will be problems when booting
system tries to restore from a hibernation it did not set up.

 During the days of the 1024 cylinder limit a single /boot partition was 
 SOP.  Never had any problems booting multiple Linux installs with different
  kernels, etc.

'boot' or '/boot'?

how many of those systems had hibernation?

also, remember, 1024 cylinders were both physical and logical.

one cylinder could have been 2 to 256 surfaces, depending on how many
platters and read/write heads where used and how oem configured.

or was 64 or 512? too long to recall. :)

 True.  But, as you said, you'd have to be careful with the bookkeeping to 
 keep everything straight.  K.I.S.S. is my motto.  Also, You can't fix 
 stupid! ;-)

well i guess that shows i am not stupid because i do it and have not problems
with 4 different installations.


snip

 There are other ways, yes, but whether they're better depends on user 
 needs and system requirements.

if one '/home' can be shared among 4 installations, i would say that is a
better way to make use of a '/home' partition and disk space.

 Used to when testing a particular distro for consideration, I would install
 the entire distro on its / partition.  No /home or /boot, etc. partitions.
 Then edit my default system's grub.conf to boot it directly. No 
 chainloading. I might 4 or 5 distro tests done this way.  Not the best 
 way, but it kept everything isolated and made it easy to get rid of 
 completely when I wanted to.

this i do also, but after testing, i move user's home directory to '/home'
partition with a new name and then alter 'passwd' and 'fstab' to show
changes. '/boot' i leave alone.

 Today, I use VMs.  Much easier.

if i had fast multi core / cpu and enough memory, i would be running a vm.
at this time it is not possible.

problem is, when i can afford them, by then, with new mainboard, i will not
have to give up keyboard and thumb marble i now use because they are ps2. :(


anyway, as i said, what works for you and you can maintain, that is what
you should use. and 'you' as plural.


-- 

peace out.

tc,hago.

g
.


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Kernel boot problems or is my hard drive failing ?

2010-06-24 Thread JD


On 06/24/2010 05:53 PM, Linuxguy123 was caught red-handed while writing::
 Update

 I cloned the original 160 GB hard drive onto a new 160 GB SSD.  The
 booting problem is even worse now.   It used to take 2-6 tries to get my
 laptop to boot.  Now it takes about 10.

 The SMART tests from the original 160 GB drive all came back fine.  So
 did all the fscks.

 I've run the bios memory check and it comes back fine too.

 The boot problem also occurred when I booted the ubuntu 10.4 live CD.

 Any ideas ?

 Thanks







 On Tue, 2010-01-05 at 12:14 -0700, Linuxguy123 wrote:

 If I power down my laptop via the usual KStart-Shutdown means, it can
 take up to 4 restart attempts before it fully boots.

 It has no problem launching grub and the kernel selection screen.  That
 it does reliably every time.   After that, there are issues.

 Twice I will get a back screen with a flashing cursor.  Then I will get
 an ehci -19 error.  Then it will boot properly.

 My fscks are fine.  I had a block error once, about two weeks ago, but
 that was with an older F12 kernel after completely crashing during a
 resume from suspend to RAM.

 Is anyone else experiencing a problem booting ?   Does this sound like a
 kernel problem or is my hard drive failing ?

 Thanks

 $ uname -a
 Linux localhost.localdomain 2.6.31.9-174.fc12.i686.PAE #1 SMP Mon Dec 21
 06:04:56 UTC 2009 i686 i686 i386 GNU/Linu

I think you are having some real HARDWARE problems.
Do you have a standalone CD that does a comprehensive
test of all hardware components present?
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: multibooting linux

2010-06-24 Thread Jamie Bohr
On Tue, Jun 22, 2010 at 4:32 PM, Mats u...@comhem.se wrote:

 Hi,
 I want to have (at least) two linux-system (no windows) on the same hd.
 If I make two partitions for the first (/ and swap) and then the same
 with the other one. Is that ok? All detailed explanation I've seen is
 about installing windows and linux and that's not what I want.

 /Mats

 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines



Have you thought about virtualization?  Fedora comes with a few options to
choose from.  KVM is good and is what I use.  This may not meet you needs
but it is was I recommend if you have the hardware that can support it.

-- 
Jamie Bohr
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Wireless problem in Fedora13

2010-06-24 Thread JD


On 06/24/2010 06:24 PM, Thomas Taylor was caught red-handed while writing::
 Hi all;

 Recently installed Fedora13 and am working through problems.  I've managed to
 solve most by lots of reading documentation and googling but am being 
 frustated
 with wireless not working in KDE.  It's working fine in Gnome but I prefer 
 KDE.

 I've tried both using NetworkManager and traditional (ifup) methods but can't
 get associated with my wireless router except in Gnome.  The router (Linksys
 WRT54G) is set to not broadcast ESSID.  I can see it with iwlist wlan0 scan 
 but
 only Gnome will associate with it.

 It's my understanding that both Gnome and KDE use NetworkManager but with
 different GUIs.  If that is so, why won't both associate?

 Any comments or suggestions gladly accepted.

 Thanks, Tom


To debug the problem, you need to add -dd to
/etc/sysconfig/wpa_supplicant. I myself do not
use the Network Manager.
So in /etc/sysconfig/wpa_supplicant, I added -dd
as you see below.
# Other arguments
#   -u   Enable the D-Bus interface (required for use with NetworkManager)
#   -f   Log to /var/log/wpa_supplicant.log
OTHER_ARGS= -dd -f /var/log/wpa_supplicant.log

Once you add the flag, then
sudo service wpa_supplicant restart

After that, do

tail -f /var/log/wpa_supplicant.log
to see what messages you get.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Bugzilla 513386 - Removing large file kills JFS

2010-06-24 Thread JD


On 06/24/2010 06:51 PM, moodyj...@frontiernet.net was caught red-handed 
while writing::
 This problem seems to have been written against FC11.  How can I tell if it 
 exists in FC12?

 I've moved to FC12 and all my data filesystems are JFS.  Mount fails with 
 unknown filesystem type 'jfs' even if a new filesystem is created with 
 jfs_mkfs on this system and jfs_fsck reports it as clean.  So, I can create 
 the jfs filesystem, and validate it is good, I just can't mount and use it.

id you lsmod | grep jfs   does it show
the jfs kernel modules loaded?

On my version of vanilla kernel, the module is
located here:

/lib/modules/2.6.34-git16.fc13.i686/kernel/fs/jfs/jfs.ko

If it does exist in your os directory, then
you might try to modprobe jfs
if not, you need to build the module from source.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Mounting .vdi files on the host

2010-06-24 Thread JD
In case some one might benefit from this write-up I found:
http://www.raiden.net/articles/howto_accessing_virtualbox_vdi_disks_on_the_host_computer/

Apparently it only works for fixed-size vdi disks, and not the dynamic ones.

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


[OT] rather advanced video editing question

2010-06-24 Thread Petrus de Calguarium
I have 2 versions of the same video from you tube.

Version 1: in 2 separate segments, great video, bad audio with long silences
Version 2: in 1 long file, poor grainy video, great flawless audio

Concatenated, if that is possible, both versions would have the same length.

Question: How can I join the 2 files from Version 1, erase the audio and 
supplement it with the audio from version 2 (using programs available in fedora 
 rpmfusion repos, of course)?


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [OT] rather advanced video editing question

2010-06-24 Thread Michael Cronenworth
On 06/24/2010 10:48 PM, JD wrote:
 If you do figure out how to use kdenlive to splice 2 streams togeter,
 please let me know.
 I have some similar things I would like to do using a gui interface.


Track 1 - Video A - Audio A
Track 2 - Video B - Audio B

-Uncheck the audio box for track 1.
-Render video output.

Output is Video A - Audio B. ;)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Slow CD access while ripping music CD

2010-06-24 Thread JD


On 06/24/2010 08:59 PM, Paolo Galtieri was caught red-handed while 
writing::
   ata2.00: configured for PIO0


Why is it configured in programmed I/O mode?
I think this is your problem!
Here's my dvdrw drive as probed by the kernel:
/var/log/messages-20100620:Jun 18 23:26:21 localhost kernel: ata2.00: 
ATAPI: SlimtypeDVD A  DS8A1P, CX17, max UDMA/33

Notice it is running in UDMA mode.

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: [OT] rather advanced video editing question

2010-06-24 Thread Petrus de Calguarium
Michael Cronenworth wrote:

 You can use ffmpeg to take the two clips and output one with the
 video/audio tracks you want or use kdenlive to do the same thing in a
 graphical interface.
 
 
kdenlive always crashes and avidemux never seems to work for me. I guess I am 
unfamiliar with it and I am not sure whether I can save as flv.

I am comfortable with ffmpeg and have used it for simpler tasks a lot.

Would you please be more specific about the actual ffmpeg command so that I can 
concatenate file1 video + file2 video and overlay file3 audio.

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Slow CD access while ripping music CD

2010-06-24 Thread Paolo Galtieri
What's interesting is that at some point it wasn't configured for PIO:

Jun 24 18:26:59 localhost kernel: ata2.00: configured for UDMA/33

For some reason it was reconfigured to PIO.  Obviously this change is what's
causing the slowness, but why did it change and how do I force it back to
UDMA?

Paolo

On Thu, Jun 24, 2010 at 9:11 PM, JD jd1...@gmail.com wrote:



 On 06/24/2010 08:59 PM, Paolo Galtieri was caught red-handed while
 writing::
ata2.00: configured for PIO0
 

 Why is it configured in programmed I/O mode?
 I think this is your problem!
 Here's my dvdrw drive as probed by the kernel:
 /var/log/messages-20100620:Jun 18 23:26:21 localhost kernel: ata2.00:
 ATAPI: SlimtypeDVD A  DS8A1P, CX17, max UDMA/33

 Notice it is running in UDMA mode.

 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Slow CD access while ripping music CD

2010-06-24 Thread JD


On 06/24/2010 09:58 PM, Paolo Galtieri was caught red-handed while 
writing::
 What's interesting is that at some point it wasn't configured for PIO:

 Jun 24 18:26:59 localhost kernel: ata2.00: configured for UDMA/33

 For some reason it was reconfigured to PIO.  Obviously this change is 
 what's causing the slowness, but why did it change and how do I force 
 it back to UDMA?

 Paolo

 On Thu, Jun 24, 2010 at 9:11 PM, JD jd1...@gmail.com 
 mailto:jd1...@gmail.com wrote:



 On 06/24/2010 08:59 PM, Paolo Galtieri was caught red-handed while
 writing::
ata2.00: configured for PIO0
 

 Why is it configured in programmed I/O mode?
 I think this is your problem!
 Here's my dvdrw drive as probed by the kernel:
 /var/log/messages-20100620:Jun 18 23:26:21 localhost kernel: ata2.00:
 ATAPI: SlimtypeDVD A  DS8A1P, CX17, max UDMA/33

 Notice it is running in UDMA mode.

At power-up,  drop down into bios and change it there.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Top posting

2010-06-24 Thread JD
I see so many top-posting replies to threads, mixed with correct bottom 
appended replies makes it very difficult to read a thread. Are there any 
watchdogs on this list that tell top posters to stop it?
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Top posting

2010-06-24 Thread Marvin Kosmal
On 6/24/10, JD jd1...@gmail.com wrote:
 I see so many top-posting replies to threads, mixed with correct bottom
 appended replies makes it very difficult to read a thread. Are there any
 watchdogs on this list that tell top posters to stop it?
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


I agree..

It makes it hard to read..



There should be

Marvin
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines