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.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • While I agree with all that, it just proves there's an a** built for every seat.
    • Lol are you mad because I'm not using AI? I'd rather pay people than lose a bunch of potential customers and get humilated because I used AI. A lot of people won't purchase a game if it used AI during development.
    • LibreWolf 152.0-1 by Razvan Serea LibreWolf is an independent “fork” of Firefox, with the primary goals of privacy security and user freedom. It is the community run successor to LibreFox. LibreWolf is designed to increase protection against tracking and fingerprinting techniques, while also including a few security improvements. This is achieved through our privacy and security oriented settings and patches. LibreWolf also aims to remove all the telemetry, data collection and annoyances, as well as disabling anti-freedom features like DRM. LibreWolf features: Latest Firefox — LibreWolf is compiled directly from the latest build of Firefox Stable. You will have the the latest features, and security updates. Independent Build — LibreWolf uses a build independent of Firefox and has its own settings, profile folder and installation path. As a result, it can be installed alongside Firefox or any other browser. No phoning home — Embedded server links and other calling home functions are removed. In other words, minimal background connections by default. User settings updates Extensions firewall: limit internet access for extensions. Multi-platform (Windows/Linux/Mac/and soon Android) Community-Driven Dark theme (classic and advanced) LibreWolf privacy features: Delete cookies and website data on close. Include only privacy respecting search engines like DuckDuckGo and Searx. Include uBlockOrigin with custom default filter lists, and Tracking Protection in strict mode, to block trackers and ads. Strip tracking elements from URLs, both natively and through uBO. Enable dFPI, also known as Total Cookie Protection. Enable RFP which is part of the Tor Uplift project. RFP is considered the best in class anti-fingerprinting solution, and its goal is to make users look the same and cover as many metrics as possible, in an effort to block fingerprinting techniques. Always display user language as en-US to websites, in order to protect the language used in the browser and in the OS. Disable WebGL, as it is a strong fingerprinting vector. Prevent access to the location services of the OS, and use Mozilla's location API instead of Google's API. Limit ICE candidates generation to a single interface when sharing video or audio during a videoconference. Force DNS and WebRTC inside the proxy, when one is being used. Trim cross-origin referrers, so that they don't include the full URI. Disable link prefetching and speculative connections. Disable disk cache and clear temporary files on close. Disable form autofill. Disable search and form history...and more. LibreWolf 152.0-1 changelog: Upstream release, see the Firefox 152.0 Release Notes Notable changes: The AppImages are now built on Codeberg along with the other releases We have decided to wait a bit longer to enable the settings redesign, due to use being aware of multiple upstream issues Download: LibreWolf 64-bit | Portable 64-bit | ~100.0 MB (Open Source) Download: ARM64 | Portable ARM64 Links: LibreWolf Home Page | Addons | Screenshot | Reddit Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • hahahahah wow hahahah you sure got me there hahahahahah, you know that bad performance is always due to poor optimization by the developers, right???
    • "I know for a fact I'll never own one of these." This is why choice is better than government regulation. Globaly Android has something like 72% of the smartphone market. Granted the vast majority of that is low end phones. Apple can and should charge whatever they want. The market will decide if it is too much.
  • Recent Achievements

    • Week One Done
      Huge Trailer earned a badge
      Week One Done
    • Week One Done
      Classifyskilleducation earned a badge
      Week One Done
    • One Month Later
      eurospharma62 earned a badge
      One Month Later
    • Week One Done
      With What earned a badge
      Week One Done
    • Week One Done
      Harris Gilbert earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      560
    2. 2
      +Edouard
      168
    3. 3
      PsYcHoKiLLa
      72
    4. 4
      Michael Scrip
      64
    5. 5
      ATLien_0
      64
  • Tell a friend

    Love Neowin? Tell a friend!