Results 11 to 20 of 23
at first It said
Code:
error: "qt-x11" specifies multiple packages:
qt-x11-4.8.2-4.fc17.x86_64
qt-x11-4.8.2-4.fc17.i686
qt-x11-4.8.2-7.fc17.x86_64
So I tried
Code:
sudo rpm -e qt-x11-4.8.2-7.fc17.x86_64
[sudo] password for mburghard:
/sbin/ldconfig: file /lib/libQtDesigner.so.4.8.2;507b0eb8 is truncated...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-19-2012 #11Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
at first It said
Code:error: "qt-x11" specifies multiple packages: qt-x11-4.8.2-4.fc17.x86_64 qt-x11-4.8.2-4.fc17.i686 qt-x11-4.8.2-7.fc17.x86_64
So I triedCode:sudo rpm -e qt-x11-4.8.2-7.fc17.x86_64 [sudo] password for mburghard: /sbin/ldconfig: file /lib/libQtDesigner.so.4.8.2;507b0eb8 is truncated
- 10-19-2012 #12Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,746
you are on x86_64, not i686, right? if so, then try:
that truncated error is new to me. it does not sound good. anything in your /var/log/messages that looks suspicious/interesting?Code:rpm -e --nodeps qt-x11-4.8.2-4.fc17.i686
for completeness, post your arch, distro, and version.
- 10-19-2012 #13Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
the console returned
I can't seem to get the /var command to work. Maybe I'm typing it wrong. Could you give me the specific command to open up the /var stuff? Also, after it said the code above, I typed the same command you gave again, and it said that qt-x11-4.8.2-4fc17.i686 was erased.Code:qt-x11-4.8.2-4.fc17.i686 is truncated
- 10-20-2012 #14Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,746
i guess it is complaining about a corrupt file in the package, but you hopefully should still be able to remove the package with the rpm command.
Sorry, I should have been more clear. What I meant was to check your syslog, which is typically saved to this file:I can't seem to get the /var command to work. Maybe I'm typing it wrong. Could you give me the specific command to open up the /var stuff?
you can open the file with an editor, but it is constantly being written to, so you're better off using cat or tail, e.g.:Code:/var/log/messages
that command will send the entire contents of the file to STDOUT (your screen), and keep it open, so that any new stuff will appear at the bottom of the screen. So it is handy, when trouble-shooting, to open a terminal, su to root and run a tail of this log. Then in another terminal, do your actual trouble-shooting commands.Code:tailf /var/log/messages
another handy thing to do is search the file for something particular, using grep, e.g.:
so have you tried to yum update again?Code:grep -i rpm /var/log/messages
- 10-20-2012 #15Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
the grep command returned
The tailf command returned an insanely long list which I can't copy paste. I then updated, which surprisingly actually worked, but I rebooted and it still booted in fallback mode. So close... I just reinstalled the gnome-panel, hoping it might help. What should I do now?Code:yum[5110]: Updated: rpmfusion-free-release-17.0.3-1.noarch
- 10-20-2012 #16Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
I also just figured out my graphics driver. It's Gallium 0.4 on NV86.
- 10-20-2012 #17Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,746
is the Fedora nvidia xorg driver installed? check with:
if not, install it with:Code:rpm -qv xorg-x11-drv-nouveau
also, show your kernel boot args with this command:Code:yum update xorg-x11-drv-nouveau
there is also the option of installing NVidia's closed binary driver (if you're okay w/that). I usually have no problems with it, but I have run of the mill nvidia hardware.Code:cat /proc/cmdline
- 10-20-2012 #18Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
Console returned
after entering cat command I gotCode:xorg-x11-drv-nouveau-0.0.16-37.20120306gitf5d1cd2.fc17.x86_64
Code:BOOT_IMAGE=/vmlinuz-3.6.1-1.fc17.x86_64 root=/dev/mapper/vg_trogdor-lv_root ro rd.lvm.lv=vg_trogdor/lv_swap rd.md=0 rd.dm=0 SYSFONT=True rd.lvm.lv=vg_trogdor/lv_root KEYTABLE=us rd.luks=0 LANG=en_US.UTF-8 rhgb quiet
- 10-20-2012 #19Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,746
Try adding modesetting and dri drivers:
then reboot.Code:yum update mesa-dri-drivers xorg-x11-drv-modesetting
also, post your xorg.conf file, if you have one. it would be here:
also, post your xorg log. it is big, but we may need it. it should be here:Code:/etc/X11/xorg.conf
Code:/var/log/Xorg.0.log
- 10-20-2012 #20Just Joined!
- Join Date
- Oct 2012
- Posts
- 25
returned for yum update command. It kept telling me the others weren't valid commands.Code:sudo yum update mesa-dri-drivers xorg-xll-drv-modsetting [sudo] password for mburghard: Loaded plugins: langpacks, presto, refresh-packagekit No Match for argument: xorg-xll-drv-modsetting No package xorg-xll-drv-modsetting available. No Packages marked for Update


Reply With Quote

