Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Mandriva Linux Help > Problems installing new version of Mandriva

Forgot Password?
 Mandriva Linux Help   For help and discussion about Mandriva (formally Mandrake) Linux.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 2 Weeks Ago   #1 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 8
Smile Problems installing new version of Mandriva

Hi all,

Please excuse me if this doesn't make sense as I'm new to Linux and am still trying to learn it.

Ages ago I downloaded and installed Mandriva Linux 2009.0 (One) from the Mandriva website. I absolutely love it, but whenever I log-in, I get this little blue icon appear in the task-bar (near the clock) which tells me that a new version is available. I always double-click on it which brings up the following box:

'New version of Mandriva Linux distribution

A new version of Mandriva Linux distribution has been released.
More Information about this new version.
Do you want to upgrade to the 2009 Spring distribution?
[ ] Do not ask me next time
[ Cancel ] [ Next ] '

Anyway, I always click on 'Next' which brings up a bigger 'New version of Mandriva Linux distribution' box but everything inside it is grey and it can literally stay on the screen for days. The aforementioned box still stays on the screen to the side of it.

Is there any way that I can update to the new Linux without having to download it off the Mandriva website and burn it to CD? I was hoping that I'd be able to just update through the update utility, as I'm particuarly interested in Mandriva 2010 when it's released.

Thanks in advance for any help you can offer.
Stu
stuartguthrie is offline  


Reply With Quote
Old 2 Weeks Ago   #2 (permalink)
Linux Guru
 
reed9's Avatar
 
Join Date: Feb 2009
Location: Boston, MA
Posts: 2,199
Remove your previous media list as so
Code:
su -
urpmi.removemedia -av
Add the desired versions media by going here and selecting version 2009.1. Add at least the Official medias.

The PLF repos contain non-free software, which people often want, such as libdvdcss, which you need to play commercial DVDs.

Update with
Code:
su -
urpmi --auto-update -v
reed9 is offline   Reply With Quote
Old 1 Week Ago   #3 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 8
Hey Reed9,

Thank you very much for the reply. Unfortunately I tried that but I couldn't get Mandriva 2010 from it, so I've downloaded the free version and burnt it onto a DVD. I was told by a friend that the install process would simply be able to upgrade from 2009 and would keep all my stuff intact, however, that doesn't seem the case as I now have a new home folder 'stuartg' that doesn't have any of my stuff in it. I can, however, see my old home folder in 'Computer' --> 'Home' --> 'stuart'. Do you know if there is any way that I can restore all my stuff back into my home folder? I'm really freaking out because I had all these torrents I wanted to keep but they (or the Vuze app) are no longer there. Also, when I download torrent files I never saved the torrent, I simply went 'Open with Vuze'.

Lastly, my toolbar / menu bar that is usually at the top of the screen has disappeared. Do you know what I can do to get it back. AAAARRRRGGGGHHHHH!!!!

Any help would be greatly appreciated.

Sorry about the late reply - I've been flat out studying for exams (as you can imagine, this is an added stress I didn't need - lol).

Stu
stuartguthrie is offline   Reply With Quote
Old 1 Week Ago   #4 (permalink)
Linux Guru
 
reed9's Avatar
 
Join Date: Feb 2009
Location: Boston, MA
Posts: 2,199
I'm not clear on what you did here. Does the Mandriva 2010 DVD have an upgrade option? Or you did a clean install?

If the latter, how did you set up your partitions? Did you choose manual paritioning during the install, and set your old home partition as /home? Which is sounds like you might have done, since you have both stuartg and stuart folders in home, right? Are you having trouble accessing the stuart folder to see if your files are there?
Quote:
Lastly, my toolbar / menu bar that is usually at the top of the screen has disappeared. Do you know what I can do to get it back.
Are you missing panels altogether? I don't think Mandriva puts a panel up top by default. Assuming you have the bottom panel, right click on it, select properties and you can choose the orientation. Or you can right click and select new panel.

In the future, I really recommend not doing major upgrades during exams or other stressful times. And you should always back up important data before upgrading.

.torrent files are stored by vuze in /home/USER/.azureus/torrent, so assuming you can get at your old home folder they should be there.
reed9 is offline   Reply With Quote
Old 6 Days Ago   #5 (permalink)
Just Joined!
 
Join Date: Sep 2009
Posts: 8
Hi Reed9,

Thanks for your prompt reply. I thought I did an upgrade but I must have done a clean install as none of my stuff is in my new home folder.

When I went to set up my partitions I used the 'Use current partitions' option which is why my stuff must still be there.

I can access the old home folder thankfully but I cannot seem to copy it over into my new home folder because I don't have the correct permissions or something like that.

I used to have a menu up the top that had access to all my applications and also to lock the computer and shut it down. It also had a clock on it and let me switch between open applications. It was a bit like a 'Start' or 'Apple' menu. Unfortunately I can't seem to get this menu back which is really annoying because it is what I use to get to all my applications.

Next problem is I can't seem to install Azureus. Could you please tell me how I can do this? Before I added it through the 'Add new software' option in Mandriva but it is no longer in the list. Could this be because I have the 64bit version installed?

Thank you SO much for all of your help - you have no idea how much I appreciate it.

Stu
stuartguthrie is offline   Reply With Quote
Old 5 Days Ago   #6 (permalink)
Linux Guru
 
reed9's Avatar
 
Join Date: Feb 2009
Location: Boston, MA
Posts: 2,199
I'm assuming you're using the GNOME version of Mandriva based on the Computer->Home bit, right?

Hit ALT+F2 to open a run dialogue. Type gnome-terminal to open a terminal. In the terminal type
Code:
su -
chown -R stuartg /home/stuart/
exit
assuming stuartg is your current username and /home/stuart is the location of your old home folder. This will give ownership of the folder and files therein to stuartg, so you should be able to access, copy, move, or whatever all that.

For Azureus/Vuze, from the terminal do
Code:
su -
urpmi vuze
exit
For the panel, try in the terminal typing
Code:
gnome-panel
Does it appear? Does it give you any error messages? Assuming the panel comes back, it will disappear again when you close that terminal. Launch it via the ALT+F2 launcher if it worked.

EDIT: Make sure you are not still logged in as root in the terminal when you launch it.
reed9 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 09:55 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2