Ok, so I deleted gnome2 but gnome login is still there.
I installed it from Ubuntu Software Shop.
Also I can't find .var directory.
Okay guys, I have never used Linux but I've had a Mint partition on my harddrive for a while but now what ? I don't see any benefits to having it at the minute. So GAF convince me, what should I do ? Any tutorials to anything ? I am literally going in blind.
Okay guys, I have never used Linux but I've had a Mint partition on my harddrive for a while but now what ? I don't see any benefits to having it at the minute. So GAF convince me, what should I do ? Any tutorials to anything ? I am literally going in blind.
It's an operating system for your computer. What do you normally do when you're at your computer?
I say boot it up, run Firefox (or install Chrome if you're so inclined) and read some NeoGAF.
I'm looking for a reason to use it, I've heard people rave but at the minute I dont see the benefit.
I'm looking for a reason to use it, I've heard people rave but at the minute I dont see the benefit.
ssh -X jc@$(homeip) pidgin
I'm trying to open .xsession-errors, it says that there is no such file or directory
I'm trying to open .xsession-errors, it says that there is no such file or directory
Can only speak for myself: the reason I use it is because it's faster ("snappier") than Windows, it's ridiculously customizable, and it can do everything I need to do on a computer (which is quite a bit) for free. The summary of those things is that it's just a better OS. There's a learning curve to take advantage of things like customization, and even to find all the software you might want, but I'm going to use Linux almost exclusively for the rest of my life unless a better OSOS is released.I'm looking for a reason to use it, I've heard people rave but at the minute I dont see the benefit.
So my Linuxistas, I'm thinking about switching to Linode soon for all my hosting and would like opinions on which distro I should use. I know Pctx said Ubuntu was bad, but at this point I would still prefer ease of use (as opposed to Arch, where you have to build it all yourself I think.)
I heard Cent OS was good? What's the pros/cons on that?
I'd recommend either CentOS or Debian stable for a server.
CentOS is a free version of RHEL. It's one of the most solid Linux distributions around.
I'd recommend either CentOS or Debian stable for a server.
Are there commands or tools available to breakdown a .rpm package to see what it's doing and where it's placing files? All I learned from this past week is that updating packages when you don't have access to a repository (closed network) is a giant pain in the ass (but it taught me a fair amount all the same).
I'm also enjoying that I can read this thread and understand more of the discussions, little by little.
rpm -U is used for upgrading.
rpm -qlp *should* dump the files in a package.
rpm -qa to find out what is currently installed. | grep [foo] to shorten the list
http://man.cx/rpm
In general it's not a good idea to update packages manually with rpm. Even if you just want to install a local package using "yum localinstall file.rpm" is better, as it deals with dependency resolution and does a few additional checks.
There's no way to tell which system an rpm was built for so you usually trust the source that produced the package to tell you what systems it's meant to be compatible with. You can query information about an rpm file with "rpm -qp file.rpm", followed by the option you want to use. For example, -qpi shows basic package information; -qpl shows the file list, etc. RPM should never install packages with conflicting files or dependency errors.
In your particular case with a closed network I'd recommend setting up a local YUM repository to provide updates to all systems (it could be a mirror of CentOS's official channel). You can then point your other systems to that repository. You could also create an additional repository for your own custom packages to make it easier to keep your systems up to date.
So my Linuxistas, I'm thinking about switching to Linode soon for all my hosting and would like opinions on which distro I should use. I know Pctx said Ubuntu was bad, but at this point I would still prefer ease of use (as opposed to Arch, where you have to build it all yourself I think.)
I heard Cent OS was good? What's the pros/cons on that?
You actually don't build Arch yourself, that's Gentoo. Arch is all binaries.
To read about Cent OS, I would just read Pctx's previous posts about it.
So my Linuxistas, I'm thinking about switching to Linode soon for all my hosting and would like opinions on which distro I should use. I know Pctx said Ubuntu was bad, but at this point I would still prefer ease of use (as opposed to Arch, where you have to build it all yourself I think.)
I heard Cent OS was good? What's the pros/cons on that?
CentOS is a free version of RHEL. It's one of the most solid Linux distributions around.
I'd recommend either CentOS or Debian stable for a server.
Yep. This is a solid recommendation. If you want stability with minimum amount of fuss, one of these two right here is what you want.
Do they have access to the same repos? Is yum better than apt? Are there any other notable differences?
I ask because Debian seems more popular.
This. And if you don't need SELinux (as IE it is not a requirement) my best advice is to disable it and harden like you normally would a web server. Caused me too many headaches.One notable difference is that CentOS uses SELinux by default while Debian doesn't. SELinux can mean more issues/fuss with permissions, but also better security.
And no they don't use the same repos. It's different packages completely, .deb on Debian versus .rpm on CentOS. And they might enable or disable different options while compiling, or use different patches, or install files in different locations etc etc, on the different distros. So they couldn't use the same repos for those reasons as well. They do both have around the same amount of packages though if that's what you meant.
Also whether or not yum is better or apt is better is kinda subjective. It's mostly a personal preference thing for the end-user. They're both good at what they do.
You actually don't build Arch yourself, that's Gentoo. Arch is all binaries.
To read about Cent OS, I would just read Pctx's previous posts about it.
Linode is solid. Several friends use it and swear by it. Distro wise, what are we talking here? Headless (GUI-less) web server? I'd go with CentOS for stablity, reliability and compatibility. If you're thinking about whether or not you need CPANEL for your website, don't even think about Debian as the alternatives are just not as good.
Here is my experience between apt and yum. yum does not break. Let me repeat that. Anytime you upgrade a package, tell yum to go do something, un-install via yum, it just works. Apt on the other hand can get corrupt repos, break mid-download which can cause package (in this case either tasksel or dpkgconfigure? (that's off the top of my head) corruption and wonkiness of which I have not had any of those issues with yum. If you can do anything with apt, you can do anything x 1 Bajillion with yum.
What's CPANEL? And yeah I think it'd be a headless server.
Sweet! Although now I'm reconsidering my choice to switch to Ubuntu from Fedora for my own PC. (I'd still install Gnome Shell though.)
Cool, I'll check it out.
It's just, Steam is coming only to Ubuntu at first, and it has the Software Center... I've run Gnome 3 on top of Ubuntu before and it was nearly impossible to tell the difference from Fedora 17, but I'm not a deep Linux user.
Ahhhh yeah forgot about that. For gaming, that makes sense. I would imagine though that Fedora will get Steam next due to the community. Also, is Steam locked to Ubuntu or is it Debian wide?
No clue. I'm if it's locked, someone's found a way to unlock it. This is Linux, after all.
Here is my experience between apt and yum. yum does not break. Let me repeat that. Anytime you upgrade a package, tell yum to go do something, un-install via yum, it just works. Apt on the other hand can get corrupt repos, break mid-download which can cause package (in this case either tasksel or dpkgconfigure? (that's off the top of my head) corruption and wonkiness of which I have not had any of those issues with yum. If you can do anything with apt, you can do anything x 1 Bajillion with yum.
I actually thought of mentioning this about apt when I wrote my post. Especially if you add unofficial repos apt can break really badly if you're unlucky. But I haven't used yum enough to know if it also breaks like this or not, so I didn't want to say one was better or not because of that. But apparently yum just works then?
They're replacing X.So the Ubuntu devs delayed Wayland yet again saying they need more time shooting for the 13.04 release. I swear this is never going to make it in, and even if it does I'm not convinced all of this extra time spent on getting it working will be worth the effort.
They're replacing X.
It will be worth the effort. It's already worth the effort, arguably (since drivers are shifting towards being X-ambivalent)
Most of the shit that needed replacing in X that was from the days of shit being networked and crap have all been rewritten out by now anyways. Plus it's been around so we know it works.
I mean I get the sentiment, but IDK we only have so many "man hours" to get shit done in the open source world and I can't help but think their time might be better spent else where.
I sincerely mean it when I say I hope I'm wrong and just being a pessimist though.
BTW Ubuntu has "Previews" Now...
[IG]http://cloudfront.omgubuntu.co.uk/wp-content/uploads/2012/08/app.jpg[/IMG]
woah, that looks amazing. Not sure if useful, but damn it looks good.
Is there any distro that plays nice with SSDs out of the box and doesn't force you to copy-paste dozens of commands in the terminal and install/enable/disable daemons to ensure you won't fry it in a week?
Kernel has had native SSD support for a while. Not sure about "frying" as an issue though.
They're replacing X.
It will be worth the effort. It's already worth the effort, arguably (since drivers are shifting towards being X-ambivalent)
Wayland doesn't support forwarding AFAIK. It'll require a lot more work to accomplish it or I think you can run an X server on top of Wayland to make forwarding possible. I'm not too enthusiastic about Wayland since it's more of a stripped down Xorg-lite.As long as it doesn't harm the single greatest killer app that Linux gives me -- being able to run individual applications remotely -- I won't have much of a problem with this.
Wayland doesn't support forwarding AFAIK. It'll require a lot more work to accomplish it or I think you can run an X server on top of Wayland to make forwarding possible. I'm not too enthusiastic about Wayland since it's more of a stripped down Xorg-lite.
One of the issues with forwarding X11 sessions is the TCP overhead. If they've found a way to do it better, I'd be interesting in reading about that.