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 they ever come out and say the AI is no longer accessible to the gen pop people aren't going to know how to tie their own shoelaces.
    • It's hard not to when they are shoehorning Ai into EVERYTHING. Some are active users by choice, I bet a lot of them are because it's shoved in their face the entire time.
    • Thunderbird 152.0 by Razvan Serea Thunderbird is a free, open-source, cross-platform application for managing email and news feeds. It is a local (rather than a web-based) email application that is powerful yet easy-to-use. Thunderbird is clean and elegant by default, but easily customizable to match your workflow and visual preferences. It is loaded with unique and powerful features. Thunderbird is developed, tested, translated and supported by the folks at Mozilla Corporation and by a group of dedicated volunteers. Thunderbird gives you control and ownership over your email. There are lots of add-ons available for Thunderbird that enable you to extend and customize your email experience. Thunderbird gives you IMAP/POP support, a built-in RSS reader, support for HTML mail, powerful quick search, saved search folders, advanced message filtering, message grouping, labels, return receipts, smart address book LDAP address completion, import tools, and the ability to manage multiple e-mail and newsgroup accounts. Thunderbird 152.0 changelog: SecurityDevices enabled in enterprise policies One-click account setup for Thundermail accounts What’s Changed Use 'Add' instead of 'New' for account, calendar, address book creation buttons GMail OAuth updated to use PKCE Mail server hostname also checked when detecting address books and calendars Updated about:rights to replace local with hosted url 'Hide completed tasks' now also hides cancelled tasks What’s Fixed New mail alerts appeared on wrong monitor in three-monitor setup Spam messages triggered new mail notifications before being moved to Spam folder Filtered IMAP or NNTP subscriptions were lost after closing Subscribe dialog 'Download Headers' dialog for newsgroups failed to open Messages nested deeper than 255 levels disappeared from threading view Performing Delete followed by Undo on thread parent message could corrupt view Single messages still appeared collapsible after thread members were deleted Updated threads remained misordered until folder refresh or resort Non-threaded subject sorting separated 'RE:' replies from original messages BCC recipients were included in signed email headers Filter search on Body missed draft messages containing German umlauts Thunderbird could crash during local message search Blocked file warning showed without 'Unblock File' button in compose window Forwarding/Redirecting Exchange messages failed with NS_ERROR_OUT_OF_MEMORY Compose window closed early and send progress dialog hung after NNTP failure Compose window stayed open after sending when mailnews.sendInBackground set Microsoft OAuth2 failed when HTTPS localhost redirect was not intercepted Pasting contact photos stopped working when photo button had focus Filter dialog lacked focus ring and had poorly distinguishable buttons Subfolder kept stale accessibility unread count after unread messages were deleted 'Edit as New Message' and inline 'Forward' not possible with PGP-signed messages Various MIME improvements EWS messages could go missing from folder view IMAP "Show only subscribed folders" could not be changed without restart Unable to delete more than 1000 messages at a time on Microsoft 365 EWS folders in Trash were moved to Trash again instead of being hard deleted IMAP notifications repeated for emails read on another device after sleep wake POP3 deadlocked when server went silent without closing socket Calendar acceptance no longer distinguished between single occurrence and series Transparent popups on macOS made calendar event editing difficult Duplicate attendees were added to invitations instead of being filtered out Task percentage complete was not preserved separately from status in tooltips Visual and UX improvements Security fixes Download: Thunderbird 152.0 for Windows (EN/US) | 32-bit | ~70.0 MB (Open Source) Download: Thunderbird 152.0 for Mac OS (EN/US) | 145.0 MB Download: Thunderbird 152.0 in other languages View: Thunderbird Website | Screenshot | Release Notes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Nearly half of American adults now use AI, but concerns are also growing by Hamid Ganji Since the launch of ChatGPT in 2022, the way people research, get their news, and perform routine tasks has changed dramatically. Now, almost everything around us has a touch of AI, and companies are trying to embed it into nearly every product and service they offer. With that in mind, new research shows how Americans are actually adopting this change and using AI in their everyday lives. According to new research conducted by the Pew Research Center, 49% of American adults now use AI chatbots like ChatGPT or Gemini. This marks a significant increase over last year, when only 33% of American adults reported using AI. Additionally, four in ten U.S. adults (42%) said they use AI tools to research information, while 38% said they use these tools to handle tasks at work. Entertainment, image and video editing, and getting medical advice are among the other ways Americans are using AI. Moreover, ChatGPT dominates the U.S. AI market, with 44% of respondents saying they use OpenAI's chatbot. Gemini follows at 24%, while Copilot and Meta AI account for 17% and 14%, respectively. Respondents also said that AI chatbots generally have a positive impact on their productivity and how informed they are. But when it comes to AI’s impact on society, Americans remain largely skeptical. About 40% of American adults believe AI will be more harmful than beneficial to society over the next 20 years. Additionally, 31% expect AI to have a negative effect on them personally. Another 31% of respondents say AI could be equally positive and negative. As for data security, pessimism remains high: 71% of respondents say AI will make their personal information less secure, while only 3% believe it will make their data more secure. American adults also largely lack confidence in both the government and AI companies when it comes to regulating and developing AI. About 67% of Americans have little to no confidence in the U.S. government’s ability to regulate AI effectively. Six in ten adults are also not confident that U.S. companies will develop and use these tools responsibly.
    • MultiOS-USB 0.11.1 by Razvan Serea MultiOS-USB is a versatile, open-source utility designed to create multiboot USB drives capable of hosting multiple operating systems on a single portable device. The project simplifies the process of building a bootable USB by automating the configuration of various boot loaders and file systems, enabling users to install and run diverse operating systems, including Windows, Linux distributions, and diagnostic tools, directly from one drive. It supports ISO booting and persistence, which allows changes made during live sessions to be retained, making it ideal for testing, troubleshooting, or system recovery. Features: BIOS and UEFI support Secure Boot support (boot, manage uefi keys) Load UEFI drivers Launch .efi executables and other boot loaders Boot Linux from .iso images Boot WinPE from bootable .wim images Boot Windows 10/11 installer from ISO (currently, SB must be disabled during installation) Boot Linux installer from network (experimental) Boot locally installed systems: Linux, Windows Automatically update configuration files Without background services exFAT file system support Automatic detection of compatible ISO images (GRUB loopback) Support for systems without loopback support Allows customisation of ISO boot menu (for example: custom kernel options) Support for USB, SSD, nvme, mmcblk, loop, nbd and virtual disks Support for x86, x86_64 A list of tested ISO images can be found here MultiOS-USB 0.11.1 changelog: 68122b7: Fixed-release AUR package #63 fba0283: Update shim to 16.1 8c2ae95: Update grub to v2.14-1 ea15c1d: Update Memtest86+ to v8.10 162f4e6: Add secureblue (#71) b2da8ae: Add AerynOS (#74) ac6640e: Bump config.version 34e9ca6: Add Bluefin (#72) 7a10edd: Add Aurora (#66) cab701b: Update wimboot to v2.9.0-1 90da7f7: Fix Windows error: 0x80070001 - 0x4002F (#52) 2dea73d: Add Microsoft certificates 01f479e: Remove old efi_uga module Download: MultiOS-USB 0.11.1 | 5.3 MB (Open Source) View: MultiOS-USB Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • 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
      509
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      90
    4. 4
      Steven P.
      76
    5. 5
      neufuse
      69
  • Tell a friend

    Love Neowin? Tell a friend!