Ubuntu 13.04 'Raring Ringtail' released


Recommended Posts

I kinda suspected that. I haven't tried removing services or building out a minimal install because I have no interest in running Ubuntu full time; I just like to keep up with its development and try new releases because it is very popular and closely related to the distro I contribute most heavily to.

That's interesting. Why would you say that? All throughout the SysVInit vs. Systemd debate in Debian and elsewhere I have not heard anyone offer an argument (not to mention a convincing argument) that Upstart is superior to Systemd. The best justification of Upstart I have heard yet is that it preceded Systemd, so Upstart is justified being in a less advanced state. Even then I have not heard an argument for its adoption outside of Ubuntu, although some argue that it is acceptable for Ubuntu to stick with it by virtue of the fact that it is already in place and migration would be an unnecessary hassle.

I think you misunderstood my post (I may have worded it poorly). I didn't say upstart is superior to systemd, I said systemd is indeed better than upstart, but that I do think both of them are much better than sysvinit.

I didn't say upstart is superior to systemd, I said systemd is indeed better than upstart, but that I do think both of them are much better than sysvinit.

Oops. I misread your post. I thought I was going to get an interesting explanation that I've never heard before. It turns out that I actually agree with your point.

What kind of problems?

Well when I rebooted after updating, I was greeted with the lxde login manager. Put in my credentials and got nothing. It won't boot to the GUI no matter what desktop I pick. So finally, I hit ctrl+alt+f2 for a terminal and ran startlxde but it gives me an error about connecting to the display. So I ran startx instead and it required me to install gnome. So now Im stuck running gnome-shell (which I can't stand) because nothing else will work. And this is the only way I can get it to login, too. Now I run lxpanel after booting so that I can have some sort of comfort of normalcy, and the menu has no icons.

Well when I rebooted after updating, I was greeted with the lxde login manager. Put in my credentials and got nothing. It won't boot to the GUI no matter what desktop I pick. So finally, I hit ctrl+alt+f2 for a terminal and ran startlxde but it gives me an error about connecting to the display. So I ran startx instead and it required me to install gnome. So now Im stuck running gnome-shell (which I can't stand) because nothing else will work. And this is the only way I can get it to login, too. Now I run lxpanel after booting so that I can have some sort of comfort of normalcy, and the menu has no icons.

Sounds like your upgrade is b0rked, I'd try a clean install...

Good, although it tuns like crap on my daughters PC

Give Lubuntu a go (or, install LXDE and log into that). GNOME and KDE are pretty resource intensive.

boot speed has never been a linux forte.

I once had my Linux boot time down to 10 seconds (but I wasn't using GNOME or KDE)...

Many people have forgot that Linux is all about customization - it gives you so many more options than other OSs. You probably couldn't tell what distro I am using if I were to post a screenshot.

Many people have forgot that Linux is all about customization - it gives you so many more options than other OSs. You probably couldn't tell what distro I am using if I were to post a screenshot.

Geeks tend to forget that most people don't want to spend hours and days "customizing" their computers or phones, they just want them to work. heck It's starting to annoy me as well when I can't just install and get going.

I was hoping to avoid that so I dont lose 200gb+ of torrents.

Why would you lose all your data?

Remove all folders but /home/ and /root/ (assuming you only store stuff there) and then do a normal install without formatted = no lost data.

Well when I rebooted after updating, I was greeted with the lxde login manager. Put in my credentials and got nothing. It won't boot to the GUI no matter what desktop I pick. So finally, I hit ctrl+alt+f2 for a terminal and ran startlxde but it gives me an error about connecting to the display. So I ran startx instead and it required me to install gnome. So now Im stuck running gnome-shell (which I can't stand) because nothing else will work. And this is the only way I can get it to login, too. Now I run xpanel after booting so that I can have some sort of comfort of normalcy, and the menu has no icons.

I have EXACTLY the same problem doh! Although I am loving the subtle but well done graphical changes to Ubuntu this time round. :D

Remove all folders but /home/ and /root/ (assuming you only store stuff there) and then do a normal install without formatted = no lost data.

Im assuming this is some kind of configuration issue which likely means it's somewhere in my /home folder. I've thought of deleting the .cache and .config folders as well as the ones for lxde and the other DEs but Im not sure itd make a difference.

Buy an external drive and back everything up? You can get a 2TB drive now a days for 70 bucks.a

I know that. But I really don't have the money for it. I have space on my desktop but its a lot of work to move the data there and then back afterwards and getting the client to pick it up after too.

Edit: Someone suggested I switch to lightdm instead of lxdm and now everything works as normal. Not sure what the hell is wrong with lxdm.

Im assuming this is some kind of configuration issue which likely means it's somewhere in my /home folder. I've thought of deleting the .cache and .config folders as well as the ones for lxde and the other DEs but Im not sure itd make a difference.

I know that. But I really don't have the money for it. I have space on my desktop but its a lot of work to move the data there and then back afterwards and getting the client to pick it up after too.

Edit: Someone suggested I switch to lightdm instead of lxdm and now everything works as normal. Not sure what the hell is wrong with lxdm.

How do you do that? ...

I have 12.10 now.I wanted to upgrade , But I prefer new install for vanilla, complete experience.

the only thing I need to know is how to backup my Home directory.Any Ideas?

You could do one of a couple things. If your home directory is on its own partition (which is not default in Ubuntu AFAIK), you can simply reinstall without formatting that partition. If not, you can use the method n_K suggested earlier in this thread and delete everything other than /home using the live install disc before you perform the new installation. Using that method you would need to make sure you install to the original partition without reformatting it! You could also copy your home directory to another EXT4 partition while maintaining permissions, then copy it back after the installation.

