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

    • If you can't spell a simple word that 2nd graders learn, your entire argument is suspect.
    • And here goes the "Won't someone think of the children" brigade. Get stuffed mate. This has NOTHING to do with making the internet safe. It's about tracking adults, spying on your online activity, and sending the boys around when they don't like something you post. Also, again, parliament have voted TWICE against this, and Starmer is going ahead anyway. THAT is anti-democratic bullsh**. They will use this law to track you, they will use this law to control you, and they will use this law to punish you if they don't like what you do, even if it's legal. And your data? Say bye bye to that. It'll be on the darkweb in weeks. I'm not some rando online. I've been an IT professional for 40 years, many of it in security. I know exactly what this means and what will happen to your data. I do not consent and I will not comply.
    • "...but it may not be Microsoft's fault" seems like a reasonable way to tease what is going on without leaving the user with a false impression that an update is the problem. A title isn't a summery, it is meant to entice the user to read the article. It should not contain a misleading premise; which this title does not. You could maybe complain that the first paragraph should have included that detail. The writing style popularized over 100 years ago in newspapers will cover the most important information as soon as possible with details and nuance added later; the idea being that with each new paragraph you have less of the reader's focus.
    • Samsung Galaxy XR arrives in the UK with new AI and enterprise features by Fiza Ali Samsung is bringing its Galaxy XR headset to the UK several months after the device made its debut as the first headset built on Google's Android XR platform. The headset was first teased in late 2024 alongside Google's introduction of Android XR before making its commercial debut in 2025. Developed in collaboration with Google and Qualcomm, Galaxy XR combines mixed reality experiences with Gemini-powered AI features, allowing users to interact with digital content using voice, gestures, and visual inputs. While the hardware itself remains largely unchanged from the version Samsung unveiled last year, the company is using the UK launch to spotlight several software enhancements that have arrived through recent updates. Among the most notable additions is deeper integration with Google's ecosystem. Galaxy XR users can explore destinations through Google Maps' Immersive View, receiving AI-powered recommendations and contextual information from Gemini while navigating virtual environments. Furthermore, entertainment experiences have also expanded; users can watch 180-degree and 360-degree videos on YouTube, browse spatial content converted into 3D, and ask Gemini questions about on-screen content without interrupting playback. Samsung is also highlighting mixed-reality features such as Circle to Search, which allows users to identify real-world objects through hand gestures while using the headset's video pass-through mode. Another feature automatically converts photos and videos into spatial 3D experiences. Moreover, the headset now also supports Android Enterprise, allowing organisations to manage deployments using existing Android management tools. Annika Bizon, Vice President, Product and Marketing, Mobile Experience, Samsung UK & Ireland, talked about the device, stating: The headset is powered by Qualcomm's Snapdragon XR2+ Gen 2 platform and features dual 4K Micro-OLED displays. The tech giant says that users can expect up to 2.5 hours of battery life. Samsung also confirmed that Galaxy XR will continue receiving software and security updates as the company works alongside Google and Qualcomm to expand the Android XR ecosystem. Galaxy XR is now available for pre-order and will go on sale on 8 July. Customers interested in trying the headset before launch can visit Samsung KX in London and selected Samsung Experience Stores from 17 June. Finally, the company will also host a livestream on 19 June showcasing the headset's capabilities and answering questions from prospective customers.
  • Recent Achievements

    • 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
    • Week One Done
      Prasann earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      521
    2. 2
      +Edouard
      174
    3. 3
      PsYcHoKiLLa
      95
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      70
  • Tell a friend

    Love Neowin? Tell a friend!