LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   Debian 7 Released (https://www.linuxquestions.org/questions/debian-26/debian-7-released-4175460760/)

273 05-05-2013 01:42 PM

Quote:

Originally Posted by JWJones (Post 4945337)
I'm probably gonna have to give it a go. I still have a huge soft spot for Debian, even though I have moved to Slackware.

Interesting stuff, from the Distrowatch release notice:

"This new version of Debian includes various interesting features such as multiarch support, several specific tools to deploy private clouds, an improved installer, and a complete set of multimedia codecs and front-ends which remove the need for third-party repositories. Multiarch support, one of the main release goals for Wheezy, will allow Debian users to install packages from multiple architectures on the same machine. This means that you can now, for the first time, install both 32- and 64-bit software on the same machine and have all the relevant dependencies correctly resolved, automatically."

Emphasis mine. Nice. I'm sure Richard Stallman won't be too happy about that, hahaha.

Hmm, a Debian package search for libdvdcss, w32codecs and w64codecs comes up blank -- I don't see them in Synaptic anywhere but deb-multimedia either. I wonder what they're referring to -- lame seems to be in the official repo's could that be one? [assuming wheezy's not got anything that's not been in Sid first]
The multilib stuff was a a pain for a while as they were transitioning -- good to know it's all done now. :D

jdkaye 05-05-2013 01:43 PM

Quote:

Originally Posted by odiseo77 (Post 4945477)
The guide is from August last year (hence the old kernel version), but I think the general upgrade procedure detailed in the guide is OK (upgrading the kernel, udev, grub and then the rest of the system).

I was addressing TroN's problem. If I understand correctly, he was trying to install Wheezy with a 2.6 kernel and having problems. This doesn't sound like a good idea. Maybe the problems with be solved if he uses a 3.2 kernel.
jdk

TroN-0074 05-05-2013 01:50 PM

Quote:

Originally Posted by jdkaye (Post 4945497)
I was addressing TroN's problem. If I understand correctly, he was trying to install Wheezy with a 2.6 kernel and having problems. This doesn't sound like a good idea. Maybe the problems with be solved if he uses a 3.2 kernel.
jdk

Thank you. I am just trying to upgrade from Debian 6 to 7 the guide I am follow is from a year ago so in the guide they use kernel 6.2.
Ofcourse in my case I have to get the current kernel. I was just asking how to get it done, the only thing I have done so far is change the repos to show wheezy in them. But this wont address the kernel upgrade.

Thank you for all the good info

TobiSGD 05-05-2013 02:34 PM

FWIW, I wouldn't use a third party guide how to upgrade the system when the distro developers offer a guide how to do that. As I stated earlier, just have a look at the release notes: http://www.debian.org/releases/wheezy/releasenotes

Upgrading my server to Wheezy went without problems, I just had to change some things in my Dovecot configuration manually.

EDDY1 05-05-2013 03:44 PM

So far only 199 updates in testing.
Actually it's 211 on my system.

EDDY1 05-05-2013 03:57 PM

No kernel change though.

TroN-0074 05-05-2013 07:17 PM

Completed the upgrade, I didn't have to do anything about the kernel it got upgraded to 3.x.x. anyway. However when I rebooted it just went to tty1, there was no GDM. I logged in to the terminal and issued startx as user and nothing happened. It just said that xorg had stopped sussefuly.
and gave me the user prompt again.
I typed 'su' and became root then I typed 'startx' as root and it totally works, Gnome shell starts I tried to log off from my root account thinking that the GUI was going to remain but no luck it went back to the command prompt.

Any suggestions?

By the way appologies to the OP for kind of taking over his thread. I thought it was going to be just couple of questions. Didnt know it was going to be this much asking

Thank you

EDDY1 05-05-2013 10:05 PM

Quote:

Originally Posted by TroN-0074 (Post 4945649)
Completed the upgrade, I didn't have to do anything about the kernel it got upgraded to 3.x.x. anyway. However when I rebooted it just went to tty1, there was no GDM. I logged in to the terminal and issued startx as user and nothing happened. It just said that xorg had stopped sussefuly.
and gave me the user prompt again.
I typed 'su' and became root then I typed 'startx' as root and it totally works, Gnome shell starts I tried to log off from my root account thinking that the GUI was going to remain but no luck it went back to the command prompt.

Any suggestions?

By the way appologies to the OP for kind of taking over his thread. I thought it was going to be just couple of questions. Didnt know it was going to be this much asking

Thank you

yeah you upgraded from squeeze so you should have plenty of updates

Hungry ghost 05-05-2013 11:28 PM

Quote:

Originally Posted by TroN-0074 (Post 4945649)
Completed the upgrade, I didn't have to do anything about the kernel it got upgraded to 3.x.x. anyway. However when I rebooted it just went to tty1, there was no GDM. I logged in to the terminal and issued startx as user and nothing happened. It just said that xorg had stopped sussefuly.
and gave me the user prompt again.
I typed 'su' and became root then I typed 'startx' as root and it totally works, Gnome shell starts I tried to log off from my root account thinking that the GUI was going to remain but no luck it went back to the command prompt.

Any suggestions?

Hard to tell, but might be a permissions problem. You can take a look at your /var/log/Xorg.0.log for clues about what's going on. Also, /var/log/syslog and /var/log/messages may contain information related to the problem.

jdkaye 05-05-2013 11:46 PM

TroN said,
Quote:

By the way appologies to the OP for kind of taking over his thread. I thought it was going to be just couple of questions. Didnt know it was going to be this much asking
This was an information thread rather than a question thread. Caravel was kind enough to let us know that Wheezy had been released. So this is as good a place as any to make comments/ask questions about this new release, IMO at any rate.
jdk

cynwulf 05-06-2013 06:20 AM

I would suggest that you check whether gdm3 is actually installed - upgrades can result in stuff being removed
Code:

$ apt-cache policy gdm3
If it is installed, make sure that X is not running and try to start it
Code:

# /etc/init.d/gdm3 start
//edit: no objections as to what the thread is used for - be my guest(s)

:hattip:

k3lt01 05-06-2013 06:38 AM

I already have a full amd64 i386 and source repository on a usb hdd!

EDDY1 05-06-2013 10:59 AM

Maybe you need to do another
Quote:

apt-get upgrade
or
apt-get dist-upgrade
also you can try:
Quote:

tasksel
which will offer DE.

TroN-0074 05-06-2013 03:09 PM

Thank you everything is working fine now.
I had to install GDM3, then for some reason wouldnt take my password so I switched to fall back and that let met me in just fine.
The options I have in the display manager are

GNOME
GNOME Classic
Systen Default
TWM

I then loged out and try system default session and wouldnt let me in. selected then Gnome and that works. I am in Gnome shell v3.4 rigth now typing this from Iceweasel.

Weird because I thought system default would it be gnome shell too.

Thank you everybody it has been a great learning experience.

k3lt01 05-06-2013 03:18 PM

I've had occassions where system default is TWM, first time that happened it took me a while to figure out what was going on.


All times are GMT -5. The time now is 03:21 AM.