The last solution is the most time intensive but least risky. You could implement it as follows:


# Set this variable for convenience so you can just copy/paste the rest of the backup commands.
export BACKUP_DRIVE_NAME=<your_backup_drive>

# Backup your home directory to another EXT4 volume, maintaining permissions and attributes.
cp -a $HOME /media/$BACKUP_DRIVE_NAME/$USER

# Backup your user id and effective group id.
echo "backup_date: $(date)" > /media/$BACKUP_DRIVE_NAME/backup_info
echo "user_name: $USER" >> /media/$BACKUP_DRIVE_NAME/backup_info
echo "user_id: $(id -u)" >> /media/$BACKUP_DRIVE_NAME/backup_info
echo "user_group: $(id -g)" >> /media/$BACKUP_DRIVE_NAME/backup_info



# Install Ubuntu 13.04, wiping everything on your system (other than your backup drive, of course).



# You need to set this variable again since you closed your previous terminal window (and installed a new system).
export BACKUP_DRIVE_NAME=<your_backup_drive>

# Check your new user id and group id.
cat /media/$BACKUP_DRIVE_NAME/backup_info
echo "new_user_id: $(id -u)"
echo "new_user_group: $(id -g)"

# If your new user id and new group id match the old, run the following command.
cp -a /media/$BACKUP_DRIVE_NAME/$(cat /media/$BACKUP_DRIVE_NAME/backup_info | grep 'user_name: ' | cut -d ' ' -f 2)/* $HOME

# If your new user id or new group id do not match the old, run the following commands.
sudo cp -a /media/$BACKUP_DRIVE_NAME/$(cat /media/$BACKUP_DRIVE_NAME/backup_info | grep 'user_name: ' | cut -d ' ' -f 2)/* $HOME
export NEW_USER_ID=$(id -u)
export NEW_GROUP_ID=$(id -g)
sudo chown -R ${NEW_USER_ID}:${NEW_GROUP_ID} $HOME
[/CODE]

Just installed Xubuntu 13.04 on my 2Y. old Netbook: Dell inspiron mini 1018 and it Rocks.very light, productive

I love it on my netbook

Yeah I've switched over both my laptops over to xubuntu 13.04, its great. Very stable, much less buggy than unity.

Xubuntu annoys me because it doesn't support "snap" by default, and xubuntu 32 and 64 is what I put on my multiboot tool for linux OS'

Actually, it does and its enabled by default. there's just another poor default set that breaks snapping to the left/right because the setting to move the window to another virtual desktop when you drag to the left or right is enabled by default. You simply need to go to settings > window manager > advanced and disable "Wrap workspaces when the pointer reaches a screen edge", and then snapping left/right/up/down all works.

I think that default should be changed, but its not a huge deal because the setting can easily be adjusted.

Running Xubuntu 13.04 now. A funny story on why I installed it instead of Lubuntu. I was all set to install Lubuntu and I decided to try Xubuntu one last time. A friend of mine came over and he saw it running and was blown away. So I decided to install that instead and I'm glad that I did. It really is awesome. Got Virtualbox installed with Windows 7 for those times I need it. Running just great.

This topic is now closed to further replies.
  • Posts

    • Epic Games says Unreal Engine 6 will help developers "build content faster" using AI models by Pulasthi Ariyasinghe Epic Games is rolling out the latest major update to Unreal Engine 5 today, and at the same time, the company also dropped some information on the next-generation version of the product, Unreal Engine 6. This was already revealed a few weeks ago alongside the new Rocket League upgrade reveal. The company says it is combining the features of Unreal Engine and Unreal Editor for Fortnite to create this new version of its popular media creation tool. On top of creating entire games, the new engine will also focus on letting developers operate large-scale live service titles more easily, whether by shipping content into their own ecosystems or into Fortnite. The use of large language models is also mentioned here, with Epic saying it will be a core part of the engine. "We see LLMs, generative AI models, and tools like Claude and Codex playing a central role in helping you build content faster while maintaining the creative control you need," adds the company. Here is the rundown of what's new about version 6 of Unreal Engine: With all these changes to the programming model, portability upgrades, and generative AI integration, Epic says the new version of the engine will "change a lot about how games are made." The company aims to ship Unreal Engine 6 into early access in late 2027, with a full release planned for 12-18 months later. Epic Games also dropped a lengthy blog post about the new Unreal Engine 5.8 update for game developers over here. The release is focused on delivering better performance, customization, and streamlined workflows for development teams. This will be the final major update for this version of the engine before Epic switches to focus fully on Unreal Engine 6's early access launch.
    • Watch Louis Rossmann's recent experience on YouTube about trying to get a warranty replacement from Samsung. It's crazy.
    • That is the thing, how many of these people don't realise they are using AI? If they use Google Search they have no choice but to use AI. So yes, maybe half of American adults do use and I expect a lot of Uk adults do to, but I bet most of them don't realise it. Myself, i avoid the rubbish.
    • They use FREE AI. They aren't paying for this meme-generating slopware...
    • Gotta' buy that there Rufus guy a beer if I ever meet him. He makes good stuff.
  • Recent Achievements

    • One Month Later
      Vincian earned a badge
      One Month Later
    • First Post
      Jocimo earned a badge
      First Post
    • Week One Done
      suprememobiles48 earned a badge
      Week One Done
    • One Month Later
      Windows Guy earned a badge
      One Month Later
    • One Month Later
      Prasann earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      499
    2. 2
      +Edouard
      165
    3. 3
      PsYcHoKiLLa
      89
    4. 4
      Steven P.
      69
    5. 5
      neufuse
      65
  • Tell a friend

    Love Neowin? Tell a friend!