id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
21633
1
21638
2011-01-15T07:59:10.153
2
1426
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/47522/how-to-bypass-try-it-install-screen-when-booting-from-usb-live-session-wit">How to bypass &ldquo;Try it / Install&rdquo; screen when booting from USB Live Session? (without installing in the USB)</a> </p> </blockquote> <p>I've created a ubuntu booting usb stick. Is it possible to remove the "install ubuntu" dialog that appears everytime I boot from the usb stick?</p>
2354
-1
2017-04-13T12:24:13.310
2011-04-15T17:40:26.963
Remove install dialog from ubuntu usb stick
[ "live-usb" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-12-29T08:27:28.023", "id": "104278", "postId": "21633", "score": "0", "text": "See answer http://askubuntu.com/questions/47522/how-to-bypass-try-it-install-screen-when-booting-from-usb-live-session-wit", "userDisplayName": "user39692", "userId": null } ]
{ "accepted": true, "body": "<p>You can do that by first formatting the USB and then install the ISO image to a CD.</p>\n\n<p>Next plug both USB and CD in and reboot. When you reboot to the CD select install but install it to your USB drive and for the bootloader select your USB drive unless you want problems.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T09:22:01.870", "id": "21638", "lastActivityDate": "2011-01-15T09:22:01.870", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8169", "parentId": "21633", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You can do that by first formatting the USB and then install the ISO image to a CD.</p>\n\n<p>Next plug both USB and CD in and reboot. When you reboot to the CD select install but install it to your USB drive and for the bootloader select your USB drive unless you want proble...
null
null
2012-08-25T20:28:22.570
null
null
21641
1
null
2011-01-15T09:46:40.513
0
499
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/12909/how-do-i-upgrade-to-the-development-release-aka-ubuntu1">How do I upgrade to the development release (aka. Ubuntu+1)?</a> </p> </blockquote> <p>How do I upgrade Ubuntu 10.10 to the latest development version of Ubuntu 11.04?</p>
6032
-1
2017-04-13T12:23:59.520
2011-01-15T14:31:45.023
How to upgrade to the development version of Ubuntu 11.04?
[ "10.10", "upgrade", "11.04" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2011-01-16T01:48:35.250
null
null
21645
1
22355
2011-01-15T10:31:44.840
28
7869
<p>A couple of weeks ago a popup has appeared whenever I startup telling me that an application wants to access the keyring but it doesn't say which one. I'm used to seeing the application name on the popup but here it just says 'application'. </p> <p>I haven't changed any passwords or did anything that might have something to do with that, to my knowledge.</p> <p>I saw this <a href="https://askubuntu.com/questions/867/how-can-i-stop-being-prompted-to-unlock-the-default-keyring-on-boot">question</a> but like I said, I haven't changed any of my passwords, and I don't want my keyring password to be empty.</p> <p>How can I find out which application is asking to unlock the keyring and fix it?</p> <p>Here's how it looks like: <img src="https://i.stack.imgur.com/yUQsF.jpg" alt="alt text"></p>
8938
-1
2017-04-13T12:25:13.193
2017-03-13T04:26:04.887
An application asks to unlock the keyring on startup, but it doesn't say which one
[ "seahorse" ]
8
13
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T10:40:29.373", "id": "23315", "postId": "21645", "score": "0", "text": "What version of ubuntu you are using?And can you post us the snapshot of the popup window?", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-01-15T10:43:05.0...
{ "accepted": true, "body": "<p>I setup my box for auto-login and it does this on every login. In my case it's nm-applet/network-manager family of apps. </p>\n\n<p>edit:<br>\nbtw the problem has been around for some time, evidently some half-fix got undone during a package upgrade, but i digress...one solution is <a href=\"http://ubuntuforums.org/showthread.php?t=320308\" rel=\"nofollow\">here</a> </p>\n\n<p>WHATEVER is causing the problem you could add after login but before everything else: a script with libpam-gnome-keyring to unlock it...the package to get this tool is: libpam-gnome-keyring at least in 11.04 </p>\n\n<pre><code>#!/bin/bash \n#launch useful stuff for gnome\n#first unlock the default keyring... \necho YOUR_KEYRING_PASSWORD_HERE | /usr/libexec/pam-keyring-tool -u -s \n#then run nm-applet in the background... \nnm-applet &amp; \n</code></pre>\n\n<p>and the \"bugs\" on bugzilla are probably being continually given priority of low because it's only for autologin users. it doesn't happen \"out of the box\" only due to customization. just trying to help you understand why it seems like the devs don't care. it's not a coding problem, it's...well...something else.</p>\n\n<p>proof video that it is nm-applet is <a href=\"http://vimeo.com/19350519\" rel=\"nofollow\">here</a></p>\n\n<p>and the reason it freezes the menu system is not because of gksudo, it's because it's an applet trying to start that grabs the tray and locks the menu-system. at least in my case you can still launch icons on the desktop. try putting a shortcut to a terminal there if you really must go mucking about with the prompt there. </p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-20T19:02:32.337", "id": "24282", "postId": "22355", "score": "0", "text": "I've been auto logging since forever. How do you know which app is causing it in your case? Can I somehow check what's causing it in my setup?", "userDisplayName": null, "userId": "8938" }, { "creationDate": "2011-01-30T13:33:45.107", "id": "26005", "postId": "22355", "score": "0", "text": "np, just upsetting that i knew i was right and didn't get the bounty...but oh well. didn't meet the time constraint", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2011-01-31T19:29:45.910", "id": "26219", "postId": "22355", "score": "0", "text": "I'd give you the rest of my rep if I could, if that comforts you ;)", "userDisplayName": null, "userId": "8938" }, { "creationDate": "2011-01-31T21:09:53.497", "id": "26244", "postId": "22355", "score": "0", "text": "again np. i could have done this digging before it expired and i didn't. my fault", "userDisplayName": null, "userId": "5768" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T01:08:51.480", "id": "22355", "lastActivityDate": "2011-02-01T00:45:38.770", "lastEditDate": "2011-02-01T00:45:38.770", "lastEditorDisplayName": null, "lastEditorUserId": "5768", "ownerDisplayName": null, "ownerUserId": "5768", "parentId": "21645", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Is it possible that you've changed your password recently?</p>\n\n<p>In order to see what passwords are stored in your keyring, go to \"Passwords and Encryption Keys\" in system -> preferences (I think - I always uninstall it as a security risk).</p>\n\n<p>In that application...
null
null
null
null
null
21647
1
21664
2011-01-15T10:50:50.863
4
4373
<p>Until two days before today my Ubuntu 10.10 Server updated fine.</p> <p>The output of <code>sudo aptitude update</code> <strong>→</strong> <a href="http://codepad.org/tkvXq66j" rel="nofollow">http://codepad.org/tkvXq66j</a> </p> <p>The output of <code>sudo aptitude update</code> after replacing the Ubuntu Central Archive's domain with the IP <strong>→</strong> <a href="http://codepad.org/QkgRhY8E" rel="nofollow">http://codepad.org/QkgRhY8E</a> </p> <p>APT sources <strong>→</strong> <a href="http://codepad.org/yh6E9TAe" rel="nofollow">http://codepad.org/yh6E9TAe</a></p> <p>Hosts <strong>→</strong> <a href="http://codepad.org/yODoWbHp" rel="nofollow">http://codepad.org/yODoWbHp</a></p> <p><code>/etc/resolv.conf</code> <strong>→</strong> <a href="http://codepad.org/Cba5kaEt" rel="nofollow">http://codepad.org/Cba5kaEt</a></p>
8940
196255
2014-02-25T08:26:42.707
2014-02-25T08:26:42.707
Unable to resolve hostnames while using APT, what could be the problem?
[ "10.10", "server", "upgrade", "dns" ]
1
4
CC BY-SA 3.0
[ { "creationDate": "2011-01-15T11:01:54.523", "id": "23323", "postId": "21647", "score": "0", "text": "This is better suited for serverfault.com. Can you connect to the internet? What are the results of `ping http://example.com` and `curl http://example.com`?", "userDisplayName": null, "u...
{ "accepted": true, "body": "<p>Your network configuraton is broken. If you are using a static IP you must manually add the DNS servers to /etc/resolv.conf .\nFor example, to use google public dns service, append the following lines to the file.</p>\n\n<pre><code>nameserver 8.8.8.8\nnameserver 8.8.4.4\n</code></pre>\n\n<p>I am assuming that your IP network is properly configured and you can ping those IPs .</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-15T14:42:45.420", "id": "23359", "postId": "21664", "score": "0", "text": "Thank you, that fixed it ! Yes, my network has DHCP Server in the modem/router but computers are given static IP.", "userDisplayName": null, "userId": "8940" }, { "creationDate": "2011-01-18T01:26:42.537", "id": "23800", "postId": "21664", "score": "0", "text": "It's actually better to use your ISP's DNS servers rather than Google's. For example, you'll most likely get better routing to things like Akamai's network by using your ISP's DNS.", "userDisplayName": null, "userId": "519" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T13:53:29.747", "id": "21664", "lastActivityDate": "2011-01-18T13:35:52.483", "lastEditDate": "2011-01-18T13:35:52.483", "lastEditorDisplayName": null, "lastEditorUserId": "742", "ownerDisplayName": null, "ownerUserId": "742", "parentId": "21647", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Your network configuraton is broken. If you are using a static IP you must manually add the DNS servers to /etc/resolv.conf .\nFor example, to use google public dns service, append the following lines to the file.</p>\n\n<pre><code>nameserver 8.8.8.8\nnameserver 8.8.4.4\n</co...
null
null
null
null
null
21650
1
21698
2011-01-15T11:36:25.320
6
5103
<p>I understand that it may be a rare situation for an executable to have spaces in it, but it could happen. </p> <p>An example may be the best explanation.. </p> <p>Using standard tools, I want to determine the location (on the file system) of the executable which owns(?) the current window... </p> <ol> <li>get the current window ID ...(<code>xdotool</code> getactivewindow ) </li> <li>use the ID to get the PID ...(<code>wmctrl</code> -p -l | sed ... ID .... </li> <li>use the PID to get the executable's name ... (<code>ps</code> -A ... <strong>here</strong> is where I run into problems ! </li> </ol> <p>Whith <code>ps</code>, when listing only the executable's name (<code>-o ucmd</code>), it truncates the name to 15 characters, so this rules out this option for any name which is longer.<br> Widening the column (<code>-o ucmd:99</code> ) makes no difference.. If <code>pgrep</code> is anything to go by, its matching is limited to 15 because of <code>stat</code> (see: info pgrep).. </p> <p>Listings in variants of "full" mode (eg <code>-A w w</code>) are not useful when the name concerned has spaces in it, because this name is separated from its args by <em>another space</em>!.. Also, in "full" mode, if the process was started by a link, the name of the link is shown, rather than the executable's name. </p> <p>Is there some way to do this (using standard tools)? ...or are spaces a show stopper here? </p>
2670
1059
2011-01-15T17:08:22.713
2013-01-04T18:56:21.277
Can I use standard tools to get the full name of a process, when its name has embedded spaces?
[ "bash", "process", "filename" ]
2
6
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T11:46:13.990", "id": "23329", "postId": "21650", "score": "0", "text": "I am not sure this can be classified as standard: cat \"/proc/$PID/cmdline\" |cut -d \"\" -f1", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-01-15T12:37:29...
{ "accepted": true, "body": "<p>All utilities get their information from <code>/proc/$PID</code> anyway, but there are (at least) three places in <code>/proc/$PID</code> that contain the name of the executable in some form, and they report different information.</p>\n\n<ul>\n<li>The <code>Name</code> field in <code>/proc/$PID/status</code> (also available in a harder-to-parse form in <code>/proc/$PID/stat</code>). This is the name of the executable, but truncated to 15 characters. Since the kernel performs the truncation, no option to <code>ps</code> can help. That's what <code>ps -o comm</code> (or its synonym <code>ps -o ucmd</code>) shows.</li>\n<li>The symbolic link <code>/proc/$PID/exename</code> point to the executable file. You can get its contents with <strong><code>readlink /proc/$PID/exename</code></strong>. Unlike the information reported by <code>ps</code>, only the user running the process has permission to read the link target.</li>\n<li>The zeroth argument to the process, as chosen by the shell or other program that invoked it. By convention, shells choose the name of the executable as you typed it (with or without a full path). You can get all the arguments from <code>ps</code> with <code>ps -o cmd</code> (or its synonym <code>ps -o command</code>), but the arguments are separated by spaces so you can't reliably tell where the zeroth argument stops. You can read the arguments from <code>/proc/cmdline</code>, where they are separated by null character: <strong><code>&lt;/proc/$PID/cmdline awk -vRS='\\0' '{print; exit;}'</code></strong> extracts the zeroth argument.</li>\n</ul>\n\n<p>For completeness, let me mention that these names can change during the lifetime of the process, though most programs don't do it:</p>\n\n<ul>\n<li>The process can change <code>Name</code> field of <code>/proc/$PID/status</code> by calling <a href=\"http://manpages.ubuntu.com/manpages/precise/en/man2/prctl.2.html\" rel=\"nofollow\"><code>prctl</code></a> with the <code>PR_SET_NAME</code> argument.</li>\n<li>The executable file can be renamed or deleted. In simple cases, Linux keeps track of the new name (but edge cases might not work, e.g. if you make a hard link to the executable). If the file is deleted, the kernel adds <code>(deleted)</code> to the link target.</li>\n<li>The zeroth argument to the process is read from process memory (it's <code>argv[0]</code> in C). The process can modify it freely.</li>\n</ul>\n", "commentCount": "10", "comments": [ { "creationDate": "2011-01-15T17:59:53.313", "id": "23399", "postId": "21698", "score": "1", "text": "This explanation works better than my solution. Try: which \"$(readlink /proc/$(xdotool getwindowpid $(xdotool getactivewindow))/exe)\"", "userDisplayName": null, "userId": "8724" }, { "creationDate": "2011-01-15T18:30:43.937", "id": "23405", "postId": "21698", "score": "0", "text": "@fred.bear: Thanks for spotting this. Both `tr` commands are meant to swap newlines with nulls. `head` extracts the first line; the whole tr/head/tr pipe extracts the first null-terminated chunk. In this particular case, the second `tr` command could be `tr '\\0' '\\n'` since there's a single chunk left.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2011-01-15T18:32:38.133", "id": "23406", "postId": "21698", "score": "0", "text": "@Gilles.. Thanks! another mystery unwravelled... very well explained.... (btw.. It seems the typo gremlim struck again...the first `tr` args should be `\\\\0 \\\\n`)... and thanks for the bonus insight: ..obfiscate the trailing newline by nulling it out... (I'm not sure how bash handles nulls.. I suppose I can use '-d \\\\n' until I have a fuller understanding) .... and another bonus (by example)... not using 'cat' when '<' does the job... I read someone's blog tirrade about that ,and such things, the other day (by a Randal Schwartz (perhaps the one from 'FLOSS Weekly'...:)", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2011-01-15T18:58:13.660", "id": "23415", "postId": "21698", "score": "0", "text": "Just for the record :), because I need it as a var, I'm going with: `cmd=\"$(</proc/10773/cmdline cut -d '' -f1)\"` ...", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2011-01-15T19:24:46.307", "id": "23428", "postId": "21698", "score": "1", "text": "@fred.bear: `cut` alone won't work in the rare case when the string to extract contains a newline.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2011-01-15T20:17:35.033", "id": "23452", "postId": "21698", "score": "0", "text": "Noted... thanks... I tested it... Regardless of any pre-existing newline chars (which remain uneffected), it replaces the '\\0' with a newline (ie, an extra one) and truncates the rest... The result is a trailing newline char which wasn't there beforehand.... I see now why you did it your way.. *experience!* :) ...", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2011-01-15T20:27:24.797", "id": "23454", "postId": "21698", "score": "0", "text": "@fred.bear: Actually, `head` keeps the newline at the end of the first line, and the second `tr` changes it to a spurious null character. Oops again. Oh well, I've changed it to use awk, which can be told to use a different record separator: I tell it to print the first null-delimited record (with a trailing newline, but the shell will strip that in `$(…)`) and exit.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2011-01-16T13:41:24.193", "id": "23553", "postId": "21698", "score": "0", "text": "Gilles. You've resolved the issue very nicely/ Thanks for that... As a side issue, I've time tested 3 ways of extracting the command name from /proc/$PID/cmdline. I'm posting them for general interest (and comment if any are flawed :)... For 10000 calls, the times varied from 31.8s to 33.0 ..... (1) **`cmd=\"$(</proc/$PID/cmdline awk -vRS='\\0' '{print; exit;}')\"`** ..... (2) **`eval cmd=\\\"\"$(</proc/$PID/cmdline sed -n \"s/\\x00/\\\"\\n#/gp\")\"`** ..... (3) **`cmd=\"$(</proc/$PID/cmdline tr \\\\0 \\\\n)\"; cmd=\"${cmd%%$'\\n'*}\"`**", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2011-01-16T14:31:45.540", "id": "23562", "postId": "21698", "score": "0", "text": "@fred.bear: Only (1) works if there's a newline in argv[0]. `cmd=$(cat /proc/$PID/cmdline); cmd=${cmd%%$'\\0'}` works in ksh, but not in bash.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2011-01-16T19:46:23.600", "id": "23600", "postId": "21698", "score": "0", "text": "Thanks again... It's been a lot of effort all around on this one.. I do greatly appreaciate the help.. I feel I've made another step.. (not sure where I'm going with my steps, but it's a fascinating journey) .. and I'll be watching out more carefully for those pesky \"what are they doing there?\" newlines from here on :)", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-15T17:07:58.143", "id": "21698", "lastActivityDate": "2013-01-04T18:56:21.277", "lastEditDate": "2013-01-04T18:56:21.277", "lastEditorDisplayName": null, "lastEditorUserId": "1059", "ownerDisplayName": null, "ownerUserId": "1059", "parentId": "21650", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<pre><code>ps $PID | tail -1 | awk '{i=5; while (i&lt;NF) {printf \"%s \", $i; i++}; print $NF}'\n</code></pre>\n\n<p>Where $PID is the PID you have. Probably the full command you want (based on your question above) is:</p>\n\n<pre><code>which \"$(ps $(xdotool getwindowpid $(xdo...
null
null
null
null
null
21651
1
null
2011-01-15T11:45:42.723
16
1125
<p>How can i upgrade all the 50 desktops to Maverick Meerkat. Is there any netinstall method ? </p>
8943
866
2011-01-15T15:40:46.753
2011-01-15T18:39:39.377
How to upgrade all 50 Desktops in a network?
[ "upgrade" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T11:55:02.830", "id": "23330", "postId": "21651", "score": "1", "text": "A network with 50 Desktops is more likely a small business, I would recommend you to keep with the LTS (10.04) version. I would also recommend you to setup an APT proxy to save bandwidth usage, ...
null
[ { "accepted": null, "body": "<p>See <a href=\"http://www.ubuntu.com/desktop/get-ubuntu/upgrade\" rel=\"nofollow\">http://www.ubuntu.com/desktop/get-ubuntu/upgrade</a>. It has instructions for both Desktop and Server editions.</p>\n", "commentCount": "3", "comments": [ { "creationDate"...
null
null
null
null
null
21652
1
21656
2011-01-15T12:14:39.250
1
1160
<p>I am running Ubuntu 10 on a VMware player running on Windows 7. I have an Geforce 8800 card.</p> <p>Currently I can't run visual effects, and I wasn't able to find any answer except for changing the VM to VirtualBox. Since I already use VMWare for other purposes, I don't want to use VirtualBox.</p> <p>Is there a way to enable Visual Effects and stay in VMWare?</p> <p>Thanks, Sakin</p>
8945
null
null
2011-01-15T12:55:36.257
How can I enable Visual Effects on Ubuntu 10 running on VMware Player on Windows 7?
[ "vmware", "effects" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I was looking for the same thing, but VM Player doesn't support visual effects at all, which is pretty much the one big 'damn' I've come across comparing VMP &amp; VB</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T12:55:36.257", "id": "21656", "lastActivityDate": "2011-01-15T12:55:36.257", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7800", "parentId": "21652", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I was looking for the same thing, but VM Player doesn't support visual effects at all, which is pretty much the one big 'damn' I've come across comparing VMP &amp; VB</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "C...
null
null
null
null
null
21654
1
21655
2011-01-15T12:26:53.307
7
20734
<p>The network interface should not make a request for an IP over DHCP. So, what is the command to turn off NetworkManager in Ubuntu? </p> <p>Update:</p> <p>I am writing a script in which the interfaces receive static IPs. For this to happen I need to put a line in the script which will turn off NetworkManager. But when I'm not using that script I want to have DHCP on the interfaces.</p>
2968
3037
2011-01-16T12:04:51.590
2011-01-16T13:57:44.607
How to temporarily turn off NetworkManager from the command-line?
[ "network-manager" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you don't want to have your inteface make a DHCP request, simply edit it (right on network manager applet, choose \"Edit Connections\", click on the interface in question, then choose the IPv4 tab and change \"Automatic (DHCP)\" to \"Manual\" and specify your settings manually.</p>\n\n<p>If you need to turn off network manager regardless, use </p>\n\n<pre><code>sudo service network-manager stop\n</code></pre>\n\n<p>You can specify stop, start or restart for most services.</p>\n\n<p>Htorque notes that service is being deprecated in Ubuntu in favour of the <code>stop</code>, <code>start</code> and <code>restart</code> commands. So :</p>\n\n<pre><code>sudo stop network-manager\n</code></pre>\n\n<p>would also work. I still prefer using service because, as of Maverick, there's no auto-complete when you use the newer commands. A <a href=\"https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/672067\">bug has been filed about this</a>, and from that, a fix has been released, so hopefully this will be rectified in Natty this coming April.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-15T12:45:05.567", "id": "23336", "postId": "21655", "score": "0", "text": "I am writing a script in which the interfaces receive static ips. For this to happen I need to put a line in the script which will turn off the network manager. But when I'm not using that script I want to have dhcp on the interfaces.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2011-01-15T13:14:46.180", "id": "23340", "postId": "21655", "score": "1", "text": "Okay updated my answer. You should really update your question with this specific requirement.", "userDisplayName": null, "userId": "861" }, { "creationDate": "2011-01-16T12:02:16.710", "id": "23540", "postId": "21655", "score": "0", "text": "Addendum: `service` still works with Upstart, but it is a SysV command.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T12:10:03.783", "id": "23542", "postId": "21655", "score": "0", "text": "By which you mean that it will be phased out in favour of `stop` and `start`, right? I'm surprised it doesn't offer deprecation warnings when you run it actually.", "userDisplayName": null, "userId": "861" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T12:39:52.310", "id": "21655", "lastActivityDate": "2011-01-16T13:57:44.607", "lastEditDate": "2011-01-16T13:57:44.607", "lastEditorDisplayName": null, "lastEditorUserId": "861", "ownerDisplayName": null, "ownerUserId": "861", "parentId": "21654", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>If you don't want to have your inteface make a DHCP request, simply edit it (right on network manager applet, choose \"Edit Connections\", click on the interface in question, then choose the IPv4 tab and change \"Automatic (DHCP)\" to \"Manual\" and specify your settings manu...
null
null
null
null
null
21657
1
21658
2011-01-15T13:04:59.770
146
172611
<p>Is there a way to show the history of packages that were changed by apt-get via command line?</p>
7155
158442
2016-04-30T18:51:10.523
2018-07-19T09:56:56.430
How do I show apt-get package management history via command line?
[ "apt", "history" ]
6
1
CC BY-SA 3.0
[ { "creationDate": "2015-08-27T15:59:27.280", "id": "962520", "postId": "21657", "score": "3", "text": "possible duplicate of [Is it possible to get a list of most recently installed packages?](http://askubuntu.com/questions/17012/is-it-possible-to-get-a-list-of-most-recently-installed-packages)"...
{ "accepted": true, "body": "<p>All actions with apt (apt-get) are logged. These files are available in /var/log/apt/. To view the most recent history log, execute:</p>\n\n<pre><code>less /var/log/apt/history.log\n</code></pre>\n\n<p>These logs gets rotated (every month I guess), old files will be suffixed with a number and compressed. So to view the next history log, use:</p>\n\n<pre><code>zless /var/log/apt/history.log.1.gz\n</code></pre>\n\n<p>To view the logs available:</p>\n\n<pre><code>ls -la /var/log/apt/\n</code></pre>\n", "commentCount": "7", "comments": [ { "creationDate": "2012-04-03T17:33:17.927", "id": "140713", "postId": "21658", "score": "5", "text": "This is excellent. The only thing missing is who ran the commands.", "userDisplayName": null, "userId": "53329" }, { "creationDate": "2012-04-03T17:41:11.833", "id": "140717", "postId": "21658", "score": "4", "text": "@LimitedAtonement Have a look at /var/log/auth.log, it *may* contain the user running the installation. (this won't help if the installation was invoked through a shell/program running as root)", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2015-09-01T23:33:37.833", "id": "965562", "postId": "21658", "score": "3", "text": "Also useful: zgrep, zcat", "userDisplayName": null, "userId": "260348" }, { "creationDate": "2016-05-23T19:26:38.367", "id": "1160808", "postId": "21658", "score": "0", "text": "does this file also log the dependency packages installed as a result of original apt-get?", "userDisplayName": null, "userId": "111621" }, { "creationDate": "2016-05-24T11:36:45.630", "id": "1161192", "postId": "21658", "score": "0", "text": "@Mahesha999 It does not, it only logs requested packages. Try /var/log/dpkg.log for the lower level installation details that included dependends.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2016-12-18T23:13:25.453", "id": "1330119", "postId": "21658", "score": "3", "text": "@LimitedAtonement the latest versions of APT offer a \"Requested-By:\" portion of the log to show who invoked the command as well as which command they invoked like \"Commandline: packagekit role='update-packages' \" or \"Commandline: apt upgrade\"", "userDisplayName": null, "userId": "72652" }, { "creationDate": "2024-01-12T22:32:00.910", "id": "2627926", "postId": "21658", "score": "0", "text": "Note that after a reboot, `/var/log/apt/history.log` ceases to exist...", "userDisplayName": null, "userId": "38599" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T13:10:58.657", "id": "21658", "lastActivityDate": "2011-01-15T13:10:58.657", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6969", "parentId": "21657", "postTypeId": "2", "score": "172" }
[ { "accepted": true, "body": "<p>All actions with apt (apt-get) are logged. These files are available in /var/log/apt/. To view the most recent history log, execute:</p>\n\n<pre><code>less /var/log/apt/history.log\n</code></pre>\n\n<p>These logs gets rotated (every month I guess), old files will be suffixed ...
null
null
null
null
null
21662
1
null
2011-01-15T13:38:22.230
4
9430
<p>I have an external drive with two partitions - one encrypted, the other not so. I'd like to move all the data to the encrypted partition, and then resize it to take up the whole drive.</p> <p>If I use gparted on a truecrypt-encrypted partition, will that destroy the data?</p> <p>Otherwise I have to decrypt, merge, resize and then re-encrypt. </p>
199
null
null
2013-06-10T22:14:32.263
Can I use gparted to resize a Truecrypt-encrypted partition?
[ "partitioning", "encryption", "gparted", "truecrypt" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Gparted only knows about physical disks - a Truecrypt parition won't even show up in Gparted, unless perhaps the whole partition has been specified as a Truecrypt partition. Certainly containers don't appear.</p>\n\n<p>There is no way to resize an exisiting truecrypt paritio...
null
null
null
null
null
21666
1
null
2011-01-15T13:55:57.847
1
2466
<p>I have a Samsung R430 notebook that has been running Ubuntu for close to a year, now. Since I've upgrated to Maverick, I've been dealing with little, but increasingly annoying issues, that put my faith to question.</p> <p>The first one, a CPU-intensive set of drm_kms_helper, made me compile my own kernel and set polling to off just so I could move my mouse without frequent stuttering. That led me to dealing with a screen that gets dimmer and dimmer after each sleep/wake-up cycle, which eventually leads me to reboot.</p> <p>Since I have seen some KMS and brightness related bugs around, I was wondering if it is a definite cause for my problem. If so, has there been any advance on the excessive polling issue for those of us plagued by it?</p>
8948
null
null
2011-12-11T07:44:37.787
Can turning off drm_kms_helper polling affect screen brightness control?
[ "xorg", "kms" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Instead of compiling your own kernel, you can disable polling at boot time. Edit <code>/etc/rc.local</code> and add this line:</p>\n\n<pre><code>echo 0 &gt; /sys/module/drm_kms_helper/parameters/poll\n</code></pre>\n\n<p>You'll likely need to open a bug report for the other i...
null
null
null
null
null
21669
1
21672
2011-01-15T14:19:00.463
14
445
<p>Is there an API set for Ubuntu One? For example, an API to sync contacts, bookmarks, etc.</p>
8950
25863
2012-04-03T19:14:38.477
2012-07-16T02:51:40.490
Is there any API for Ubuntu One?
[ "ubuntu-one" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The common way to store something persistently and have it synchronise with Ubuntu One is to just use desktopcouch. Here's an example:</p>\n\n<pre><code>from desktopcouch.records.server import CouchDatabase\nfrom desktopcouch.records.record import Record\n\ndatabase = CouchDatabase(\"askubuntu_test\", create=True)\n\nrecord = Record(\n {\"site\": \"askubuntu.com\", \"awesome\": True}, \"http://example.com\")\n\ndatabase.put_record(record)\n</code></pre>\n\n<p>Where \"example.com\" should ideally point to a description of your record format. </p>\n\n<p>And to retrieve the information afterwards:</p>\n\n<pre><code>database = CouchDatabase(\"askubuntu_test\")\n\nfor i in database.get_records(create_view=True):\n print i\n</code></pre>\n\n<p>The API to desktopcouch is pretty straightforward, have a look at the <a href=\"http://www.freedesktop.org/wiki/Specifications/desktopcouch/Documentation\">Desktopcouch Documentation</a> to learn more about it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T14:40:15.173", "id": "21672", "lastActivityDate": "2011-01-16T05:24:58.493", "lastEditDate": "2011-01-16T05:24:58.493", "lastEditorDisplayName": null, "lastEditorUserId": "1067", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "21669", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>The common way to store something persistently and have it synchronise with Ubuntu One is to just use desktopcouch. Here's an example:</p>\n\n<pre><code>from desktopcouch.records.server import CouchDatabase\nfrom desktopcouch.records.record import Record\n\ndatabase = CouchDa...
null
null
null
null
null
21671
1
21676
2011-01-15T14:29:58.967
3
353
<p><img src="https://i.stack.imgur.com/ka634.jpg" alt="2 shortcuts"></p> <p>After updating Ubuntu One, I'm stuck with 2 shortcuts to Ubuntu One in my Places menu. How can I remove it?</p>
2396
866
2011-01-15T14:32:17.367
2011-01-15T14:49:15.697
Two Ubuntu One shortcuts in Places menu
[ "gnome", "ubuntu-one", "shortcuts", "places" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Please can you <a href=\"https://bugs.launchpad.net/ubuntuone-client/+filebug\" rel=\"nofollow noreferrer\">file a bug</a>, and assign it to me? This shouldn't happen.</p>\n\n<p>You can remove the second bookmark by opening Nautilus, and removing the bookmark from the \"Places\" sidepane:\n<img src=\"https://i.stack.imgur.com/zPqZW.png\" alt=\"removing the Ubuntu One bookmark\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-15T14:49:37.443", "id": "23361", "postId": "21676", "score": "0", "text": "lol just as I was done typing :P", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-15T22:48:50.237", "id": "23481", "postId": "21676", "score": "0", "text": "I've had this problem for more than a month now, probably from the update of the 10th december. Is it still worth to file a bug?", "userDisplayName": null, "userId": "2396" }, { "creationDate": "2011-01-16T00:54:05.543", "id": "23501", "postId": "21676", "score": "0", "text": "Yes, please do!", "userDisplayName": null, "userId": "711" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T14:46:54.280", "id": "21676", "lastActivityDate": "2011-01-15T14:46:54.280", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "711", "parentId": "21671", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Please can you <a href=\"https://bugs.launchpad.net/ubuntuone-client/+filebug\" rel=\"nofollow noreferrer\">file a bug</a>, and assign it to me? This shouldn't happen.</p>\n\n<p>You can remove the second bookmark by opening Nautilus, and removing the bookmark from the \"Place...
null
null
2017-03-17T08:44:45.973
null
null
21673
1
21767
2011-01-15T14:42:30.927
5
2912
<p>Summary: I'd like to use two Ubuntu computers to extend/compliment an existing wireless access point.</p> <p>I have a network which currently looks a bit like this:</p> <p><img src="https://i.stack.imgur.com/1prvP.png" alt="Network"></p> <p>What the diagram doesn't show is the interference caused by our house. It's a wifi-blocking robot sent here from the past. The two wired computers are in areas where the signal is most blocked (not by design, just a happy co-incidence).</p> <p>Both wired computers have fairly good network cards. They're both Ubuntu machines and I would like to turn them into additional base stations.</p> <p>I know I could throw more networking hardware at this (network extenders or cable in additional, pure wireless access points) but I've got two Linux machines sitting in ideal places and I feel like they should be able to help me out.</p> <p>I've tried ad-hoc networks but I need something that is a lot more transparent (eg you can migrate from base to base without a connection dropping); it should look like one network to clients.</p> <p>Here's a diagram of what I want:</p> <p><img src="https://i.stack.imgur.com/xTolt.png" alt="Where I&#39;m trying to get"></p>
449
449
2011-01-15T15:33:01.027
2011-02-15T04:02:06.200
Hybrid wireless network repeating
[ "networking", "wireless", "routing", "wireless-access-point" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can use <a href=\"http://en.wikipedia.org/wiki/Wireless_Distribution_System\" rel=\"nofollow noreferrer\">WDS</a> which is supported by hostapd. But the speeds are not good. So you can try the solution that I am working on:</p>\n\n<p>Verify if your wireless driver has <a href=\"http://wireless.kernel.org/en/users/Drivers\" rel=\"nofollow noreferrer\">mac80211 support here</a></p>\n\n<p>Install hostapd from apt <code>apt-get install hostapd</code>. Untill recently the apt binaries did not have support for mac80211. So for compiling it you can <a href=\"http://wireless.kernel.org/en/users/Documentation/hostapd?action=show&amp;redirect=RTFM-AP\" rel=\"nofollow noreferrer\">refer this</a></p>\n\n<p>I did not get the hostapd conf file. So googled and got it. You can use mine <a href=\"http://ubuntuforums.org/showthread.php?t=1663788\" rel=\"nofollow noreferrer\">from here</a>. Place it as <code>/etc/hostapd/hostapd.conf</code>. The changes you need to do are the following; eithet comment them out, or modify:</p>\n\n<pre><code>interface=wlan0\ndriver=nl80211\nbridge=br0\nssid=test\nchannel=1\n</code></pre>\n\n<p>With regard to ssid if you have the same one as your wireless routers and if your wireless router is in AP mode (just an entry door for the wireless devises to your wired network; and routing, firewalling, dhcp, dns is done by your wired router open to WAN), it would be bit more convenient.</p>\n\n<p>The following code will make you pc an <a href=\"https://askubuntu.com/questions/21679/script-to-setup-ubuntu-as-a-wireless-accesspoint-on-a-bridge-mode\">AP too</a> (by creating a network bridge):</p>\n\n<pre><code>#!/bin/bash\n\nservice network-manager stop \nifconfig eth0 0.0.0.0 #remove IP from eth0\nifconfig eth0 up #ensure the interface is up\n\nifconfig wlan0 0.0.0.0 #remove IP from eth1\nifconfig wlan0 up #ensure the interface is up\n\nbrctl addbr br0 #create br0 node\nhostapd -d /etc/hostapd/hostapd.conf &gt; /var/log/hostapd.log &amp;\nsleep 5\nbrctl addif br0 eth0 #add eth0 to bridge br0\nbrctl addif br0 wlan0 #add wlan0 to bridge br0\n\nifconfig br0 192.168.1.15 netmask 255.255.255.0 #ip for bridge\nifconfig br0 up #bring up interface\nroute add default gw 192.168.1.1 # gateway\n</code></pre>\n\n<p>Change interface names, ip, gateway according to your needs.</p>\n\n<p>If you want to have security you can refer to the <a href=\"http://wireless.kernel.org/en/users/Documentation/hostapd?action=show&amp;redirect=RTFM-AP\" rel=\"nofollow noreferrer\">above mentioned link</a>. You can try having WPA-PSK with a common shared key for all your AP's.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T02:03:48.847", "id": "21767", "lastActivityDate": "2011-01-16T02:18:51.303", "lastEditDate": "2017-04-13T12:24:19.513", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "2968", "parentId": "21673", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You can use <a href=\"http://en.wikipedia.org/wiki/Wireless_Distribution_System\" rel=\"nofollow noreferrer\">WDS</a> which is supported by hostapd. But the speeds are not good. So you can try the solution that I am working on:</p>\n\n<p>Verify if your wireless driver has <a ...
null
null
null
null
null
21674
1
21775
2011-01-15T14:43:09.990
6
138
<p>Something weird happened today, and I dont know how. Within a folder, all folders have a file by the same name, with a colon appended to it. And all the files from the most inner-most directory in my home, have been dumped to ~, with a size of 0 bytes. </p> <p><img src="https://i.stack.imgur.com/STKPG.png" alt="alt text"> <hr> <img src="https://i.stack.imgur.com/fs8DD.png" alt="alt text"> <hr> <img src="https://i.stack.imgur.com/NEQol.png" alt="alt text"></p> <p>I have not executed any scripts or anything. I was just checking out some easter eggs, namely the <code>gegls from outer space</code> and <code>free the fish</code> and was away from the computer and was logged because of the screensaver. I couldnt log-back in with my password, so I just reset the PC, and while booting, the PC went into a drive check. BUT, IIRC, i saw the duplicate "folder files" before I had logged out, so thats not the reason! All the files have a timestamp of 14 Jan. Also, the contents of my eclipse folder have been dumped into ~. Right down to the jars and ini files.</p> <p>HELP!</p>
3778
134729
2013-03-18T20:09:02.873
2013-03-18T20:09:02.873
Wiped data, and duplicated folders into files
[ "data-recovery" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can delete all files ending with <strong>:</strong> with this command:</p>\n\n<pre><code>find -name *: | xargs rm\n</code></pre>\n\n<p>You should <strong>execute</strong> <code>find -name *:</code> <strong>first</strong> to check what will be removed.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-10-12T19:22:43.553", "id": "248502", "postId": "21775", "score": "1", "text": "@theTuxRacer I wouldn't do that just yet as it will deter users who actually have a solution. Remember that you can always set a bounty.", "userDisplayName": null, "userId": "54298" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T02:23:05.557", "id": "21775", "lastActivityDate": "2011-01-16T02:23:05.557", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "21674", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You can delete all files ending with <strong>:</strong> with this command:</p>\n\n<pre><code>find -name *: | xargs rm\n</code></pre>\n\n<p>You should <strong>execute</strong> <code>find -name *:</code> <strong>first</strong> to check what will be removed.</p>\n", "comment...
null
null
null
null
null
21679
1
21704
2011-01-15T14:50:24.057
4
14757
<p>I use the following script to make my netbook a full-fledged wireless access point. It creates a bridge with eth0 and wlan0 and starts <code>hostapd</code>. </p> <pre><code>#!/bin/bash service network-manager stop ifconfig eth0 0.0.0.0 #remove IP from eth0 ifconfig eth0 up #ensure the interface is up ifconfig wlan0 0.0.0.0 #remove IP from eth1 ifconfig wlan0 up #ensure the interface is up brctl addbr br0 #create br0 node hostapd -d /etc/hostapd/hostapd.conf &gt; /var/log/hostapd.log &amp; sleep 5 brctl addif br0 eth0 #add eth0 to bridge br0 brctl addif br0 wlan0 #add wlan0 to bridge br0 ifconfig br0 192.168.1.15 netmask 255.255.255.0 #ip for bridge ifconfig br0 up #bring up interface route add default gw 192.168.1.1 # gateway </code></pre> <p>This script works efficiently. But if I want to revert back to use Network Manager, I cannot do it. The bridge simply cannot be deleted. How can I modify this script so that if I run <code>bridge_script --stop</code>, the bridge gets deleted, network manager starts and interfaces behave as if the machine had a fresh reboot.</p>
2968
208574
2014-09-08T05:17:48.950
2014-09-08T05:17:48.950
How to stop Wireless AP Hosting using Network Manager on Ubuntu?
[ "wireless", "wireless-access-point", "network-bridge" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You have to remove interfaces from the vbridge before it can be deleted. These commands should do it:</p>\n\n<pre><code>killall hostapd \nbrctl delif br0 eth0 \nbrctl delif br0 wlan0 \nifconfig br0 down \nbrctl delbr br0 \nservice networking restart \n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T02:37:17.633", "id": "23510", "postId": "21704", "score": "0", "text": "No,didn't work. The interfaces are removed but it shows that bridge cannot be removed.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2011-01-16T02:53:57.107", "id": "23511", "postId": "21704", "score": "0", "text": "are you root? try dropping the br0 interface before you delete it...editing", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2011-01-18T13:40:49.060", "id": "23862", "postId": "21704", "score": "0", "text": "Thanks. Now I can turn my netbook into a wireless AP, as quickly as it can be made a normal wreless client. Also all my wireless devises have become useful once more.", "userDisplayName": null, "userId": "2968" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-15T17:24:41.490", "id": "21704", "lastActivityDate": "2014-03-27T23:57:33.370", "lastEditDate": "2014-03-27T23:57:33.370", "lastEditorDisplayName": "user200337", "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5768", "parentId": "21679", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You have to remove interfaces from the vbridge before it can be deleted. These commands should do it:</p>\n\n<pre><code>killall hostapd \nbrctl delif br0 eth0 \nbrctl delif br0 wlan0 \nifconfig br0 down \nbrctl delbr br0 \nservice networking restart \n</code></pre>\n", ...
null
null
null
null
null
21681
1
null
2011-01-15T15:13:51.253
8
30132
<p>As soon as a Windows application creates a shortcut/directory in Wine Start Menu Programs directory (in particular I do this manually by means of Total Commander and it works), it gets reflected in Ubuntu Wine Programs menu. But when a shortcut/folder is removed (manually, by means of Total Commander again),the Ubuntu Wine Programs menu item persists, and this is an undesirable behaviour.</p> <p>I've once done something causing Wine/Ubuntu to actually refresh the menu state and remove orphan items, but unfortunately I can't remember what. Do you know the way? I am specifically interested in hand-made/removed shortcuts, not installing/uninstalling Windows software.</p>
2390
42136
2012-03-06T23:56:06.313
2016-05-12T07:40:49.373
How do I correctly remove items from Wine Programs menu?
[ "wine", "shortcuts" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>According to the XDG specification on where \"shortcut links\" are stores, you are looking for .desktop files which are saved for wine programs in the local home folder:</p>\n\n<pre><code>~/.local/share/applications/\n</code></pre>\n\n<p>In here you will find all your wine ba...
null
null
2015-01-09T14:40:41.100
null
null
21686
1
64236
2011-01-15T16:28:02.670
45
64150
<p>I <a href="https://bfiller.wordpress.com/2011/01/13/unity-2d/">read</a> that there is now a 2D version of Unity built on <a href="http://qt.nokia.com/">Qt</a>. How do I install it, and once it's installed, how do I switch to it?</p>
235
14356
2012-04-21T23:07:50.470
2019-02-22T19:40:39.063
How do I install and switch to the Unity 2D desktop?
[ "unity-2d", "desktop-environments", "qt" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<h2>For 11.10, 12.04, &amp; 12.10</h2>\n<p>Users of 11.10 and above have Unity 2D installed by default already.</p>\n<p>To use it, logout, you will be confronted by the LightDM manager.</p>\n<p>Then, click the little cog wheel, and select <code>Ubuntu 2D</code>.</p>\n<p>Then, enter your password, hit <kbd>Enter</kbd> and you'll be logged into Unity 2D.</p>\n<p><img src=\"https://i.stack.imgur.com/VghyR.gif\" alt=\"enter image description here\" /></p>\n<p>For 13.04, no need to do this - they have integrated the Unity 2D and Unity 3D environments.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2013-03-18T14:45:31.947", "id": "337514", "postId": "64236", "score": "1", "text": "is the cog wheel position saved for succeeding logins?", "userDisplayName": null, "userId": "100478" }, { "creationDate": "2013-03-18T14:51:42.630", "id": "337516", "postId": "64236", "score": "1", "text": "in which file is this setting saved?", "userDisplayName": null, "userId": "100478" }, { "creationDate": "2013-03-18T15:14:26.603", "id": "337528", "postId": "64236", "score": "0", "text": "it is indeed saved for succeeding logins. as for were, no clue.", "userDisplayName": null, "userId": "6005" }, { "creationDate": "2013-07-17T06:13:51.727", "id": "407620", "postId": "64236", "score": "2", "text": "13.04, no such thing is present on the login page.", "userDisplayName": null, "userId": "9685" }, { "creationDate": "2013-07-20T17:35:16.790", "id": "409624", "postId": "64236", "score": "0", "text": "@KarelBílek fixed.", "userDisplayName": null, "userId": "6005" }, { "creationDate": "2013-08-18T15:56:19.283", "id": "425623", "postId": "64236", "score": "1", "text": "According to [Ubuntu Forums](http://ubuntuforums.org/showthread.php?t=2143639): `Unity 2D was removed from 12.10 onwards.`", "userDisplayName": null, "userId": "156684" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-10-04T14:21:34.060", "id": "64236", "lastActivityDate": "2013-07-20T17:35:11.197", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "6005", "parentId": "21686", "postTypeId": "2", "score": "36" }
[ { "accepted": null, "body": "<h2>For 10.10</h2>\n<p>For people running 10.10 you can add the <a href=\"https://launchpad.net/%7Eunity-2d-team/+archive/unity-2d-daily\" rel=\"noreferrer\">Unity 2D PPA</a>.</p>\n<p>Go to Applications -&gt; Ubuntu Software Center -&gt; Edit (Menu) -&gt; Software Sources -&gt; ...
null
null
null
null
null
21689
1
null
2011-01-15T16:40:00.673
7
1672
<p>Trying to copy the content of a DVD on a Asrock ION 330 running Maverick, i.e. with:</p> <p><code>dd if=/dev/sr0 of=dvdcopy</code></p> <p>...I get errors in /var/log/messages:</p> <p><code> Jan 15 17:18:15 asrock kernel: [ 2616.445966] sr 1:0:0:0: [sr0] Unhandled sense code<br> Jan 15 17:18:15 asrock kernel: [ 2616.445975] sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE<br> Jan 15 17:18:15 asrock kernel: [ 2616.445984] sr 1:0:0:0: [sr0] Sense Key : Medium Error [current] <br> Jan 15 17:18:15 asrock kernel: [ 2616.445994] sr 1:0:0:0: [sr0] Add. Sense: Id CRC or ECC error<br> Jan 15 17:18:15 asrock kernel: [ 2616.446004] sr 1:0:0:0: [sr0] CDB: Read(10): 28 00 00 00 00 02 00 00 02 00<br></code></p> <p>I'd tell it is a hardware problem, but it happens with various DVDs and on a second PC, also running Maverick... Both the PCs previously ran Lucid, same problems.</p> <p>Edit: the DVD-ROMs are proven working on my brother's PC.</p> <p>Edit #2: I'd like also hints about what to look for on Google.. thanks!</p>
8934
8934
2011-01-22T13:37:44.903
2012-05-30T17:29:09.087
Can you tell whether I have a hardware or software problem with a DVD-ROM drive?
[ "dvd", "cd", "cd-drive", "drive" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>If you need to copy a DVD use brasero. Save the dvd as an iso.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-01-15T17:31:06.973", "id": "23385", "postId": "21694", "score": "0", "text": "Thank you Rola...
null
null
null
null
null
21690
1
null
2011-01-15T16:40:47.427
0
1742
<p>After installation it asks me to restart or continue using live system and im going to use live system but afer wards i can't shut down my computer there is only restart or hibernate available. I think it is a designing fault.</p>
null
721
2011-03-22T21:38:57.523
2013-04-24T17:36:23.230
No option to Shutdown when running from Live CD
[ "live-cd", "ubiquity" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T16:43:10.057", "id": "23375", "postId": "21690", "score": "0", "text": "this is not a question.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-16T01:51:41.350", "id": "23507", "postId": "21690", "score": "2", ...
null
[ { "accepted": null, "body": "<p>Open a terminal and type <code>sudo shutdown -s</code> then press enter.</p>\n\n<p><em>Next time please ask a question and not write a rant :).</em></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", ...
null
null
null
null
nithin
21692
1
21716
2011-01-15T16:44:39.200
10
160
<p>I'm attempting to forward <a href="https://bugs.launchpad.net/hundredpapercuts/+bug/625837">this</a> bug report in Launchpad to the appropriate project, but I'm not sure which one that is. The issue is with the user's keyboard, and the issue is that some multi-key keyboard shortcuts are not being recognised if the user presses them in a certain order.</p>
null
1992
2011-01-15T16:49:40.850
2011-01-15T18:36:46.953
What package is responsible for the functionality of the keyboard
[ "keyboard", "package-management" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The answer posted by htorque helped with the particular bug report, and the bug report linked to by htorque reveals that <code>xorg-server</code> is responsible for keyboard input, along with the management of most other input devices. More information on the X Window System can be found at it's <a href=\"http://en.wikipedia.org/wiki/X_Window_System\" rel=\"nofollow\">Wikipedia article</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-25T17:24:49.220", "id": "31088", "postId": "21716", "score": "0", "text": "Maybe it's a Natty only thing, but there's no such package...", "userDisplayName": null, "userId": "1938" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T18:36:46.953", "id": "21716", "lastActivityDate": "2011-01-15T18:36:46.953", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "user2405", "ownerUserId": null, "parentId": "21692", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>This seems to be the result of <a href=\"https://bugs.launchpad.net/ubuntu/+source/control-center/+bug/36812\" rel=\"nofollow noreferrer\">a known bug</a> (I can reproduce the behavior from the report you linked to). Its description contains all the necessary information to ...
null
null
null
null
user2405
21695
1
22715
2011-01-15T16:58:41.040
12
8563
<p>Often, when I start up a new terminal, I get the message: <code>No mail for pwnguin</code>, or <code>You have 5 unread messages</code>. I'm not terribly great with <code>mail</code>, but I do have a running instance of Evolution connecting to a Zimbra account. How can I set up Evolution to also monitor this local inbox?</p>
2296
3037
2011-01-16T12:09:39.523
2016-02-11T01:21:46.657
How can I set up Evolution to access a local mail box?
[ "evolution", "email" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This answer follows the premise that you're using a mail spool, if its mbox format your mileage may vary:</p>\n\n<ul>\n<li>Start Evolution, then go to Tools -> <em>Settings</em>.</li>\n<li>Click <em>Mail Accounts</em> -> <em>Add</em> -> <em>Forward</em>.</li>\n<li>Type in a name in the <em>Full Name</em> field.</li>\n<li>For the <em>Email Address</em> field, type in your login ID followed by @localhost. For example: <code>lazypower@localhost</code> Click <em>Forward</em>.</li>\n<li>Click on the drop down list box and select <em>Local delivery</em>. If the <em>Path</em> field in the Configuration section isn't already filled in, you'll need to type in the location of your local mailbox. Using the login ID from above as an example, here's what would be entered: <code>/var/spool/mail/lazypower</code> Click <em>Forward</em>.</li>\n<li>If you like, you can setup Evolution to automatically check this\nmail account. Click <em>Forward</em>.</li>\n<li>You're not going to be sending mail with this account, so you could just leave everything alone in the <em>Sending Email</em> window. However, I change the <em>Server Type</em> to <em>Sendmail</em>. Click <em>Forward</em>.</li>\n<li>Finally, enter a name for the mail account. The name <em>\"Local Messages\"</em> is a good choice. Click <em>Forward</em> and <em>Apply</em>.</li>\n</ul>\n\n<p>Thanks go to <a href=\"http://dotancohen.com/howto/root_email.html\" rel=\"noreferrer\">this post</a> I've verified the instructions locally. Works without a hitch.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-22T07:37:07.423", "id": "24552", "postId": "22715", "score": "0", "text": "Thanks. I think what was confusing me is that while evolution adds a \"username@localhost\" entry in the mail sidebar, the mail will be in the \"on this computer\" folders.", "userDisplayName": null, "userId": "2296" }, { "creationDate": "2017-05-04T20:00:19.483", "id": "1434990", "postId": "22715", "score": "0", "text": "I have a different version of Evolution, but I was able to accomplish the same tasks via Edit -> Preferences -> Mail Accounts -> Add and then selecting a local mbox spool file.", "userDisplayName": null, "userId": "448063" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-22T05:07:23.373", "id": "22715", "lastActivityDate": "2016-02-11T01:21:46.657", "lastEditDate": "2016-02-11T01:21:46.657", "lastEditorDisplayName": null, "lastEditorUserId": "40581", "ownerDisplayName": null, "ownerUserId": "6807", "parentId": "21695", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Try using localhost for all server names (incoming/outgoing mail server,etc) in evolution and then the usual usernames and passwords. The email address will probably also follow the username@localhost format.</p>\n", "commentCount": "4", "comments": [ { ...
null
null
null
null
null
21697
1
null
2011-01-15T17:07:08.627
5
1772
<p>I would just like to know the reason(s) behind this decision (Pros./Cons. of using Qt and NUX). Thank you very much and keep on the awesome work! Ubuntu rocks! :D</p>
8963
3037
2011-01-16T12:10:58.743
2011-01-16T12:10:58.743
Why was Qt chosen for unity-2d and Nux for 3d?
[ "unity", "unity-2d" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Nux wasn't exactly chosen - it was created from scratch and is developed alongside Unity. For some information on what it is and the benefits <a href=\"https://askubuntu.com/questions/16253/what-gui-toolkit-will-ubuntu-unity-use/17929#17929\">see this posting from Unity devel...
null
null
null
null
null
21700
1
21703
2011-01-15T17:14:42.673
19
44717
<p>I'm running Ubuntu Lucid Netbook Remix on my laptop and I need to be able to share my desktop for a Skype call. Does anyone know how to get this done?</p>
4359
25863
2012-11-21T21:49:19.293
2016-02-08T20:35:53.410
How can I share my desktop using Skype?
[ "10.04", "skype", "remote-access" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>When you are in a video call, you can share your desktop by click on the video button (as in the picture) then click share your screen>choose what to share.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8d1Km.jpg\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T17:22:11.880", "id": "21703", "lastActivityDate": "2011-01-15T17:22:11.880", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "21700", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>When you are in a video call, you can share your desktop by click on the video button (as in the picture) then click share your screen>choose what to share.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8d1Km.jpg\" alt=\"alt text\"></p>\n", "commentCount": "0", "comm...
null
null
null
null
null
21701
1
null
2011-01-15T17:20:39.390
5
2722
<p>There's another post about this, but I don't have enough 'points' to say anything on that thread. So I'll start my own ... with more details!</p> <p>My computer still boots, but gnome domain reports problems with HDD smart. This has been confirmed in the bios as it makes me press f1 to boot up now. I tried running HDD disk check in the bios, but it fails running the tests. As in, running the tests failed not that the tests themselves indicated a failed drive. Here is what disk utility is reporting as failing:</p> <pre><code>Reallocated Sector Count FAILING Normalized: 132 Worst: 132 Threshold: 140 Value: 544 Current Pending Sector Count WARNING Normalized: 200 Worst: 1 Threshold: 0 Value: 2 </code></pre> <p>Is this related to the insane number of DRDY errors on the drive?</p> <pre><code>kernel: [51345.233069] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 kernel: [51345.233076] ata1.00: BMDMA stat 0x4 kernel: [51345.233081] ata1.00: failed command: READ DMA kernel: [51345.233090] ata1.00: cmd c8/00:00:00:8b:4a/00:00:00:00:00/e0 tag 0 dma 131072 in kernel: [51345.233092] res 51/40:00:a8:8b:4a/10:04:00:00:00/e0 Emask 0x9 (media error) kernel: [51345.233097] ata1.00: status: { DRDY ERR } kernel: [51345.233103] ata1.00: error: { UNC } kernel: [51345.291929] ata1.00: configured for UDMA/100 kernel: [51345.291944] ata1: EH complete kernel: [51347.682748] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 kernel: [51347.682754] ata1.00: BMDMA stat 0x4 kernel: [51347.682759] ata1.00: failed command: READ DMA kernel: [51347.682768] ata1.00: cmd c8/00:00:00:8b:4a/00:00:00:00:00/e0 tag 0 dma 131072 in kernel: [51347.682770] res 51/40:00:a8:8b:4a/10:04:00:00:00/e0 Emask 0x9 (media error) kernel: [51347.682774] ata1.00: status: { DRDY ERR } kernel: [51347.682777] ata1.00: error: { UNC } </code></pre> <p>Did Ubuntu 10.10 and/or EXT4 eat my work laptop? What steps can I take to backup my important information, which is probably the home folder. Please include steps to recover my data on the new hard drive as well. It does me little good to have backups I can't use.</p>
2595
6005
2012-07-09T13:13:02.020
2013-03-11T08:37:13.387
Disk failure is imminent (laptop hard drive, ~5 months old)
[ "hard-drive" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T17:28:04.903", "id": "23383", "postId": "21701", "score": "4", "text": "I kind of doubt that ext4 ate your HD...I would go with faulty hardware, or damaged in shipping. I had an HD fail after 6 months and it was related to physical damage inside the drive(I cracked...
null
[ { "accepted": null, "body": "<p>If your hard drive has problems with SMART and fails to run tests you need to replace it, and soon. EXT4 didn't kill your hard drive, it had some kind of physical damage.</p>\n\n<p>This <a href=\"http://www.howtogeek.com/howto/19141/clone-a-hard-drive-using-an-ubuntu-live-cd/...
null
null
null
null
null
21707
1
null
2011-01-15T17:50:32.660
11
1229
<p>Jonathan Ridell said in a <a href="http://kamikazow.wordpress.com/2011/01/14/so-canonical-ported-unity-to-qt%E2%80%A6/#comment-578" rel="nofollow">blog post</a> that there were accessibility problems with Qt. I would just like to know what those problems are. Thank you very much and keep up the excelent work. Ubuntu Rocks!</p>
8963
8844
2011-03-06T22:07:10.953
2011-11-02T15:50:50.330
What are the accessibility problems of Qt?
[ "unity-2d", "qt", "accessibility" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I haven't done any development in Qt, but my gloss on the subject of accessibility there is that the concern might be a bit overblown. My understanding is that while GTK has built-in ATK support, Qt has to use a 'bridge' component to tie its native system to the accepted Lin...
null
null
null
null
null
21708
1
null
2011-01-15T17:55:40.513
5
4154
<p>Most of the time when I share a folder from Ubuntu, the name field is made yellow and it says "Share name too long". But even if I keep this name, it works fine. So what is it too long for? What is the limit?</p> <p><img src="https://i.stack.imgur.com/nUHUE.png" alt="&quot;Share name is too long&quot; dialog"></p>
5032
null
null
2011-01-15T18:22:29.387
"Folder sharing" says "Share name is too long"... for what?
[ "samba", "file-sharing" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T18:19:54.603", "id": "23402", "postId": "21708", "score": "0", "text": "Name should not contain space i guess.", "userDisplayName": null, "userId": "5691" } ]
null
[ { "accepted": null, "body": "<p>There is a bug in the dialogue. Add <em>another</em> character and you'll notice the warning disappears!</p>\n\n<p>The warning is there because some systems that can access Samba filesystems also have fairly extreme filename-length limits. For example you <em>can</em> connect...
null
null
null
null
null
21711
1
null
2011-01-15T18:07:08.253
78
78767
<p>I connected my laptop to my LCD. Using the laptop display hotkey I can switch between different modes - only laptop monitor on, only LCD monitor on, both on and display the same view, both on and the desktop is stretched (divided).</p> <p>But, I'm looking for something else - I would like to have two workspaces, one visible on the laptop monitor and the other on the LCD.</p> <p>Is that possible?</p>
1363
114
2011-01-15T18:28:37.317
2019-03-13T08:38:08.443
Multiple monitors, multiple workspaces?
[ "multiple-monitors", "workspaces" ]
5
11
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T18:45:08.283", "id": "23409", "postId": "21711", "score": "0", "text": "This question is a duplicate of: http://askubuntu.com/q/5082/275", "userDisplayName": null, "userId": "275" }, { "creationDate": "2011-01-15T19:04:04.700", "id": "23419", ...
null
[ { "accepted": null, "body": "<p>This guy has a working xorg.conf for multiple cards multiple desktops using a displaylink usb adapter: <a href=\"http://mulchman.org/blog/?tag=displaylink\" rel=\"nofollow\">http://mulchman.org/blog/?tag=displaylink</a></p>\n", "commentCount": "0", "comments": [], ...
null
null
null
null
null
21714
1
null
2011-01-15T18:22:58.257
5
852
<p>A picture is worth a thousand words...</p> <p>Screenshot (gVim) -</p> <p><img src="https://i.stack.imgur.com/2SCjh.png" alt="alt text"></p> <p>Screenshot (LibreOffice) -</p> <p><img src="https://i.stack.imgur.com/DDYXc.png" alt="alt text"></p> <p>The Appearance Preferences dialog -</p> <p><img src="https://i.stack.imgur.com/CYaaQ.png" alt="enter image description here"></p> <p>Anyone know what causes it and how it can be fixed?</p> <p>If it's relevant - the system runs on an AMD Turion and a GeForce Go 6100. I have a feeling it's got something to do with video memory. Although I could be wrong.</p>
4152
6005
2012-02-17T23:52:56.843
2012-02-17T23:52:56.843
Unreadable characters in programs (graphic glitch)
[ "graphics", "display" ]
2
5
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T18:45:09.487", "id": "23410", "postId": "21714", "score": "0", "text": "Can you post the output of `locale` ?", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-01-15T19:08:41.447", "id": "23420", "postId": "21714", "s...
null
[ { "accepted": null, "body": "<p>I don't know if this is your problem or not, but I had a refresh problem with gVim when I was using Compiz until I did the following: Open CompizConfig Settings Manager (<code>ccsm</code>), then enable the Workarounds plugin, and in its setting, check the box for \"Qt Window ...
null
null
null
null
null
21717
1
21720
2011-01-15T18:45:20.123
3
3613
<p>I have tried to completely remove apache2.2 from my system. But the only thing that happens is that apt-get will remove "apache2-mpm-prefork" and install "apache2-mpm-worker".</p> <p>I have killed all apache processes and tried in both Synaptic. and apt-get from terminal. Why won't my system delete apache, and why will it install "apache2-mpm-worker"?</p>
8969
null
null
2011-01-15T19:10:36.617
Why can't I purge apache2.2-bin and apache2.2-common?
[ "apt", "delete", "apache2" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T18:53:17.513", "id": "23413", "postId": "21717", "score": "1", "text": "What exactly have you tried and what's the terminal output of such a failing try?", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-15T20:48:25.157", ...
{ "accepted": true, "body": "<p>Short answer: you need to purge the <code>apache2</code> package as well as <code>apache2.2-bin</code> and <code>apache2.2-common</code>. </p>\n\n<p>Explanation: <a href=\"http://packages.ubuntu.com/maverick-updates/apache2\" rel=\"noreferrer\">this package is a \"virtual package\"</a> - if you have it installed the system will make sure that one of <code>apache2-mpm-event</code>, <code>apache2-mpm-itk</code> or <code>apache2-mpm-prefork</code> or <code>apache2-mpm-worker</code> is installed. Note that these four packages themselves each depend <code>apache2.2-bin</code> and <code>apache2.2-common</code>. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-15T21:42:17.287", "id": "23472", "postId": "21720", "score": "1", "text": "You can also, usually for a sanity check, use a wildcard like \"sudo apt-get remove apache2* \" to see what relevant installed packages match. I often run this with the -s (simulate) just for safety. Another way to find installed packages would be something like \" dpkg --list | grep apache \"", "userDisplayName": null, "userId": "8844" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T19:10:36.617", "id": "21720", "lastActivityDate": "2011-01-15T19:10:36.617", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "21717", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Short answer: you need to purge the <code>apache2</code> package as well as <code>apache2.2-bin</code> and <code>apache2.2-common</code>. </p>\n\n<p>Explanation: <a href=\"http://packages.ubuntu.com/maverick-updates/apache2\" rel=\"noreferrer\">this package is a \"virtual pac...
null
null
null
null
null
21718
1
null
2011-01-15T18:53:33.287
5
2010
<p>i have a 500gb external drive (Maxtor One Touch) some days ago i moved some files from the destkop to it. the operation failed (on the disk there are only 4 or 5 incomplete files ) and i can't remove those files. i tried through nautilus and from the command line but nothing.. any idea? thanks</p>
8660
1992
2011-01-15T19:01:27.697
2012-03-17T04:55:30.700
Problem deleting broken files on external drive
[ "files", "external-hdd" ]
2
8
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T19:02:14.213", "id": "23417", "postId": "21718", "score": "2", "text": "Please attach the drive to your computer, open a terminal and paste the output of the command `mount` (use http://paste.ubuntu.com if it's too long).", "userDisplayName": null, "userId":...
null
[ { "accepted": null, "body": "<p>Unmount the drive and run <code>sudo fsck /dev/sdb1 -f</code> , (seems sdb1 is the partition you want to check).\nIf it's a NTFS partition, run <code>sudo ntfsfix /dev/sdb1</code></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-01-16T0...
null
null
null
null
null
21719
1
21723
2011-01-15T19:06:22.713
65
409206
<p>I have a laptop with win7 installed. I have now made a 60gb partition which I want to install ubuntu into. The question I have, before I do the installation, is how large each of the root, swap, and home partition should be? I have read some place that root could be as small as 8GB, but isn't that too small? Since I guess beside ubuntu all the softwares installed will reside there as well? And I think I'm going to set my swap to be 2GB large.</p> <p>My main concern is how large should the root partition should be. I'm mainly going to use ubuntu for programming and browse the web.</p>
8498
186134
2014-08-03T16:24:05.427
2021-07-28T07:16:07.917
How large should I make root, home, and swap partitions?
[ "partitioning", "system-installation" ]
10
1
CC BY-SA 3.0
[ { "creationDate": "2015-12-09T16:02:25.370", "id": "1040373", "postId": "21719", "score": "5", "text": "The requirement for swap needing to be 2 times RAM got outdated in 1992: http://superuser.com/questions/187695/why-do-we-need-to-set-swap-space-as-twice-big-as-our-physical-memory", "userD...
{ "accepted": true, "body": "<p>You actually should just install ubuntu on two partitions, <code>/</code> and <code>swap</code>. You can have ubuntu do this automatically by choosing to use the available free space (in other words, do not format your 60GB partition in vista before installing ubuntu).</p>\n\n<p>Some will argue that you should use separate partitions for <code>/home</code>, <code>/boot</code>, <code>/</code> and all kinds of things. This is useful in <strong>some</strong> situations, but for most common situations you are better off <strong>not</strong> doing this. This is because it will fragment your disk in a way that might not be wanted later. Just let ubuntu choose for you and you'll be safe :)</p>\n\n<p>You would often use a separate home in situations where you want to use:</p>\n\n<ul>\n<li>Multiple drives</li>\n<li>Multiple mutually exclusive ubuntu installs sharing the same data (could work with varying distros but not advisable to do this with different distros)</li>\n<li>Situations where your data needs to be safe in the case of a drive failure/upgrade (most normal installs are safe)</li>\n<li>You want it to be easier to reinstall or upgrade the system (just choose not to format the <code>/home</code> partition - please note a backup of important data is highly recommended during any system upgrade)</li>\n<li>The same drive is used by different systems.</li>\n<li>Your disk does not have enough capacity for both home and system data (e.g. a small SSD)</li>\n</ul>\n\n<p><strong>NB:</strong> <em>\"Ubuntu's installer offers to preserve the contents of /home, so you don't need to be afraid to lose anything when doing re-installs or upgrades. – htorque\"</em></p>\n\n<p>On another note about swap - if you want to be sure that when doing large tasks you can have a lot of swap space, you can set your swap space to be twice the size of your ram, but either way, ubuntu will handle the requirements rather well if you choose to install on the blank 60GB partition.</p>\n\n<p>You might also want to read up on Swap files instead of Swap partitions. Again this can help reduce fixed fragmentation of your disk and dynamically allocate space as you need it. Supposedly, there is no performance loss.\n<a href=\"https://askubuntu.com/questions/178712/how-to-increase-swap-space\">How to increase swap space?</a></p>\n", "commentCount": "16", "comments": [ { "creationDate": "2011-01-15T19:34:34.183", "id": "23434", "postId": "21723", "score": "0", "text": "Could you explain which situations a seperate `/home` is useful in?", "userDisplayName": null, "userId": "866" }, { "creationDate": "2011-01-15T19:47:52.473", "id": "23439", "postId": "21723", "score": "19", "text": "A separate `/home` is useful if you dual boot between two Linux distributions, such as if you do development or test for a distro. It also makes it easier to do a clean install without wiping out your `/home` and having to restore from backup. Since the newer you are, the more likely you are to mess something up and not know how to fix it without a clean install, I generally recommend a separate partition to newbies, then to combine it later when you are more comfortable.", "userDisplayName": null, "userId": "1138" }, { "creationDate": "2011-01-15T19:53:02.393", "id": "23441", "postId": "21723", "score": "0", "text": "feel free to edit as you see fit :) - this answer is open source ^^", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-15T20:02:45.610", "id": "23447", "postId": "21723", "score": "2", "text": "Ubuntu's installer offers to preserve the contents of /home, so you don't need to be afraid to lose anything when doing re-installs or upgrades.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-15T20:04:31.687", "id": "23448", "postId": "21723", "score": "0", "text": "@Karl - that's actually my situation. That's why I wonder how large my root partition should be. It is there where all the softwares will reside right? So do you think a size of 20GB is ok?", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-01-15T20:13:23.663", "id": "23450", "postId": "21723", "score": "0", "text": "If you will go that route I'd suggest 25GB to `/` and 35 to `/home`.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-15T20:27:34.650", "id": "23455", "postId": "21723", "score": "2", "text": "From my experience a size of 20GB for / is good, even with some years of installing random stuff, it is not easy to fill that. I don't think I ever exceeded more then 25GB in /. If you are careful with what you install you can probably survive without much issue with 10GB, as a regular fresh Ubuntu install will take less then 5GB, but I wouldn't recommend getting that low, as running out of space in / is hard to fix.", "userDisplayName": null, "userId": "4547" }, { "creationDate": "2011-01-15T20:35:27.460", "id": "23457", "postId": "21723", "score": "0", "text": "Made the answer a community wiki :)", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-15T22:38:23.590", "id": "23478", "postId": "21723", "score": "0", "text": "In the past, from a system admin standpoint, part of the rationale to partition (which I don't do on my desktops any more) was to protect the filesystem from getting filled up by something going wrong. The usual examples would be gigantic log files or a script writing higgledy-piggledy to disk. This is obviously more important on multi-user systems and servers.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-15T22:39:33.597", "id": "23479", "postId": "21723", "score": "0", "text": "@htorque, are you sure that ubuntu's installer offers that option...Awesome!!! I was a bit worried on what to do when I upgrade to natty...ubuntu rocks..", "userDisplayName": null, "userId": "5855" }, { "creationDate": "2011-01-15T22:48:01.617", "id": "23480", "postId": "21723", "score": "0", "text": "@Nik: See this [wiki entry](https://wiki.ubuntu.com/komputes/HowToUbuquityPreserveHome) - it's a bit dated so the information might not reflect the current state 100%.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-15T23:29:32.063", "id": "23484", "postId": "21723", "score": "2", "text": "Just tested it in a VM, and it still works that way. Start the installer, select manual partitioning, use the old / as new / and don't format it - /home, etc. were preserved (after the installation I had my panel setup, a custom launcher on the desktop and my custom wallpaper).", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T15:22:19.117", "id": "23566", "postId": "21723", "score": "0", "text": "[Generally speaking, you shouldn't bother with a separate /home or /boot partition unless you're running multiple Linux distributions at once.](http://askubuntu.com/questions/247/whats-your-recommendation-on-drive-partitioning-schemes-for-a-desktop-and-home-s/3603#3603)", "userDisplayName": null, "userId": "4776" }, { "creationDate": "2012-08-24T03:46:18.643", "id": "223293", "postId": "21723", "score": "0", "text": "I always use a separate /home partition. It takes literally no effort to make one, considering that you run through it in the setup process. If at any point something should get fouled up (during an upgrade, configuration error, etc.) having /home will allow you to do a complete reinstall without touching all those config files, pics, docs. The possible benefits far outweigh the extra minute it takes to do it.", "userDisplayName": null, "userId": "81566" }, { "creationDate": "2023-07-23T18:05:28.627", "id": "2590484", "postId": "21723", "score": "0", "text": "A bad idea of not having /home is OS data corruption. The most common situation is the worst situation. Not knowing how to retrieve corrupted system means the user is novice and should take extra care to safe guard their data with a separate home. Misleading and dangerous. Updating suggestion is recommended.", "userDisplayName": null, "userId": "225382" }, { "creationDate": "2023-07-24T19:50:51.613", "id": "2590751", "postId": "21723", "score": "0", "text": "@FahadHasanPathik no need for such strong language as \"misleading and dangerous\". See: http://askubuntu.com/questions/247/whats-your-recommendation-on-drive-partitioning-schemes-for-a-desktop-and-home-s/3603#3603. Regardless, it's a community wiki. If you disagree, you can edit it.", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": "2011-01-15T20:35:06.273", "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-15T19:17:52.770", "id": "21723", "lastActivityDate": "2016-05-30T19:10:32.777", "lastEditDate": "2017-04-13T12:24:27.110", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "21719", "postTypeId": "2", "score": "54" }
[ { "accepted": null, "body": "<p>If you don't have specific needs, I think that you can keep root and home in the same partition.</p>\n\n<p>The size of the swap partition depends on how much RAM your laptop has. If you have 4GB of RAM, a 2GB swap partition should be enough. You can then have 58GB for the sys...
null
null
null
null
null
21721
1
21785
2011-01-15T19:13:13.533
5
528
<p>I want to set up global hotkeys in Audacious as follows. When I try and set these up it doesn't allow two mask keys.</p> <ul> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Insert</kbd> for play. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Home</kbd> for pause. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>End</kbd> for stop. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Page Up</kbd> for previous track. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Page Down</kbd> for next track. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Up Arrow</kbd> for volume up. </li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Down</kbd> for volume down.</li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Left</kbd> for skip back.</li> <li><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Right</kbd> for skip forward.</li> </ul>
8970
114
2011-01-15T19:36:07.847
2011-01-16T05:39:16.090
How do I set Ctrl+Alt+something for Audacious global hokeys?
[ "music", "audacious" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T22:00:19.207", "id": "23473", "postId": "21721", "score": "0", "text": "Is using the Gnome Shortcuts plug-in an option?", "userDisplayName": null, "userId": "8844" } ]
{ "accepted": true, "body": "<p>assuming you use gnome, just run <code>gnome-keybinding-properties</code> and configure to your taste</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T05:39:16.090", "id": "21785", "lastActivityDate": "2011-01-16T05:39:16.090", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8998", "parentId": "21721", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>assuming you use gnome, just run <code>gnome-keybinding-properties</code> and configure to your taste</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T05:39:16.090", ...
null
null
null
null
null
21724
1
21727
2011-01-15T19:23:21.660
10
1646
<p>How do I make 33% "list view" in Nautilus be the default view for the system? </p> <p>If there isn't a way, another thought I am questioning: Is there a way to set a view to go recursive into all child folders? What if I want my Music folder to have a certain style of view permanently?</p>
5817
null
null
2011-01-15T19:55:40.983
How do I make 33% "list view" in Nautilus be the default view for the system?
[ "nautilus", "personalization" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>From within Nautilus navigate the menus to Edit->Preferences.</p>\n\n<p>On the main Views tab change the \"View new folders using\" option to \"List View\" and the \"Default zoom level\" option at the bottom to 33%.</p>\n\n<p><img src=\"https://i.stack.imgur.com/sdmtU.png\" alt=\"Screenshot\"></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-15T19:34:27.333", "id": "23433", "postId": "21727", "score": "0", "text": "To add to fluteflute's excellent answer, I must say that sometimes this does not work for me for some directories, even after waiting for changes to take effect. In this case I manually change it using the menu already visible in that particular directory.", "userDisplayName": "user7182", "userId": null }, { "creationDate": "2011-01-15T22:30:14.393", "id": "23476", "postId": "21727", "score": "0", "text": "Alright, that seems to be working but it wasn't work when I asked the question earlier. Not sure what I did that it appeared to be broken.", "userDisplayName": null, "userId": "5817" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T19:29:55.080", "id": "21727", "lastActivityDate": "2011-01-15T19:29:55.080", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "21724", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>From within Nautilus navigate the menus to Edit->Preferences.</p>\n\n<p>On the main Views tab change the \"View new folders using\" option to \"List View\" and the \"Default zoom level\" option at the bottom to 33%.</p>\n\n<p><img src=\"https://i.stack.imgur.com/sdmtU.png\" a...
null
null
null
null
null
21730
1
21734
2011-01-15T19:42:23.987
99
50921
<p>We get various distros like kubuntu/ubuntu/lubuntu/edu/etc... for free. We get critical updates constantly. We can download any programs we want from Ubuntu repos. Gee, I can't even imagine what kind of a CDN network you gotta have to support all this. Also, Ubuntu has a lot of people working for them: <a href="http://webapps.ubuntu.com/employment/">Ubuntu jobs</a></p> <p>Can someone explain how this is possible financially?</p>
6082
3037
2011-01-15T20:20:12.290
2023-09-07T01:53:23.120
How does Ubuntu make money?
[ "canonical" ]
7
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T19:57:20.113", "id": "23444", "postId": "21730", "score": "9", "text": "Possible Duplicates: [Ubuntu Finances and future of project](http://askubuntu.com/questions/3837/ubuntu-finances-and-future-of-project), [Who pays for Ubuntu?](http://askubuntu.com/questions/448...
{ "accepted": true, "body": "<p>Firstly a lot of people work on Ubuntu in their free time (many of them programming, but also those of here for instance answering people's questions). Also some people <a href=\"https://ubuntu.com/community/contribute/donation\" rel=\"nofollow noreferrer\">donate to Ubuntu</a>.</p>\n<p>However there is more to the story. <a href=\"http://en.wikipedia.org/wiki/Canonical_Ltd\" rel=\"nofollow noreferrer\">Canonical Ltd</a>. is a private company that created and continues to pay for Ubuntu. We know Canonical hadn't been making a profit, but Canonical was initially founded by multi-millionaire <a href=\"http://en.wikipedia.org/wiki/Mark_Shuttleworth\" rel=\"nofollow noreferrer\">Mark Shuttleworth</a> which meant it didn't have to focus on making money right away.</p>\n<p>However Canonical is now looking towards to making Ubuntu profitable. (After all, they have 600+ employees to pay every month!) There are <a href=\"http://www.nytimes.com/2009/01/11/business/11ubuntu.html?pagewanted=3&amp;_r=2\" rel=\"nofollow noreferrer\">some indications</a> this has been successful. Their key revenue streams offer services around Ubuntu:</p>\n<ul>\n<li>Support services (mostly to business) alongside which they sell <a href=\"https://landscape.canonical.com/\" rel=\"nofollow noreferrer\">Landscape</a></li>\n<li>Contracting services to businesses (for instance working with OEMs such as Dell, or <a href=\"http://blog.canonical.com/?p=294\" rel=\"nofollow noreferrer\">helping Google with Chrome OS</a>). As Ubuntu makes its way onto mobile phones and TVs then this will grow.</li>\n<li>Ubuntu Software Centre's paid section (Canonical takes a cut of purchases)</li>\n<li><s>The <a href=\"http://shop.canonical.com/\" rel=\"nofollow noreferrer\">Canonical Store</a> (selling physical Ubuntu branded items)</s> - discontinued</li>\n<li>Closed-source projects wishing to use Launchpad.net <a href=\"https://answers.edge.launchpad.net/launchpad/+faq/208\" rel=\"nofollow noreferrer\">can purchase a license</a></li>\n<li><s><a href=\"https://one.ubuntu.com/\" rel=\"nofollow noreferrer\">Ubuntu One</a> (online file storage and synchronization service) and Music Store (selling music from within Ubuntu)</s> - discontinued.</li>\n<li>Amazon referrals. When you search the Ubuntu Dash, you may see Amazon products (unless you have turned it off). Ubuntu takes a cut of these.<sup><a href=\"https://arstechnica.com/information-technology/2012/09/ubuntu-bakes-amazon-search-results-into-os-to-raise-cash/\" rel=\"nofollow noreferrer\">[ref]</a></sup></li>\n</ul>\n<p>All of these are areas that Canonical hopes will grow.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-01-16T06:10:26.773", "id": "23525", "postId": "21734", "score": "4", "text": "I saw a report a year or two ago that Canonical support service revenues covered the cost of running Canonical.", "userDisplayName": null, "userId": "2176" }, { "creationDate": "2011-01-16T07:42:21.987", "id": "23527", "postId": "21734", "score": "2", "text": "@Bill Had not seen that before myself. I think [this article](http://www.nytimes.com/2009/01/11/business/11ubuntu.html?pagewanted=3&_r=2) (from two years ago) is probably what you're referring to.", "userDisplayName": null, "userId": "866" }, { "creationDate": "2011-01-16T08:00:18.003", "id": "23529", "postId": "21734", "score": "1", "text": "Not that article but one quite similar. I believe the article stated they had reached break even. The conclusion was that Ubuntu had reached a self sustaining level of income and was no longer dependent on Mark. With all the new services I expect some costs have gone up, and I hope revenue has followed.", "userDisplayName": null, "userId": "2176" }, { "creationDate": "2014-09-25T20:13:50.037", "id": "721044", "postId": "21734", "score": "2", "text": "I think this answer needs to be updated to include the Amazon referrals. Doesn't Canonical make a little bit on those? (as if anyone leaves that feature on anyway).", "userDisplayName": null, "userId": "44179" }, { "creationDate": "2015-04-11T16:52:59.330", "id": "852134", "postId": "21734", "score": "0", "text": "Canonical is still not cash-flow positive and has actually never reported a year of earnings without more losses :(", "userDisplayName": null, "userId": "2770" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-01-15T19:54:10.777", "id": "21734", "lastActivityDate": "2023-09-07T01:53:23.120", "lastEditDate": "2023-09-07T01:53:23.120", "lastEditorDisplayName": null, "lastEditorUserId": "124466", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "21730", "postTypeId": "2", "score": "102" }
[ { "accepted": null, "body": "<p>They sell support contracts, mainly to corporate customers. You can also buy t-shirts and such to help support them.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T19:...
null
null
null
null
null
21733
1
null
2011-01-15T19:47:56.840
1
2889
<p>I'm trying to set permissions for folders on USB drives that I've mounted with Nautilus, but when I change the permission, it just changes right back again. No error message or any other explanation. I've tried "Open as administrator" and it still doesn't work. How do I set the permissions so that they can be accessed as shared folders on the network?</p>
5032
null
null
2011-01-15T20:03:05.440
Can't set permissions for USB drives?
[ "mount", "permissions", "usb-drive" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The problem is that your USB stick is probably using FAT(16/32) or NTFS as file system which doesn't support permissions. That's why they change back after edit in nautilus. If you want to use permissions with USB sticks/drives, you'll need to format it to any EXT formats (us...
null
null
null
null
null
21741
1
21746
2011-01-15T20:40:03.527
12
9248
<p>A friend just complained to me about Ubuntu being slow. </p> <p>Although I've noticed a certain lack of snappiness with Linux vs Windows in the past, I really can't say I've had much to grumble about with the recent distributions of Ubuntu. That said, his objections seem much worse than the ones I used to have and I know that his current setup is significantly more powerful than my laptop. </p> <p>And then it turned out he is running Ubuntu off an external HDD hooked up via USB2.0. The HD enclosure is USB3.0 but apparently he can't manage to get it to boot on USB3.0 so he switched to one of the USB2.0 ports or whatever and that works, albeit not very well.</p> <p>Now I would expect USB to add some overhead to communication between the computer and the HDD; SATA is after all designed to get the maximum out of a hard drive, whereas USB is, well, universal. </p> <p>What are your expreriences with booting off external HDDs?</p> <p>Edit: Does anybody know just how much of a slowdown can be expected?</p>
8977
4776
2011-01-16T14:39:20.040
2011-01-16T14:39:20.040
Performance cost of running Ubuntu from external hard drive
[ "performance", "external-hdd" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T20:48:22.883", "id": "23459", "postId": "21741", "score": "0", "text": "booting anything off an external will always be slow and not so snappy. This questions is a bit, um... pointless?", "userDisplayName": null, "userId": "1992" }, { "creationDate":...
{ "accepted": true, "body": "<p>USB 2 is rubbish. There. I said it.</p>\n\n<p>It is fairly universal and it's allowed us to get a lot of extra hardware attached to our computers but for transfer speed, it's just no good. Around 20-30MB/s would be typical in my experience.</p>\n\n<p>Might not sound terrible but an average internal drive manages 70-100MB/s and a great SATA drive can touch 300MB/s. There are of course even better products but they're prohibitively expensive.</p>\n\n<ul>\n<li><p>USB 3 is far better but although we've had drivers in Linux longer than any other platform, they're still pretty buggy in my experience. You might ask him to try upgrading the kernel to 2.6.37 and then trying USB3. The last two kernels since Maverick's 2.6.35 has had a few USB3 changes. This similarly might not fix anything - Grub could equally be the issue.</p></li>\n<li><p>eSATA would be the ideal for an external drive. I don't know what your friend's computer has in the way of ports (or what his external disk provides), but eSATA will wipe the floor with USB 2 (probably even USB3 in real-world tests). If he has it, use it. If he has a spare PCI-E slot, perhaps a little eSATA card might be a better bet (they're quite cheap).</p>\n\n<p>Seek time will probably be the biggest improvement over Firewire (and USB3). It doesn't matter too much for storing big media but when you're buzzing between lots of small files (like the Linux boot), it makes a huge difference.</p></li>\n<li><p>Firewire might be an option if he has that option on the drive and computer... Firewire is often criticised for being slower than USB but spec for spec, it's actually a lot faster in practice for data transfer. Seek speeds are similar.</p></li>\n<li><p>If he has a fast network adapter and some spare cash, a network-attached-storage device might be a nice option. You can get two-drive units quite cheap that can share their files over NFS. If you have gigabit connections at each end this can translate to a fairly steady 100+MB/s</p></li>\n<li><p>Finally, if nothing else seems like an option... Ask him why he's being such a jessy and get him to repartition. You can resize the Windows partition non-destructively (ie it stays there all warm and happy, just a bit smaller).</p>\n\n<p>Just set aside ~10gigs for the core Ubuntu install and a base profile and then just symlink big media in from the external drive. Boot time and responsiveness will improve huge amounts.</p></li>\n</ul>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-15T21:27:17.137", "id": "23467", "postId": "21746", "score": "1", "text": "Excellent answer! Thanks, this is exactly what I was looking for.", "userDisplayName": null, "userId": "8977" }, { "creationDate": "2011-01-16T02:54:45.047", "id": "23512", "postId": "21746", "score": "0", "text": "I run Ubuntu on a clunky old Intel iMac, and run another Ubuntu guest inside it via VirtualBox. The guest's filesystem is on an external 750 GB drive hooked up via FireWire 400. I use the guest for source control (Perforce) and bug tracking (Redmine), and it's certainly fast enough at Perforce to saturate gigabit Ethernet, and runs Redmine fast enough that over a LAN, things appear instantly to human eyes.", "userDisplayName": null, "userId": "5240" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T21:20:14.490", "id": "21746", "lastActivityDate": "2011-01-15T21:20:14.490", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21741", "postTypeId": "2", "score": "17" }
[ { "accepted": null, "body": "<p>USB's speed is just one thing. The drive's speed (read,write and rotation) will count too, if you can use a SDD. If the drive and pc supports it, you should use eSATA as it's faster than us2 (but slower than usb3).</p>\n", "commentCount": "0", "comments": [], "com...
null
null
null
null
null
21742
1
null
2011-01-15T20:54:01.647
4
1922
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4408/what-should-i-do-when-ubuntu-freezes">What should I do when Ubuntu freezes?</a> </p> </blockquote> <p>I have a problem with my Ubuntu 10.10 system which regularly freezes and can then only be switched off via the mains switch. When I try to re-start the system I need to try repeatedly before it will log in.</p> <p>How can I trace the reason for this and correct it?</p>
8230
-1
2017-04-13T12:24:27.937
2011-04-16T10:40:29.523
How to troubleshoot system freezing?
[ "10.10" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T20:58:39.917", "id": "23463", "postId": "21742", "score": "2", "text": "See also [What should I do when Ubuntu freezes?](http://askubuntu.com/questions/4408/what-should-i-do-when-ubuntu-freezes) - though that's not a duplicate because it doesn't tell you how to trou...
null
[ { "accepted": null, "body": "<p>Open the log viewer from system->administration and look* for dmesg (reports kernel, network, boot and some overall info;eg will show if new HW is added) and xorg.log (the log for the graphic [server]). You'll then need the search for errors, most likely a graphic card/driver...
null
null
2011-06-05T20:41:38.920
null
null
21747
1
21799
2011-01-15T21:43:26.833
3
387
<p>When I minimize programs to gnome-panel, I now have white vertical lines separating them, this never used to happen.</p> <p><img src="https://i.stack.imgur.com/WJoCL.jpg" alt="Close up"></p> <p><img src="https://i.stack.imgur.com/3Njc4.jpg" alt="Embed image"></p> <p>I have tried deleting my .gconf, .metacity, .gnome2 folders, re-installing light themes, nothing seems to work.</p> <p>Any Ideas?</p>
8742
866
2011-01-15T22:04:10.520
2011-01-16T10:35:11.547
Gnome-panel white vertical lines between minimized apps
[ "gnome-panel", "themes" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T05:35:05.303", "id": "23523", "postId": "21747", "score": "0", "text": "Try refreshing your panel by entering this command in your terminal `killall gnome-panel`", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-05-04T18:18:33.70...
{ "accepted": true, "body": "<p>This normally happens if compiz has stopped working or if you are using metacity its composting is turned off.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-31T01:11:42.083", "id": "26086", "postId": "21799", "score": "0", "text": "Thank you for the answer, I ended up switching to docky for a slightly cleaner desktop.", "userDisplayName": null, "userId": "8742" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T10:35:11.547", "id": "21799", "lastActivityDate": "2011-01-16T10:35:11.547", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5499", "parentId": "21747", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>This normally happens if compiz has stopped working or if you are using metacity its composting is turned off.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-31T01:11:42.083", "id": "26086", "postId": "21799", ...
null
null
null
null
null
21749
1
23260
2011-01-15T22:10:41.787
5
1404
<p>The computer freezes when i shutdown. I have tried the ACPI options <code>acpi=off</code> and <code>acpi=force</code> but they don't work.</p> <p>The computer is a MSI U130. The only way to shutdown is by long pressing the power button. It is running Ubuntu Netbook Edition 10.10.</p> <p>Wifi: RT3090 Wireless 802.11n 1T/1R PCIe</p>
6499
26246
2016-12-30T17:43:39.233
2016-12-30T17:43:39.233
MSI U130 freezes on shutdown
[ "10.10", "shutdown", "freeze", "acpi", "ralink" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Finally fixed it it was a problem with the wifi driver all I had to do is this:</p>\n\n<p>Open <code>/etc/modprobe.d/blacklist.conf</code> (as root) and add at the end: </p>\n\n<pre><code>blacklist rt2800pci\n</code></pre>\n\n<p>The problem has that there was a wrong driver loaded.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-28T18:58:37.960", "id": "25746", "postId": "23260", "score": "0", "text": "How did you arrive at this conclusion??", "userDisplayName": null, "userId": "9792" }, { "creationDate": "2011-02-16T11:01:35.777", "id": "29273", "postId": "23260", "score": "0", "text": "I'd like to know too because I am having a similar problem.", "userDisplayName": null, "userId": "5786" }, { "creationDate": "2016-12-30T17:53:22.220", "id": "1339444", "postId": "23260", "score": "0", "text": "After disabling that driver, so which driver are you using?", "userDisplayName": null, "userId": "26246" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-25T23:09:10.553", "id": "23260", "lastActivityDate": "2011-03-31T02:47:56.310", "lastEditDate": "2011-03-31T02:47:56.310", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "6499", "parentId": "21749", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Finally fixed it it was a problem with the wifi driver all I had to do is this:</p>\n\n<p>Open <code>/etc/modprobe.d/blacklist.conf</code> (as root) and add at the end: </p>\n\n<pre><code>blacklist rt2800pci\n</code></pre>\n\n<p>The problem has that there was a wrong driver l...
null
null
null
null
null
21751
1
null
2011-01-15T22:18:58.803
1
6537
<p>I bought this 2tb Segate GoFlex this last Black Friday and since then every 15 minutes or so the drive spins down, and then a little while later completely dismounts. Very annoying. From what I understand you could turn this off using the including Windows and Mac only software. This function and what controls it isn't proprietary, right? There has to be something that'll let me set it in Ubuntu... Anyone have any suggestions?</p> <p>Also, I formatted it to EXT4. Hope I didn't screw myself up. :/</p>
593
3037
2011-01-16T12:23:10.797
2012-01-23T20:41:03.877
How to turn off power management for external hard drive (Seagate GoFlex)?
[ "mount", "power-management", "external-hdd" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You can dissable the powermanagement of your device with the following command (no powermanagement = no spindown - no standby for the harddrive)</p>\n\n<pre><code>hdparm -B 255 /dev/sdX\n</code></pre>\n\n<p><strong>replace sdX with the name of your harddrive</strong></p>\n\n<...
null
null
null
null
null
21755
1
null
2011-01-15T23:05:08.557
13
8030
<p>In Unity 2D there isn't any multiple workspaces. How can add more than that 1?</p>
null
114
2011-02-11T19:55:01.547
2017-03-01T23:27:03.787
How to add multiple workspaces in Unity 2D?
[ "workspaces", "unity-2d" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><strong>Update</strong>: Unity 2D now has workspaces, see this <a href=\"http://www.omgubuntu.co.uk/2011/02/workspaces-come-to-unity-2d/\" rel=\"nofollow noreferrer\">Omg!Ubuntu!</a> post for more info. </p>\n\n<p><a href=\"https://askubuntu.com/questions/95057/only-1-worksp...
null
null
null
null
energichen
21756
1
null
2011-01-15T23:08:27.493
1
2230
<p>I have an Acer Aspire One D250 with Ubuntu Netbook Edition 10.10. The internal microphone is not working. What can I do to fix this?</p> <p>Audio Device: N10/ICH 7 Family High Definition Audio Controller</p>
6499
3037
2011-01-15T23:24:18.353
2011-02-25T05:03:08.850
Internal microphone does not work
[ "10.10", "ubuntu-netbook", "pulseaudio", "microphone", "aspire-one" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>This is <a href=\"https://bugs.launchpad.net/ubuntu/+source/linux/+bug/412862\" rel=\"nofollow\">a known bug</a>. You can follow the suggestion in comment #3:</p>\n\n<ol>\n<li><p>Add the mentioned PPA to your system (using a terminal):</p>\n\n<p><code>sudo apt-add-repository ...
null
null
null
null
null
21759
1
21761
2011-01-15T11:47:52.093
14
557
<p>the organization I work at wants to create a custom Ubuntu LiveCD, the customizations are: Pre-installed programs, plugins, some device drivers, and aesthetics such as icons and backgrounds, as well as changing Firefox's homepage and removing unneeded packages.</p> <p>Not big changes, obviously, and we wish to distribute this custom image for clients to use as a bootable CD or USB stick in order to have a quick environment where all our tools are available instantly.</p> <p>What are the licensing and legal consequences of this? What if some of the programs or plugins that are to be pre-packaged are not GPL'd? I should finally note that we are not changing any code in the kernel or any other distro component.</p> <p>Thank you for your time!</p>
9360
866
2011-01-16T08:03:40.067
2011-12-17T12:31:03.173
What are the legal consequences of customizing the LiveCD?
[ "live-cd", "license", "legal" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-15T16:02:25.333", "id": "23489", "postId": "21759", "score": "0", "text": "By the way, there is an [Ubuntu Stack Exchange site](http://askubuntu.com/), where several members of the Ubuntu project hang out. If you'd like your question moved there, flag a moderator, [do ...
{ "accepted": true, "body": "<p>Start by reading the <a href=\"https://wiki.ubuntu.com/DerivativeDistroHowto\" rel=\"nofollow\">Derivative Distro Howto</a>.</p>\n\n<p>You can certainly make a distribution based on Ubuntu, and as far as I know there is no specific restriction on the live CD, so you can make derivative works based on it.</p>\n\n<p>The code isn't be a problem: as far as I know it's all freely redistribuable software, Ubuntu doesn't have any specific rights to distribute that you don't also have. But the branding — trademarks and artwork — might be. The obvious thing you should check is what you may do with the Ubuntu artwork, and how you're allowed to use the name (it's <a href=\"http://www.ubuntu.com/aboutus/trademarkpolicy\" rel=\"nofollow\">trademarked</a>).</p>\n\n<p>A typical example of artwork and trademark-related limitation is the <a href=\"http://en.wikipedia.org/wiki/Iceweasel\" rel=\"nofollow\">Iceweasel saga</a>. The Mozilla foundation wants only “acceptable” derivatives of Firefox to have the Firefox brand, so even though the software is <a href=\"http://en.wikipedia.org/wiki/Free_software\" rel=\"nofollow\">free software</a> (as in free speech), the branding is not. Although the Mozilla foundation was prepared to trust Debian to make only acceptable changes, such as security fixes, they were not willing to extend that trust to others. But the <a href=\"http://www.debian.org/social_contract#guidelines\" rel=\"nofollow\">Debian Free Software Guidelines</a> specify that the “license must not be specific to Debian”, so that people in your position know that they can make derivatives. Since no acceptable compromise was found, Debian does not distribute “Firefox”, it distributes “Iceweasel” with the same code and different branding.</p>\n\n<p>Ubuntu is less strict on that point, so if you want to make a derivative, you do have to check whether you may retain the branding on any component you change (starting with the distribution as a whole).</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-15T19:57:54.413", "id": "23497", "postId": "21761", "score": "0", "text": "IANAL and definitly not american one (I've never been in America so far not mentioning US) but isn't it required by american law that trademark holder activly defend the right in court (failing to do so they would lost the trademark). Canonical is based in Europe where it is not required and the trademarks may be covered by international law (as I said - I am not a lawer).", "userDisplayName": null, "userId": "7307" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-15T16:00:29.687", "id": "21761", "lastActivityDate": "2011-01-15T23:51:47.767", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "Gilles", "ownerUserId": "1059", "parentId": "21759", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>You might want to look over the <a href=\"http://www.mozilla.org/foundation/trademarks/policy.html\" rel=\"nofollow\">Mozilla Trademark Policy</a> If I recall it has some interesting rules about what you may do if you choose to call the product <strong>Mozilla Firefox</strong...
null
null
null
null
Voulnet
21766
1
null
2011-01-16T01:26:40.567
3
6149
<p>How can you get google sketchup to work on ubuntu?</p>
5068
866
2011-01-16T08:03:04.030
2014-08-17T01:50:26.467
How can you get Google Sketchup running?
[ "10.10" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T02:04:52.920", "id": "23508", "postId": "21766", "score": "2", "text": "if you don't give us a detailed error message we can provide good solutions (you may check http://wiki.winehq.org/GoogleSketchup)", "userDisplayName": null, "userId": "1990" } ]
null
[ { "accepted": null, "body": "<p>Google <a href=\"http://sketchup.google.com/support/bin/answer.py?hl=en&amp;answer=36208\" rel=\"nofollow\">Sketchup</a> is not available natively for Ubuntu, you will have to run it using Wine.\nThe following links may help you to get things going;</p>\n\n<p><a href=\"http:/...
null
null
null
null
null
21768
1
21772
2011-01-16T02:04:58.580
27
39362
<p>I have a bunch of pictures I'd like to make into a basic slideshow, as a video (e.g. mpeg/avi). What software is available to do this?</p> <p>I started using PiTiVi based on recommendation in another question, which seemed nice at first. However, it's very unstable - just crashed my whole system! Regardless, it won't let me do anything over 10 seconds because the timeline keeps jumping back to the start any time I try and move/resize a clip.</p> <p>All I need is to fade between some images. Anything out there?</p>
1507
814
2011-02-26T15:47:27.707
2018-02-21T00:01:59.287
Software to create a video slideshow?
[ "10.10", "software-recommendation", "video", "video-editor" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can try <a href=\"http://packages.ubuntu.com/imagination\" rel=\"noreferrer\">imagination</a> from the repository.</p>\n\n<pre><code>sudo apt-get install imagination\n</code></pre>\n\n<p>Imagination is a lightweight and user-friendly DVD slide show maker with\na clean interface and few dependencies. It only requires the ffmpeg encoder\nto produce a movie to be burned with another application.</p>\n\n<p>It currently features over 50 transition effects. Exporting the slideshow in FLV format is supported as well.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-17T13:27:01.963", "id": "23713", "postId": "21772", "score": "0", "text": "Gave it a try. It seems to have every wipe transition under the sun, except for the ubiquitous star-wipe ;) Nonetheless, it does exactly what I want - thanks!", "userDisplayName": null, "userId": "1507" }, { "creationDate": "2014-10-27T16:26:11.307", "id": "742528", "postId": "21772", "score": "2", "text": "It's a pity that this program does not support HD resolutions out of the box. It seems to work OK overall except for this detail.", "userDisplayName": null, "userId": "83068" }, { "creationDate": "2018-02-20T20:41:53.650", "id": "1632493", "postId": "21772", "score": "0", "text": "I couldn't get this to stop squishing my images to weird aspect ratios (maybe it's better for DVD's)", "userDisplayName": null, "userId": "25639" }, { "creationDate": "2020-11-21T07:14:55.560", "id": "2198036", "postId": "21772", "score": "0", "text": "To stop squashing the pictures.. do not choose rescale in properties (maybe reload pics too) and choose new tv format instead of pal. Everything else crashed for me.. this works v20.04 .. also chose the format not vob. They need to update the default settings for modern times.", "userDisplayName": null, "userId": "485280" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-16T02:15:18.750", "id": "21772", "lastActivityDate": "2017-02-23T09:25:52.163", "lastEditDate": "2017-02-23T09:25:52.163", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "4923", "parentId": "21768", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>You can try <a href=\"http://packages.ubuntu.com/imagination\" rel=\"noreferrer\">imagination</a> from the repository.</p>\n\n<pre><code>sudo apt-get install imagination\n</code></pre>\n\n<p>Imagination is a lightweight and user-friendly DVD slide show maker with\na clean int...
null
null
null
null
null
21776
1
21777
2011-01-16T03:36:25.727
2
3827
<p>CVS is being used in my workplace and I've no much knowledge of cvs other than installing and creating cvs users and I heard developers share their project with eclipse or something like that. I'm asked to check for best repositories which offers advanced features giving the hints SVN and GIT. If any one using these repositories please short list their features and if possible with links of good installation guides and a bit information of what the eclipse to do with these repositories. </p> <p>Thank you!</p>
3215
3215
2011-01-16T04:34:40.807
2011-01-16T09:42:40.707
CVS vs SVN vs GIT vs anyother
[ "repository", "git", "svn" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T03:46:10.560", "id": "23515", "postId": "21776", "score": "1", "text": "this should be on super user or another stack exchange site since it's not related to ubuntu.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-16T05:09:5...
{ "accepted": true, "body": "<p>You need to consider what kind of repository system your team needs to function effectivly. The main difference is between:</p>\n\n<ul>\n<li><strong>Centralised Repositories</strong> - CVS, SVN, Simple File Server, etc</li>\n<li><strong>Decentralised Repositories</strong> - Git, Mercurial, Bzr</li>\n</ul>\n\n<p>I make this distinction now, because if you move from cvs to git, you will need to read up on what it means to have decentralised repositories. The new kinds of work-flows you need to develop will make development easier and more efficient for bigger teams, but the change in workflows will make your first attempts fail as you make assumptions about how it's supposed to work.</p>\n\n<p>Here in the Ubuntu world we use <a href=\"http://bazaar.canonical.com/en/\" rel=\"nofollow\">Bazaar (bzr)</a> which is a very good decentralised system written in python and based on mercurial. It's fairly easy to set up a server and the commands and extensions available are well developed. Eclipse has a very good bzr plugin. Launchpad and GNU's Savana use bzr by default and it's my personal first choice.</p>\n\n<p><a href=\"http://git-scm.com/\" rel=\"nofollow\">Git</a> is also another fantastic repository system. Developed by Torvalds himself after his disastrous time with a proprietary system, GIT is lightning fast and only slightly harder to use than bzr. It's used by github, gnome and several other projects as their main repository system after using svn.</p>\n\n<p>Both are available in the Ubuntu repositories, as well as a ton of extensions.</p>\n\n<p>I wouldn't use svn or any other centralised repository unless you have a very small team and know what you're doing.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-16T04:29:00.237", "id": "23520", "postId": "21777", "score": "0", "text": "Good information!. I've to read about what Centralised & Decentralised reposotories.", "userDisplayName": null, "userId": "3215" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T03:46:49.047", "id": "21777", "lastActivityDate": "2011-01-16T09:42:40.707", "lastEditDate": "2011-01-16T09:42:40.707", "lastEditorDisplayName": null, "lastEditorUserId": "132", "ownerDisplayName": null, "ownerUserId": "132", "parentId": "21776", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>You need to consider what kind of repository system your team needs to function effectivly. The main difference is between:</p>\n\n<ul>\n<li><strong>Centralised Repositories</strong> - CVS, SVN, Simple File Server, etc</li>\n<li><strong>Decentralised Repositories</strong> - G...
null
null
2011-01-16T09:48:31.540
null
null
21781
1
null
2011-01-16T04:28:17.077
8
1721
<p>Currently, my window decorations are in the top left as per the default Ubuntu, but I have reordered them to "Minimize, Maximize, Close" However on Unity Desktop, when I maximize my window, and the Unity Panel takes over window decorations, It switches back to the default "Close, Minimize, Maximize" I tried poking around gconf and couldn't find anything, anybody have a tweak?</p>
496
null
null
2011-05-06T21:18:25.177
How do you change Window Control Position in the Unity Panel?
[ "unity", "11.04", "window-buttons" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-27T14:44:28.597", "id": "25449", "postId": "21781", "score": "0", "text": "Bug Reported: https://bugs.launchpad.net/unity/+bug/708653", "userDisplayName": null, "userId": "496" } ]
null
[ { "accepted": null, "body": "<p>I don't think you can do that. Ayatana indicators have been designed with consistency in mind and one of the elements of a consistent UI is permanent position of indicators. I don't think you can reorder the elements of the unity panel at all. You can remove some if you like ...
null
null
null
null
null
21784
1
21794
2011-01-16T05:21:26.020
4
1253
<p>How do I go about changing the white background on nautilus-elementary's side pane?</p> <p>I want to change it specifically to match the color of the toolbar and status-bar.</p> <p><img src="https://i.stack.imgur.com/lWEVV.png" alt=""></p>
6465
1067
2011-01-16T18:08:32.693
2011-02-09T03:07:39.143
How do I change the background of the side pane?
[ "nautilus-elementary", "themes" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Add the following to your <code>~/.gtkrc-2.0</code> file (create one if it doesn't exist):</p>\n\n<pre><code>style \"nautilus-sidepane\"\n{\n GtkTreeView::even_row_color = \"#F2F1F0\"\n}\n\nwidget_class \"*NautilusSidePane*\" style \"nautilus-sidepane\"\n</code></pre>\n\n<p>Then log out and back in (or restart Nautilus with <code>nautilus -q</code>, or change to another theme and back to the old one).</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-01-16T22:40:32.363", "id": "23632", "postId": "21794", "score": "0", "text": "Do I have to do something (other than write this to `~/.gtkrc-2.0`) to get it displaying?", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-01-16T22:43:27.127", "id": "23634", "postId": "21794", "score": "1", "text": "@Oli: Updated the answer.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T23:43:25.287", "id": "23642", "postId": "21794", "score": "0", "text": "By the way, I submitted your answer to OMG!ubuntu.", "userDisplayName": null, "userId": "6465" }, { "creationDate": "2011-02-09T03:22:24.173", "id": "27779", "postId": "21794", "score": "0", "text": "is there a way to edit this file to also change the font color in the sidebar? i am using elementary theme, and the font color is grey, i would like to change it to black.", "userDisplayName": "user10488", "userId": null }, { "creationDate": "2011-01-22T21:07:24.993", "id": "31215", "postId": "21794", "score": "0", "text": "Hi, I wish i could make that work.\nI did exactly what adviced, but even after reboot it looks the same:\n[screenshot](http://img130.imageshack.us/img130/6506/bildschirmfotooo.png)\n\nWhat can went wrong? Maybe this file has to be placed in a different folder than /home ?\nAny Ideas?", "userDisplayName": null, "userId": "9410" }, { "creationDate": "2011-01-23T21:54:33.960", "id": "31216", "postId": "21794", "score": "0", "text": "Nothing went wrong - you just have to put in the color you want instead of #F2F1F0 (which is the side pane color in your screenshot).", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T09:11:03.513", "id": "21794", "lastActivityDate": "2011-01-16T22:42:33.043", "lastEditDate": "2011-01-16T22:42:33.043", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21784", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Add the following to your <code>~/.gtkrc-2.0</code> file (create one if it doesn't exist):</p>\n\n<pre><code>style \"nautilus-sidepane\"\n{\n GtkTreeView::even_row_color = \"#F2F1F0\"\n}\n\nwidget_class \"*NautilusSidePane*\" style \"nautilus-sidepane\"\n</code></pre>\n\...
null
null
null
null
null
21787
1
null
2011-01-16T07:50:00.467
8
795
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/134/how-do-i-create-a-desktop-wallpaper-slideshow">How do I create a desktop wallpaper slideshow?</a><br> <a href="https://askubuntu.com/questions/174460/how-do-i-set-my-wallpaper-to-auto-change-periodically">How do I set my wallpaper to auto-change periodically?</a> </p> </blockquote> <p>Can I set up desktop background picture to be set a random file from a given directory every given period of time?</p>
2390
-1
2017-04-13T12:24:49.530
2012-08-22T08:51:46.967
How to get desktop background picture changed periodically?
[ "desktop-background" ]
0
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T07:55:28.437", "id": "23528", "postId": "21787", "score": "0", "text": "Related: [How do I create a desktop wallpaper slideshow?](http://askubuntu.com/questions/134/how-do-i-create-a-desktop-wallpaper-slideshow) - however this question differs in requesting pictures...
null
[]
null
0
2012-08-22T08:52:07.153
null
null
21788
1
null
2011-01-16T08:16:04.127
3
368
<p>I want to only sync files with a certain prefix in a folder. Is there some way I can get Ubuntu one to only sync these files or ignore other files?</p>
null
null
null
2011-01-16T18:18:27.140
Ubuntu One sync certain filetype/prefix
[ "ubuntu-one", "file-format" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>At the moment, there's no good way to exclude certain files in certain directories.\nThat said, you can ignore certain file types across the board by specifying regexes in: <code>/etc/xdg/ubuntuone/syncdaemon.conf</code></p>\n\n<p>See the ignore.default part of it.</p>\n", ...
null
null
null
null
Tron Paul
21790
1
21791
2011-01-16T08:32:56.073
4
530
<p>Since Banshee is going to be replacing Rhythmbox in 11.04, is there a PPA for Rhythmbox so I can still keep up to date with the newest stable builds?</p>
2458
null
null
2011-01-16T08:40:07.160
Keep up to date with Rhythmbox?
[ "ppa", "rhythmbox" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This won't be necessary because although Rhythmbox will no longer be default, the latest stable version will be included in the Software Centre for easily installation and updating.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T08:40:07.160", "id": "21791", "lastActivityDate": "2011-01-16T08:40:07.160", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "21790", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>This won't be necessary because although Rhythmbox will no longer be default, the latest stable version will be included in the Software Centre for easily installation and updating.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "cont...
null
null
null
null
null
21800
1
23886
2011-01-16T10:42:35.330
2
3163
<p>I'm running Ubuntu 9.10 desktop edition. Suddenly today /home became corrupted and I was prompted to run <code>fsck</code> manually. I ran <code>fsck -y /home</code> and rebooted the system. The system booted but I got no GUI interface (GNOME session) but a black screen with a user prompt instead. Any tricks here to start my system normally? Any help is greatly appreciated.</p> <p><strong>EDIT:1</strong></p> <p>The error were similar to the the following(may be with some mistakes as I had to type it manually):</p> <p>machine1 login: root</p> <p>password:</p> <p>at login Sun Jan 16 15:30:46 IST 2011 on tty1</p> <p>EXT3-fs error (devie sda1): ext3_lookup :deleted inode referenced</p> <p>aborting journal on device sda1</p> <p>Remounting filesystem read-only</p> <pre><code>root@machine1:~# startx ktemp: failed to create file via template `/tmp/serverauth.xxxxxxxxxxx: Read-only file /usr/bin/startx: line 157: cannot create temp file for here-document: Read-only file xauth: error in locking authority file /root/.Xauthority /usr/bin/startx: line 173: cannnot create temp file for here-document: Read-only file xauth: error in locking authority file /root/.Xauthority /usr/bin/startx: line 173: cannnot create temp file for here-document: Read-only file X: cannot stat /tmp/.x11-unix (No such file or directory), aborting giving up. xinit: No such file or directory (errno 2): unable to connect to xserver xinit: No such process (errno 3): Server error xauth: error in locking authority file /root/.Xauthority </code></pre>
3215
5691
2011-01-16T15:25:58.807
2011-01-29T15:45:06.927
GNOME session not starting after filesystem corruption
[ "gnome", "xorg", "9.10" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T10:47:38.103", "id": "23536", "postId": "21800", "score": "1", "text": "In the prompt,type the following and see if it helps you `sudo dpkg-reconfigure xserver-xorg`", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-01-16T11:09:...
{ "accepted": true, "body": "<p>Just running <code>fsck -y /</code>, or <code>fsck -y /dev/sda1</code> fixed the issue and system started gnome as usual. The best way of running fsck would be booting the system from live cd or usb stick. But before running fsck, backing up necessary data is also to be considered mandatory.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-04-05T21:52:51.317", "id": "847097", "postId": "23886", "score": "0", "text": "wow, now my linux mint is constantly rebooting (after `fsck -y /`). Any ideas how to fix that?", "userDisplayName": null, "userId": "169184" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-29T15:45:06.927", "id": "23886", "lastActivityDate": "2011-01-29T15:45:06.927", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3215", "parentId": "21800", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>Log in and try <code>startx</code></p>\n\n<p>Is your /home on a separate partition?</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T13:45:43.097", "id": "23554", "postId": "21802", "score": "0", "t...
null
null
null
null
null
21801
1
21806
2011-01-16T10:56:11.490
13
28895
<p>I have a running Ubuntu Server 10.04.1. When I tried to login to the server via ssh, I could not. Instead, I got <code>connection refused</code> error. I tried to ping the machine and I got reply! So, the clear reason is that SSH daemon is stopped.</p> <p>After reboot, I was able to login to my server via ssh. After some time, I looked at my logs <code>/var/log/syslog</code> and found the following records:</p> <pre><code>Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2465) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2469) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2473) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2477) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2481) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2485) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2489) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2493) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2497) terminated with status 255 Jan 16 10:57:09 myserver init: ssh main process ended, respawning Jan 16 10:57:09 myserver init: ssh main process (2501) terminated with status 255 Jan 16 10:57:09 myserver init: ssh respawning too fast, stopped </code></pre> <p>I searched for a similar problem/solution. Some people said that this is caused by the SSH daemon trying to start before networking and they suggest to change <code>ListenAddress</code> in <code>/etc/ssh/sshd_config</code> to be <code>0.0.0.0</code>. I think this is not the cause in my case, because my problem occurs after system is up and running.</p> <p>Any idea what is causing this? This is Ubuntu Server and it should be running and accessed remotely using SSH.</p> <p><strong>UPDATE:</strong></p> <p>Here is the log snippet I found in <code>/var/log/auth.log</code>.</p> <pre><code>Jan 16 10:56:38 myserver sudo: user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/vim /etc/ssh/sshd_config Jan 16 10:57:09 myserver sudo: user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/etc/init.d/ssh reload Jan 16 10:57:09 myserver sshd[1465]: Received SIGHUP; restarting. Jan 16 10:57:09 myserver sshd[2461]: Server listening on 0.0.0.0 port 22. Jan 16 10:57:09 myserver sshd[2465]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2465]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2469]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2469]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2473]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2473]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2477]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2477]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2481]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2481]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2485]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2485]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2489]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2489]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2493]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2493]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2497]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2497]: fatal: Cannot bind any address. Jan 16 10:57:09 myserver sshd[2501]: error: Bind to port 22 on 0.0.0.0 failed: Address already in use. Jan 16 10:57:09 myserver sshd[2501]: fatal: Cannot bind any address. </code></pre> <p>It seems that this error started to appear after I reloaded the SSH daemon. Should I avoid using <code>ssh reload</code> and use <code>ssh restart</code> instead?</p>
5927
5927
2011-01-16T13:12:15.857
2019-12-12T17:08:40.310
SSH server not working (respawns until stopped)
[ "10.04", "server", "ssh" ]
7
1
CC BY-SA 2.5
[ { "creationDate": "2012-01-10T03:50:07.273", "id": "995785", "postId": "21801", "score": "0", "text": "Also checkout this one. It may be a problem with sshd_config sintaxis\nhttps://bugs.launchpad.net/ubuntu/+source/openssh/+bug/911753", "userDisplayName": "user41309", "userId": null }...
{ "accepted": true, "body": "<p>You should check to see what happened just <em>before</em> SSH started floundering in <code>syslog</code>. If the networking subsystem died, that could explain why <code>sshd</code> started failing.</p>\n\n<p>I would also check <code>/var/log/auth.log</code>. It's <code>sshd</code>'s log and it might give you a better error message.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T13:12:57.633", "id": "23547", "postId": "21806", "score": "0", "text": "Thanks! I found many entries in the `auth.log` file and I updated my question.", "userDisplayName": null, "userId": "5927" }, { "creationDate": "2011-01-16T16:13:40.080", "id": "23571", "postId": "21806", "score": "0", "text": "`reload` should be a valid action. It *should* trigger an internal restart (and it appears to have attempted that and just got stuck). Try reloading again and see if it gets stuck again.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-01-21T23:38:59.723", "id": "24506", "postId": "21806", "score": "0", "text": "indeed, reload should be valid, but there is a bug. See my answer for more info.", "userDisplayName": null, "userId": "813" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T11:58:20.053", "id": "21806", "lastActivityDate": "2011-01-16T11:58:20.053", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21801", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>You should check to see what happened just <em>before</em> SSH started floundering in <code>syslog</code>. If the networking subsystem died, that could explain why <code>sshd</code> started failing.</p>\n\n<p>I would also check <code>/var/log/auth.log</code>. It's <code>sshd<...
null
null
null
null
null
21805
1
null
2011-01-16T11:55:22.833
5
9390
<p>I have tried installing <a href="http://code.google.com/p/asusfan/" rel="nofollow">asusfan</a> and lm-sensors but I'm unable to control my fans to cool my laptop down sufficiently. Currently it overheats at about 100 degrees celsius and my sensors output somehow does not have any fan information on it: </p> <pre><code>jackson@OLYMPIA:~$ sensors acpitz-virtual-0 Adapter: Virtual device temp1: +69.0°C (crit = +110.0°C) coretemp-isa-0000 Adapter: ISA adapter Core 0: +66.0°C (high = +100.0°C, crit = +100.0°C) coretemp-isa-0001 Adapter: ISA adapter Core 1: +66.0°C (high = +100.0°C, crit = +100.0°C) </code></pre> <p>I have checked my bios and there isn't any fan settings there. I can consistently overheat just by converting a video via Handbrake. I have ubuntu-desktop installed for a GUI. </p> <p>Is there a way for me to control my fans to start spinning before it reaches a critical temperature and kills itself?</p>
9011
29112
2011-11-11T17:38:31.473
2011-12-13T07:46:13.743
How to control fan speed and temperatures on Asus A8Js laptop?
[ "server", "fan", "asus" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><a href=\"http://ubuntuforums.org/showthread.php?t=42737\" rel=\"nofollow\">This</a> forum post might be of use to you. Beware: this is extremely in-depth.</p>\n\n<p><a href=\"http://brainstorm.ubuntu.com/idea/13393/\" rel=\"nofollow\">Here</a> is a brainstorm proposing easy ...
null
null
null
null
null
21811
1
null
2011-01-16T12:20:29.280
20
29737
<p>I want to convert text to an audio file containing synthesised speech that reads out that text. What free (libre+gratis) software is available for this and how do I install and use it?</p> <p>I don't need to use it as an accessibility tool - I just want to be able to listen back to my revision notes while doing other things, like playing games.</p>
667
3037
2011-01-16T12:35:05.317
2017-12-30T17:39:20.127
How can I install and use text-to-speech software?
[ "installation", "software-recommendation", "sound", "text-to-speech" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2019-08-13T16:38:14.763
null
null
21814
1
22012
2011-01-16T12:29:54.577
12
5875
<p>I have hundreds of passwords, since I use a different random one for each website/service. They are all generated &amp; stored with KeePassX, which can be synced to different computers and my android phone via dropbox (or ubuntuone).</p> <p>I know the database of KeePassX is secure (at least with a good passphrase). But what about when I am copying the password into the clipboard (where it is stored for 5 seconds)? Can any program running in user-space access the clipboard and store the password? If so, how big of a security risk is this?</p>
2919
4776
2011-01-16T14:15:27.417
2016-04-11T09:04:15.137
How secure is KeePassX?
[ "password", "keepass" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T14:12:05.190", "id": "23558", "postId": "21814", "score": "9", "text": "You may well be aware of it already, but I'll mention ir as a general issue.. Be **very** aware of clipboard managers (eg. Parcellite)... almost by definition they keep a log of what goes throug...
{ "accepted": true, "body": "<p>Programs may have access to the clipboard, for example you copy some text from a webpage and paste it to gedit. This should never happen without user interaction, unless KeePassX has a security vulnerability which another malware (very rare on Unix systems) could then use. Don't use software which you don't trust.</p>\n\n<p>If you want to decrease the probability that your passwords go to someone else, encrypt your home folder, swap and ram, use a good login password, disable user name list in login manager (like gdm). That way the only possible way to get access to your passwords is when KeePassX is running, ie. when you are logged in and have some old insecure programs running.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-17T19:16:36.950", "id": "22012", "lastActivityDate": "2011-05-04T17:35:25.607", "lastEditDate": "2011-05-04T17:35:25.607", "lastEditorDisplayName": null, "lastEditorUserId": "8973", "ownerDisplayName": null, "ownerUserId": "8973", "parentId": "21814", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>Programs may have access to the clipboard, for example you copy some text from a webpage and paste it to gedit. This should never happen without user interaction, unless KeePassX has a security vulnerability which another malware (very rare on Unix systems) could then use. Do...
null
null
null
null
null
21819
1
21821
2011-01-16T13:55:12.057
4
11366
<p>I want to add some lines which should execute every time Ubuntu boots up, so I don't have to change them manually everytime. I've read in some place that you should edit this file <code>/etc/rc.local</code>. However when I add the lines I want to execute at start up it doesn't run those lines.</p> <p>So I wonder where the start up file is located in ubuntu? Those lines I want to add is to change the sensitivity for the trackpoint</p> <p>One of the lines I want to add: <code>echo -n 250 &gt; /sys/devices/platform/i8042/serio1/serio2/sensitivity</code></p>
8498
3037
2011-01-16T14:24:09.123
2011-01-16T15:44:31.287
Where is the start up file located?
[ "startup", "input-devices" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T14:12:25.097", "id": "23559", "postId": "21819", "score": "0", "text": "Similar question you might love to have a look at: [How to run scripts on start up of ubuntu?](http://askubuntu.com/questions/814/how-to-run-scripts-on-start-up-of-ubuntu)", "userDisplayName...
{ "accepted": true, "body": "<p>It's working fine here. Have you made sure that <code>/etc/rc.local</code> ends with \"exit 0\":</p>\n\n<pre><code>...stuff...\n\n# set trackpoint sensitivity\necho -n 250 &gt; /sys/devices/platform/i8042/serio1/serio2/sensitivity\n\nexit 0\n</code></pre>\n\n<p>If it does, you're maybe using the wrong path. Try <code>/sys/devices/platform/i8042/serio1/sensitivity</code> instead.</p>\n", "commentCount": "8", "comments": [ { "creationDate": "2011-01-16T16:35:49.347", "id": "23574", "postId": "21821", "score": "0", "text": "@htorque - The problem now it seems the file isn't run at boot up. Instead I have to run it manually with `sudo /etc/init.d/rc.local start`. Then the trackpointer start to be more responsive. Do you possible know some reason why `rc.local` isn't executed automatically?", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-01-16T16:53:39.067", "id": "23578", "postId": "21821", "score": "0", "text": "@starcorn: I'd first test, if it really isn't called during boot. Edit the file to just contain \"touch /home/YOURUSER/Desktop/rclocal\" and the \"exit 0\". Then reboot - if you find the file \"rclocal\" on your desktop, then the script was run and the problem is somewhere else.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T17:54:53.177", "id": "23583", "postId": "21821", "score": "0", "text": "@htorque- I have tried adding `touch...` to the rc.local file now, and the file ends with `exit 0`. After the reboot the file didn't appear on the desktop. But it will appear if I run the script manually. Where can the problem else be? :(", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-01-16T18:26:03.477", "id": "23588", "postId": "21821", "score": "0", "text": "Do you have the files `/etc/rc*.d/S99rc.local` where * is 2-5?", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T18:43:10.003", "id": "23591", "postId": "21821", "score": "0", "text": "Yes I have that file in `rc*.d` 2-5", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-01-16T18:49:21.147", "id": "23594", "postId": "21821", "score": "0", "text": "Okay, if you also have `/etc/init/rc-sysinit.conf`, `/etc/init.d/rcS`, and `/etc/init.d/rc` I have no idea what's going on.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-16T19:14:05.147", "id": "23596", "postId": "21821", "score": "0", "text": "is it `/etc/init/rc-sysinit.conf` or is it `/etc/init.d/rc-sysinit.conf` ? either case i dont have that file, but the other two is there", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-01-16T19:29:25.467", "id": "23599", "postId": "21821", "score": "0", "text": "Oh, great: now do `sudo apt-get install --reinstall upstart` and you should have the file `/etc/init/rc-sysinit.conf`.", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T14:23:38.827", "id": "21821", "lastActivityDate": "2011-01-16T15:44:31.287", "lastEditDate": "2011-01-16T15:44:31.287", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21819", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>It's working fine here. Have you made sure that <code>/etc/rc.local</code> ends with \"exit 0\":</p>\n\n<pre><code>...stuff...\n\n# set trackpoint sensitivity\necho -n 250 &gt; /sys/devices/platform/i8042/serio1/serio2/sensitivity\n\nexit 0\n</code></pre>\n\n<p>If it does, yo...
null
null
null
null
null
21823
1
21825
2011-01-16T14:38:04.970
10
46673
<p>How do I create a shortcut to start a Windows application with Wine?</p> <p>For example I have Notepad++:</p> <pre><code>/media/DATA/Progs/Notepad++/notepad++.exe </code></pre> <p>and I would like to have a shortcut to it on the desktop.</p>
8436
57576
2016-07-15T10:09:59.693
2017-06-11T22:08:28.427
How to create a shortcut to start a Windows application with Wine?
[ "windows", "wine", "shortcuts" ]
4
1
CC BY-SA 3.0
[ { "creationDate": "2022-10-27T03:26:12.797", "id": "2506919", "postId": "21823", "score": "0", "text": "Here is my explanation how to work a desktop shortcut: https://askubuntu.com/questions/1437380/ubuntu-22-04-how-to-run-an-exe-file-by-the-desktop-shortcut/1437386#1437386", "userDisplayNam...
{ "accepted": true, "body": "<ul>\n<li><p>Right click on your Desktop and then select Create Launcher.\n<img src=\"https://i.stack.imgur.com/cvl3J.png\" alt=\"alt text\"></p></li>\n<li><p>Then enter the name and in command box enter the path of your wine application.\n<img src=\"https://i.stack.imgur.com/lZ3ha.png\" alt=\"alt text\"></p></li>\n<li>Now you can simply click the launcher in your Desktop to open your wine application.</li>\n<li>Also have a look at this <strong><a href=\"http://jaypeeonline.net/tips-tricks/create-wine-application-shortcuts-ubuntu/\" rel=\"noreferrer\">link</a></strong>.</li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2013-10-17T13:42:29.563", "id": "461578", "postId": "21825", "score": "4", "text": "Right-clicking my ubuntu desktop does not present a create launcher menu, only create new folder, create new document.", "userDisplayName": null, "userId": "29907" }, { "creationDate": "2014-03-05T12:09:13.327", "id": "557720", "postId": "21825", "score": "0", "text": "this does not work with 13.10 at least - there is no such right-click option.", "userDisplayName": null, "userId": "181103" }, { "creationDate": "2015-03-04T21:05:06.263", "id": "824939", "postId": "21825", "score": "1", "text": "For new versions of Ubuntu which no longer have the `Create Launcher` option, instructions on how to create a launcher can be found here : http://askubuntu.com/a/139530/14601", "userDisplayName": null, "userId": "14601" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T14:50:56.443", "id": "21825", "lastActivityDate": "2011-01-16T14:50:56.443", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "21823", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<ul>\n<li><p>Right click on your Desktop and then select Create Launcher.\n<img src=\"https://i.stack.imgur.com/cvl3J.png\" alt=\"alt text\"></p></li>\n<li><p>Then enter the name and in command box enter the path of your wine application.\n<img src=\"https://i.stack.imgur.com/lZ...
null
null
null
null
null
21824
1
21838
2011-01-16T14:42:24.443
6
271
<p>I just want to copy and paste the bit of text that describes the panel in my other user account. Which textfile can I paste that into?</p>
2473
4776
2011-01-16T14:49:33.723
2011-01-16T16:18:19.393
I deleted my launcher panel when I just wanted to delete a launcher. How do I start making a new panel?
[ "gnome-panel" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>To transfer your panel settings from one computer to another, do the following:</p>\n\n<pre><code>gconftool --dump /apps/panel &gt; panel-settings.xml\n</code></pre>\n\n<p>Then copy <code>panel-settings.xml</code> to your other computer and on that run:</p>\n\n<pre><code>gconf --load panel-settings.xml\nkillall gnome-panel\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-23T17:02:44.420", "id": "24741", "postId": "21838", "score": "0", "text": "Theoretically there are really good reasons not to select this answer, but for practical purposes, it answered the question I actually asked, so I'm choosing it.", "userDisplayName": null, "userId": "2473" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T16:18:19.393", "id": "21838", "lastActivityDate": "2011-01-16T16:18:19.393", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21824", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>You can reset the panels back to default by writing the following in a terminal:</p>\n\n<p><code>gconftool --recursive-unset /apps/panel &amp;&amp; killall gnome-panel</code></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLice...
null
null
null
null
null
21833
1
null
2011-01-16T15:26:17.427
8
2343
<p>My Acer Timeline has a "Disable touchpad button" which works <em>too well</em>. That is, once I've pressed it, pressing it again won't re-enable the touchpad. I've tried a couple of things like:</p> <pre><code>gconftool-2 --set --type boolean /desktop/gnome/peripherals/touchpad/touchpad_enabled true </code></pre> <p>which worked once, but now when I do it again, it doesn't work again...</p> <p>In fact, I'd like to know how to work out what the "disable touchpad" button is actually doing, and why doing it again isn't fixing the issue.</p>
702
702
2011-01-26T17:52:44.290
2012-07-20T22:00:49.250
"Disable touchpad button": touchpad won't re-enable
[ "touchpad", "synaptics" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-26T18:56:51.853", "id": "25316", "postId": "21833", "score": "0", "text": "this is a bug in gconf to my memory, I don't think it was fixed :/", "userDisplayName": null, "userId": "1992" } ]
null
[ { "accepted": null, "body": "<p>Just load or unload the psmouse module from kernel</p>\n\n<p>for example:</p>\n\n<p>To disable touchpad:</p>\n\n<pre><code># rmmod psmouse\n</code></pre>\n\n<p>To enable touchpad again:</p>\n\n<pre><code># modprobe psmouse\n</code></pre>\n\n<p>and voila!</p>\n", "commentC...
null
null
null
null
null
21836
1
null
2011-01-16T16:13:16.857
4
351
<p>I just upgraded to Maverick, and now I can't change my theme except for the cursor and window border/decoration. I've just reinstalled the themes I want to use (Dust + Dust extra) successfully, and while the window border/decorations change properly when I select them, nothing else changes. The icon set doesn't change; gnome-panel doesn't change. I'm stuck on the fugly fallback theme - the one you see when you do <code>gksudo gedit</code> or something.</p>
8473
169736
2014-05-26T20:23:14.137
2014-05-26T20:23:14.137
Upgraded to Maverick; can't change theme
[ "upgrade", "themes" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-03-19T08:21:47.417", "id": "34787", "postId": "21836", "score": "0", "text": "Can you add a screenshot?", "userDisplayName": null, "userId": "4384" }, { "creationDate": "2011-08-01T17:58:56.547", "id": "62324", "postId": "21836", "score": "0", ...
null
[ { "accepted": null, "body": "<p>I discovered that this works fine when logged in as another user. I nuked ~/.gconf and started my customizations from scratch. There is probably a less drastic way to accomplish this.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "co...
null
null
2014-05-29T07:27:03.253
null
null
21840
1
null
2011-01-16T16:25:43.950
28
947
<p>Let me quote from <a href="http://www.markshuttleworth.com/archives/308#comment-324337" rel="nofollow">Mark's blog</a> almost one year ago:</p> <blockquote> <p><em>March 5th, 2010 at 7:19 pm</em><br> Mark, will there be an update to the sound theme to match the updated visual brand?</p> <p><em>Mark Shuttleworth:</em> Gack, I completely forgot about that. A very good point. Would you see if you can rally a round of community submissions for a sound theme inspired by light?</p> </blockquote> <p>Let's keep it short and sweet: <strong>What are the current considerations for the Ubuntu default sound theme?</strong></p> <hr> <p><strong>Update, October 5 2011</strong></p> <p>This question was "answered" before the release of Natty. However, it proved to be wrong in the mean time. So the legacy continues, and I am reopening this one.</p> <hr> <p><strong>Update, February 15, 2012</strong></p> <p>Something is rolling! Looks like there will be a new sound for 12.04. Only a start-up sound however, no complete theme.</p> <p><a href="http://design.canonical.com/2012/02/sound-theme-update/" rel="nofollow">http://design.canonical.com/2012/02/sound-theme-update/</a></p> <hr> <p><strong>Update, April 30, 2012</strong></p> <p>It seemed to look good, but for some reason the sound did not make it into 12.04. There have been no announcements as to why, however. The sound theme remains a mistery...</p> <hr> <p><strong>Update, May 2, 2012</strong></p> <p>Mark Shuttleworth made a statement on IRC recently saying that it simply "was not perfect yet." It will maybe be in 12.10 then.</p> <hr> <p><strong>Update, December 6, 2012</strong></p> <p>Not in 12.10, either. But - there's still hope for 13.04!</p> <hr> <p><em>As of the last update, the <a href="https://bugs.launchpad.net/ubuntu/+source/ubuntu-sounds/+bug/539169" rel="nofollow">bug report</a> for getting a new sound theme has been marked as Confirmed (but not In Progress) with the last comment posted October 31, 2011.</em></p> <hr> <p><strong>Update, September 11, 2013</strong></p> <p>Won't be in 13.04, and neither in 13.10. However, an interesting proposal has popped up. The composer of the "Mass Effect" soundtrack offered to make a startup sound for Ubuntu <a href="https://lists.launchpad.net/unity-design/msg10267.html" rel="nofollow">on this mailing list</a>.</p> <p><a href="http://www.omgubuntu.co.uk/2013/09/mass-effect-composer-ubuntu-14-04-start-up-sounds" rel="nofollow">http://www.omgubuntu.co.uk/2013/09/mass-effect-composer-ubuntu-14-04-start-up-sounds</a></p> <p>Discussion on Reddit <a href="http://www.reddit.com/r/Ubuntu/comments/1m659a/mass_effect_composer_offers_to_create_new_ubuntu/" rel="nofollow">here</a>.</p>
2192
2192
2013-09-12T11:39:28.010
2013-09-12T11:39:28.010
Are there still plans for a new sound theme?
[ "sound", "themes" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>There will be a new startup sound for 12.04, chosen from one of the 4 finalists. Listen to them <a href=\"http://design.canonical.com/2012/02/sound-theme-update/\" rel=\"nofollow\">here</a> and fill out this <a href=\"https://www.surveymonkey.com/s/3DLBM9X\" rel=\"nofollow\">...
null
null
null
null
null
21841
1
21848
2011-01-16T16:35:01.220
1
231
<p>I tried to run it from total commander, I tried to make a link to it</p> <pre><code>/media/DATA/#TO_BACKUP/_MUSIC/MUSIC2/Black Eyed Peas - The Time (Dirty Bit).avi </code></pre> <p>but it says </p> <pre><code>Failed to execute child process "/media/DATA/" (Permission denied) </code></pre> <p>Opening the full location from MediaPlayer does not work (open location)</p> <pre><code>Location not found </code></pre> <p>I can open it slowly by navigating in the slow file open dialog, but I would like to open it from totalcmd or by created link or by passing full location.</p> <p>P.S. Before that I have opened the DATA Partition.</p>
8436
169736
2014-01-08T16:27:15.427
2014-01-08T17:00:14.670
How to open a file with special character in their path?
[ "video-player" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-01-16T23:50:20.957", "id": "23643", "postId": "21841", "score": "0", "text": "The answer is not running from wine. You either want the video to run or want to run the video from the wine compatibility.", "userDisplayName": null, "userId": "7035" } ]
{ "accepted": true, "body": "<p>I think you have to use a media player, like mplayer from console given the location as a parameter, for example </p>\n\n<pre><code>mplayer /home/user/myvideo.avi\n</code></pre>\n\n<p>Obviously changing the location of the video</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-16T18:25:50.753", "id": "23587", "postId": "21848", "score": "0", "text": "it works, thx a lot.", "userDisplayName": null, "userId": "8436" }, { "creationDate": "2014-01-08T17:04:12.013", "id": "516177", "postId": "21848", "score": "0", "text": "You could also have just escaped the # character with `\\#`", "userDisplayName": null, "userId": "10616" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-16T17:29:57.283", "id": "21848", "lastActivityDate": "2014-01-08T16:27:04.127", "lastEditDate": "2014-01-08T16:27:04.127", "lastEditorDisplayName": null, "lastEditorUserId": "169736", "ownerDisplayName": null, "ownerUserId": "6586", "parentId": "21841", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I think you have to use a media player, like mplayer from console given the location as a parameter, for example </p>\n\n<pre><code>mplayer /home/user/myvideo.avi\n</code></pre>\n\n<p>Obviously changing the location of the video</p>\n", "commentCount": "2", "comments"...
null
null
null
null
null
21842
1
21844
2011-01-16T16:38:13.697
9
1585
<p>I just discovered that I couldn't add more than 4 layouts for my keyboard. Googling revealed that it was a universal limit (at least for GNU/Linux) and the only way(s) to get around it was to use some hackish way with scripts. Is there really a technical reason behind this? If yes, what is it?</p>
4152
158442
2017-02-08T07:00:46.427
2017-02-08T07:00:46.427
Why is there a 4-layouts limit for keyboards?
[ "keyboard", "keyboard-layout" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2013-05-01T09:58:14.430", "id": "363157", "postId": "21842", "score": "0", "text": "Answer is here: http://askubuntu.com/questions/107945/cant-add-more-than-four-keyboard-layouts", "userDisplayName": null, "userId": "15811" }, { "creationDate": "2018-12-26T04:0...
{ "accepted": true, "body": "<p><a href=\"https://bugs.freedesktop.org//show_bug.cgi?id=19501\">Quoting Peter Hutterer</a> (Red Hat employee working on X.Org):</p>\n\n<blockquote>\n <p>Some information about this feature and why it hasn't been implemented yet:\n Te 4 group limit is forced by the protocol wire format. support for more than\n 4 groups can only be added by adding additional requests and events to XKB and\n rewriting clients to switch to this new XKB version.\n In addition, compatibility to the old protocol must be ensured so that current\n XKB clients will still function correctly with the new XKB version.</p>\n \n <p>This is both complex and very time-consuming. Volunteers to tackle this problem\n are of course very welcome.</p>\n \n <p>[...]</p>\n \n <p>It's encoded in some bits on the protocol, with the other bits being used for\n other information. so you need extra bytes in the requests/events for anything\n above 4, and adding extra bytes requires bumping the protocol. And then you\n have to deal with those clients that only understand 4 groups and what to do\n with them if a keyboard is on group 5.</p>\n</blockquote>\n\n<p>Why we don't have a hack above this layer - I don't know... this must be the lamest limitation ever. :D</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T18:00:16.733", "id": "23584", "postId": "21844", "score": "0", "text": "It is all the more strange because you _can_ actually use more than 4 - by using scripts.", "userDisplayName": null, "userId": "4152" }, { "creationDate": "2011-01-16T18:01:10.070", "id": "23585", "postId": "21844", "score": "0", "text": "If you're on unix.se, can you please also post the answer there so that I can accept it there as well: http://unix.stackexchange.com/questions/5963/why-is-there-a-4-layouts-limit-for-keyboards", "userDisplayName": null, "userId": "4152" }, { "creationDate": "2011-01-16T18:19:53.940", "id": "23586", "postId": "21844", "score": "0", "text": "I'm not, gotta answer it yourself. ;-)", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T17:07:39.577", "id": "21844", "lastActivityDate": "2011-01-16T17:07:39.577", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21842", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p><a href=\"https://bugs.freedesktop.org//show_bug.cgi?id=19501\">Quoting Peter Hutterer</a> (Red Hat employee working on X.Org):</p>\n\n<blockquote>\n <p>Some information about this feature and why it hasn't been implemented yet:\n Te 4 group limit is forced by the protocol ...
null
null
null
null
null
21851
1
null
2011-01-16T17:31:19.807
7
4612
<p>I hate how when I turn on the computer it just (after the hp logo, which I hate having also), shows white text on a black background. I'm wondering if there's easy ways to customize this (I'm choosing between Windows 7 and two separate Ubuntu 10.10 installs). I've read a little about some complicated ways to do this, but is there not some simpler ways by installing a package on ubuntu or something? I don't want to hack a bunch of code together to get a simple effect.</p> <p>I'm hoping for actual images and having like the windows 7 logo and ubuntu logo to choose from.</p> <p>Ideas?</p>
9023
235
2011-01-16T18:21:34.110
2021-07-12T11:19:15.867
How can I customize my bootloader to make it prettier?
[ "grub2", "bootloader" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Yes... there's BURG. With it you can easily give your bootloader a theme. Beware though that if you do something stupid, you could break it and lock yourself out for a while.</p>\n\n<p>Look at the following link for instructions (really pretty simple, mostly GUI)<br>\n<a hr...
null
null
null
null
null
21855
1
22002
2011-01-16T17:58:52.877
3
6330
<p>I need to provide an FTP service that needs to be web-managed in the simplest way possible. My customer wants to create folders and users, and give them read only or read/write access arbitrarily.</p> <p>For example: </p> <p>The folder 'Documents' should be read only for several users, writable for internal users, and invisible for the rest.</p> <p>The folder 'Pictures' should be read only for journalists, writable for associates, and invisible for the rest.</p> <p>The folder 'Media' should be read only, writable or invisible for arbitrary users specified on the admin.</p> <p>There could be a large number of users and folders.</p> <p>I can't find a good way to accomplish that.</p> <p>I thought that I could give each user a home folder and put symlinks for the folders he has read access to, and make the user part of the folder's group when he has write access too, but now I think that this wouldn't work, because with PureFTPd (or ProFTPd) I can only specify the virtual user's mapping to a system user, and only one GUID for each virtual user. My approach requires that I could specify several GUIDs for each user (one by each folder he has write access to).</p> <p>I need to start programming this admin and I still don't know wich approach would work, if any.</p> <p>The question is: How to give arbitrary permissions to 20 folders or so, to a large number of FTP users?</p>
9024
9024
2011-01-17T14:09:22.393
2011-01-17T18:40:05.363
Managing arbitrary user permissions under PureFTPd
[ "pure-ftpd" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Will ACL work for you? For Ubuntu 10.10, mount file systems with the acl option.</p>\n\n<pre><code>sudo vim /etc/fstab\n</code></pre>\n\n<p>UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx / ext4 defaults,acl 0 1</p>\n\n<pre><code>sudo mount -o remount,acl /\n</code></pre>\n\n<p>(or maybe there is a separate /home/ partition?) Make groups for this purpose.</p>\n\n<pre><code>sudo groupadd journalists\nsudo groupadd associates\nsudo usermod -a -G journalists $username_1\nsudo usermod -a -G associates $username_2\n</code></pre>\n\n<p>(The users need to log out and in again to become a member of a group.)</p>\n\n<p>Just to illustrate on a directory, /home/ftp/Pictures, to accomplish \"The folder 'Pictures' should be read only for journalists, writable for associates, and invisible for the rest.\":</p>\n\n<pre><code>sudo chown -R root.associates /home/ftp/Pictures\nsudo chmod 0770 /home/ftp/Pictures\nsudo chmod g+s /home/ftp/Pictures\nsudo setfacl -d -m u::rwx,g::rwx,o::--- /home/ftp/Pictures\nsudo setfacl -d -m u::rwx,g:journalists:r-x,o::--- /home/ftp/Pictures\n</code></pre>\n\n<p>Now you've got members of the associates group able to read/write everything in /home/ftp/Pictures, while members of journalists can only read (execute) and everyone else has no permission at all.</p>\n\n<p>If we wanted to restrict delete and rename from all but the user who created the file:</p>\n\n<pre><code>sudo chmod +t /home/ftp/Pictures\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T17:57:58.980", "id": "22002", "lastActivityDate": "2011-01-17T18:40:05.363", "lastEditDate": "2011-01-17T18:40:05.363", "lastEditorDisplayName": "user8290", "lastEditorUserId": null, "ownerDisplayName": "user8290", "ownerUserId": null, "parentId": "21855", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Will ACL work for you? For Ubuntu 10.10, mount file systems with the acl option.</p>\n\n<pre><code>sudo vim /etc/fstab\n</code></pre>\n\n<p>UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx / ext4 defaults,acl 0 1</p>\n\n<pre><code>sudo mount -o remount,acl /\n</code></pre>\n\n<p>(or...
null
null
null
null
null
21857
1
21858
2011-01-16T18:29:24.800
1
2414
<p>I've had a problem with <a href="https://askubuntu.com/questions/17873/problems-with-cisco-quickvpn-client/18336">making QuickVPN work with Ubuntu</a>. I've got a feeling that it's because the Windows only application needs to listen on port 500, which it cannot without privileges. As you should never run Wine as root, how do you at least give it some privileges?</p> <p>All I've found is that you should use "<a href="http://wiki.winehq.org/FAQ#head-96bebfa287b4288974de0df23351f278b0d41014" rel="nofollow noreferrer">Posix Capabilities</a>", but I haven't been able to figure out how exactly I can do this.</p>
615
-1
2017-04-13T12:24:26.167
2016-12-05T23:42:14.917
Giving Wine applications more privileges (like listening on ports below 1024)
[ "wine" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You should be able to grant the \"bind to privileged ports\" capability to Wine with:</p>\n\n<pre><code>sudo setcap 'cap_net_bind_service=+ep' /path/to/wine\n</code></pre>\n\n<p>Please let us know if it worked.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T19:22:31.017", "id": "23597", "postId": "21858", "score": "1", "text": "And run `sudo apt-get install libcap2-bin` to install `setcap` if you don't already have it", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-01-16T21:28:26.743", "id": "23620", "postId": "21858", "score": "0", "text": "The capability seems to have been set, but the VPN program is still not working. I don't think it will ever work with wine. Thanks though.", "userDisplayName": null, "userId": "615" }, { "creationDate": "2011-01-20T09:27:06.787", "id": "24165", "postId": "21858", "score": "0", "text": "You may need to give caps to both /usr/bin/wine and /usr/bin/wineserver, as well as the actual executable you're launching", "userDisplayName": null, "userId": "2558" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-16T18:57:53.530", "id": "21858", "lastActivityDate": "2014-01-18T22:26:07.630", "lastEditDate": "2014-01-18T22:26:07.630", "lastEditorDisplayName": null, "lastEditorUserId": "176889", "ownerDisplayName": null, "ownerUserId": "742", "parentId": "21857", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You should be able to grant the \"bind to privileged ports\" capability to Wine with:</p>\n\n<pre><code>sudo setcap 'cap_net_bind_service=+ep' /path/to/wine\n</code></pre>\n\n<p>Please let us know if it worked.</p>\n", "commentCount": "3", "comments": [ { ...
null
null
null
null
null
21859
1
null
2011-01-16T19:01:34.607
3
686
<p>In <a href="http://www.jonobacon.org/2010/11/30/testing-natty-and-unity-safely-with-a-usb-stick/" rel="nofollow noreferrer">a blogpost</a> Jono explained a nice way to test the latest version of Natty. Under point four he proposes:</p> <blockquote> <p>Step 4: Update</p> <p>Although you installed the latest daily you should ensure it is up to date, and you can do this with:</p> <p>sudo apt-get update<br /> sudo apt-get upgrade</p> </blockquote> <p>Now, I followed all the steps and am actually writing this question from a session running on a 4GB USB stick. When trying to update the installation though (I just tried to do that using the Update Manager), it always fails because I do not have enough disc space remaining.</p> <p>How can I get Ubuntu to update properly on my USB stick?</p>
2192
-1
2020-06-12T14:37:07.210
2011-02-04T01:01:41.277
Can not update Natty running from a USB stick
[ "11.04", "usb", "live-usb", "testing" ]
0
6
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T19:26:22.353", "id": "23598", "postId": "21859", "score": "0", "text": "Exact duplicate of http://askubuntu.com/questions/18403/how-to-incrementally-update-a-live-usb .", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-01-17T10:37...
null
[]
null
null
2011-06-05T20:41:23.523
null
null
21860
1
26583
2011-01-16T19:14:58.780
5
2039
<p><a href="https://askubuntu.com/questions/1403/whats-the-state-of-multi-seat-in-10-04-lucid">I've asked about multiseat before</a>. The answer (for 10.04) involved doing it the proper way (eg through <code>gdm</code>, multiple server layouts). The problem was that <code>gdm</code> needs to be patched or reverted to 2.20 for multiseat. It's an ugly hack that, worse than anything, will hold up future updates.</p> <p>As a result, I didn't do anything. I still have a spare video card. I still have the monitor, keyboard and mouse all sitting waiting to jump into action. And I still want to be able to turn that into a simple desktop.</p> <p>My needs don't seem complicated. I have a second video card, a USB hub and anything connected to that USB hub that I want to be dedicated to another X server. I don't need a login screen (I'm happy hard-coding in a auto-login and I'd be happy with the user starting the X server if that's possible).</p> <p>This is so simple in my head that I only need two questions:</p> <ol> <li><p>How can I explicitly start an X server from the command line on an unused video adapter (by passing it whatever configuration I need to)?</p></li> <li><p>Can I have this new X session load a desktop environment on load?</p></li> </ol> <p>This seems like something you should be able to write in a little upstart script within 10 minutes. That would be perfect for me as then I'd have a nice start/stop control over the secondary desktop from the main desktop (that I want to leave unscathed!)</p> <p>I'm thinking something as simple as this for the payload:</p> <pre><code>su -u other_user -c "startx -- localhost hardware-information" </code></pre> <p>And use .xinitrc to load openbox or something...</p>
449
-1
2017-04-13T12:24:48.743
2011-02-16T05:01:20.307
Simple multi-seat
[ "multiseat" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T20:39:58.417", "id": "23605", "postId": "21860", "score": "0", "text": "Not too familiar with X server, but won't `startx -- :0` (default display/adapter) and `startx -- :1` work for for first question? (http://humanreadable.nfshost.com/howtos/startx_script.htm )", ...
{ "accepted": true, "body": "<p>Why don't you use X server layouts, but not gdm? Or if you need a login manager, use something that doesn't kvetch about multiple instances (or whatever the problem with gdm is). I'm reading the blog entry that was linked to in your other question and wondering why not just ditch the gdm part of his instructions and run gnome-session or wmfs or..</p>\n\n<p>The command would be:</p>\n\n<pre><code>su -u other_user -c \"startx -- -layout SecondSeat :1\"\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-16T05:01:20.307", "id": "26583", "lastActivityDate": "2011-02-16T05:01:20.307", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8515", "parentId": "21860", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Why don't you use X server layouts, but not gdm? Or if you need a login manager, use something that doesn't kvetch about multiple instances (or whatever the problem with gdm is). I'm reading the blog entry that was linked to in your other question and wondering why not just d...
null
null
null
null
null
21862
1
null
2011-01-16T19:16:38.463
3
6060
<p>Would like a script, when run, it should connect to a hidden wireless network with these details:</p> <p>SSID is "Wireless" Network is not broadcasting its SSID above (is hidden) WPA2-PSK, AES, password is "password" Static IP: 192.168.1.1 Def. gateway: 192.168.1.254 DNS: 192.168.1.254</p> <p>No idea how to do this. But I do know the wireless interface is called wlan0 and I'm on Ubuntu 10.10. I don't want to use the built in Network Manager as it never auto-connects on startup. WICD doesn't work either.</p> <p>Any ideas most welcome.</p>
null
null
null
2013-09-05T06:32:32.557
Script to connect to hidden wireless network with static IP?
[ "wireless" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2012-12-29T04:34:32.810", "id": "289750", "postId": "21862", "score": "0", "text": "This question appears to be abandoned, if you are experiencing a similar issue please [ask a new question](http://askubuntu.com/questions/ask) with details pertaining to your problem. If you fe...
null
[ { "accepted": null, "body": "<p>Check out this page on the Arch wiki about using WPA supplicant:\n<a href=\"https://wiki.archlinux.org/index.php/WPA_supplicant#Classic_method:_wpa_supplicant.conf\">https://wiki.archlinux.org/index.php/WPA_supplicant#Classic_method:_wpa_supplicant.conf</a></p>\n\n<p>Once you...
null
null
null
null
nLinked
21863
1
21875
2011-01-16T19:23:57.757
0
1693
<p>For some reason when I plug in the AC the laptop fun will always run, and it is quite noticable also. Is it supposed to be like that, is it some fix for it? My laptop is a thinkpad T400</p>
8498
null
null
2011-01-16T20:25:52.343
Excessive fan speed when AC is plugged
[ "laptop", "fan" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T21:15:33.500", "id": "23614", "postId": "21863", "score": "0", "text": "I'll make this a comment since I'm not sure about the Thinkpad: My old HP laptop had an option in its BIOS, to always run the fan at full speed when the AC adapter is plugged in. Check your bios...
{ "accepted": true, "body": "<p>Doing a quick search i found this website for thinkpad user with similiar problems</p>\n\n<p><a href=\"http://www.thinkwiki.org/wiki/How_to_control_fan_speed\" rel=\"nofollow\">Here </a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T20:25:52.343", "id": "21875", "lastActivityDate": "2011-01-16T20:25:52.343", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6586", "parentId": "21863", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Doing a quick search i found this website for thinkpad user with similiar problems</p>\n\n<p><a href=\"http://www.thinkwiki.org/wiki/How_to_control_fan_speed\" rel=\"nofollow\">Here </a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, ...
null
null
null
null
null
21864
1
21869
2011-01-16T19:33:56.713
3
6407
<p>For example, I want all avi files to be associated with mplayer <strong>in Wine</strong></p> <pre><code>mplayer /home/user/myvideo.avi </code></pre> <p><strong>Edit from Oli:</strong> I believe this this actually the inverse of what most people would assume from the original title. Unless I'm mistaken the user is using Total Commander in Wine and would like to launch a Linux-native player on the path. If I'm wrong, just rollback this edit.</p>
8436
449
2011-01-16T19:56:59.803
2011-01-16T21:02:09.787
How to associate a file type within Wine with a native application?
[ "wine", "file-association" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><a href=\"http://wiki.winehq.org/FAQ#head-e03d797155ac6e9d8176f045acbdeebc28ad33d4\" rel=\"nofollow\">The Wine page has some detail on this</a>.</p>\n\n<p>First you need <code>winepath</code> to translate the path. This will make the script and give it permission to run:</p>\n\n<pre><code>mkdir -p ~/bin/\necho '#!/bin/sh' &gt; ~/bin/run_linx_program\necho '$1 \"`wine winepath -u \"$2\"`\"' &gt;&gt; ~/bin/run_linx_program\nchmod a+x ~/bin/run_linx_program\n</code></pre>\n\n<p>Then you'd save something like this to a file called <code>association.reg</code>:</p>\n\n<pre><code>[HKEY_CLASSES_ROOT\\.avi]\n@=\"AVIfile\"\n\"Content Type\"=\"video/x-msvideo\"\n[HKEY_CLASSES_ROOT\\AVIfile\\Shell\\Open\\command]\n@=\"/bin/sh run_linx_program mplayer \\\"%1\\\"\"\n</code></pre>\n\n<p>Then run <code>regedit association.reg</code> to add the association to Wine's registry.</p>\n\n<p>Note: this is adapted from the Wine page. I got the mime-type from within Linux (<code>file --mime-type an_avi.avi</code>). Wine may treat AVI files differently.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-06-30T22:29:23.633", "id": "57323", "postId": "21869", "score": "0", "text": "... or use `@=\"c:\\windows\\system32\\winebrowser.exe \\\"%1\\\"\"` as the command. Its a wine builtin that translates the path and launches the file using `xdg-open`. So, provided that `mplayer` is already configured outside wine to handle avi files, its a more generic solution (and no scripting or sudo needed)", "userDisplayName": null, "userId": "11015" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T20:05:13.897", "id": "21869", "lastActivityDate": "2011-01-16T21:02:09.787", "lastEditDate": "2011-01-16T21:02:09.787", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21864", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p><a href=\"http://wiki.winehq.org/FAQ#head-e03d797155ac6e9d8176f045acbdeebc28ad33d4\" rel=\"nofollow\">The Wine page has some detail on this</a>.</p>\n\n<p>First you need <code>winepath</code> to translate the path. This will make the script and give it permission to run:</p>\...
null
null
null
null
null
21868
1
21872
2011-01-16T20:01:19.050
12
6278
<p>Running <a href="http://www.lesswatts.org/projects/powertop/">PowerTOP</a> on an Ubuntu 10.10 system, one of the suggestions are</p> <blockquote> <p>Enable the CONFIG_PM_ADVANCED_DEBUG kernel configuration option. This option will allow PowerTOP to collect runtime power management statistics.</p> </blockquote> <p>What is a kernel configuration option and how do I enable it? </p> <p>Can I put it as a startup parameter somewhere, or would I have to compile a new kernel?</p>
2337
null
null
2011-09-12T05:11:18.883
What is kernel configuration?
[ "kernel", "configuration" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Kernel configurations are compiled in. You can check to see if it's configured by running this:</p>\n\n<pre><code>grep CONFIG_PM_ADVANCED_DEBUG /boot/config-`uname -r`\n</code></pre>\n\n<p>On mine, I see:</p>\n\n<pre><code>oli@bert:~$ grep CONFIG_PM_ADVANCED_DEBUG /boot/config-`uname -r`\n# CONFIG_PM_ADVANCED_DEBUG is not set\n</code></pre>\n\n<p>I compile my own kernels but my config is derived from Ubuntu's. It's worth checking to see if it's been added since I started compiling.</p>\n\n<p>If you want to recompile the kernel to enable this flag, your best starting point is here: <a href=\"https://help.ubuntu.com/community/Kernel/Compile\">https://help.ubuntu.com/community/Kernel/Compile</a></p>\n\n<p>It's a bit of effort. You need a few packages and on a fast computer it takes at least 20 minutes just to do the compile. Add in configuration time and that you have to do this every time a security update comes out... It might not be worth it.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-08-02T13:36:49.033", "id": "210769", "postId": "21872", "score": "0", "text": "Just a quick update: I'm seeing that CONFIG_PM_ADVANCED_DEBUG is now enabled in Precise.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T20:12:59.537", "id": "21872", "lastActivityDate": "2011-01-16T20:12:59.537", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21868", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>Kernel configurations are compiled in. You can check to see if it's configured by running this:</p>\n\n<pre><code>grep CONFIG_PM_ADVANCED_DEBUG /boot/config-`uname -r`\n</code></pre>\n\n<p>On mine, I see:</p>\n\n<pre><code>oli@bert:~$ grep CONFIG_PM_ADVANCED_DEBUG /boot/confi...
null
null
null
null
null
21871
1
21873
2011-01-16T20:12:48.733
2
497
<p>I recently messed up my Master Boot Record and my system is not booting. I was dual booting Windows and Ubuntu. Both of them are not loading now. I don't care if I lose my windows, but I want my Ubuntu back!!</p> <p>How to get it (I have a fresh Ubuntu 10.10 LTS disk with me). I went through the install wizard but feared that I may loose my existing installation/setup. Thats why I came here to check what is the ideal procedure to only update the Boot record instead of a full installation.</p>
2011
2011
2011-01-16T20:18:07.353
2011-01-16T20:21:46.717
How to fix the boot loader with an installation disk at hand
[ "installation", "boot", "grub2", "updates" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is covered in detail in the <a href=\"https://help.ubuntu.com/community/Grub2#Reinstalling%20from%20LiveCD\" rel=\"nofollow\">Ubuntu Community Documentation</a>.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T20:39:28.003", "id": "23604", "postId": "21873", "score": "0", "text": "Thanks for the link.. I am trying the steps now.. Will post an update soon..", "userDisplayName": null, "userId": "2011" }, { "creationDate": "2011-01-16T20:50:51.837", "id": "23608", "postId": "21873", "score": "0", "text": "AMAZINGGGG!!!!!! THANKS A BILLION!!!!!! I feared that I would lose my entire work!! You saved me many hours and days of work!", "userDisplayName": null, "userId": "2011" }, { "creationDate": "2011-01-16T20:54:48.743", "id": "23609", "postId": "21873", "score": "0", "text": "I'm glad it worked. :-)", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T20:19:28.550", "id": "21873", "lastActivityDate": "2011-01-16T20:19:28.550", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21871", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>This is covered in detail in the <a href=\"https://help.ubuntu.com/community/Grub2#Reinstalling%20from%20LiveCD\" rel=\"nofollow\">Ubuntu Community Documentation</a>.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-16T20:39:28.003",...
null
null
null
null
null
21877
1
21883
2011-01-16T20:41:48.567
0
1270
<p>I tried code from <a href="https://askubuntu.com/questions/21864/how-to-associate-a-file-type-within-wine-with-a-native-application/21869#21869">this question</a> and for some reason they do not work, why and how to fix them?</p> <pre><code>a@ubuntu:~$ echo "#!/bin/sh" &gt; ~/bin/run_linx_program bash: !/bin/sh": event not found a@ubuntu:~$ echo "$1 "\`wine winepath -u \"$2\"\`\"" &gt;&gt; ~/bin/run_linx_program &gt; ? &gt; ^C a@ubuntu:~$ </code></pre>
8436
-1
2017-04-13T12:24:48.743
2012-07-09T13:07:38.293
Why don't those winepath commands work?
[ "command-line", "bash", "wubi" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I've fixed the original answer (and I've tested it this time):</p>\n\n<pre><code>mkdir -p ~/bin/\necho '#!/bin/sh' &gt; ~/bin/run_linx_program\necho '$1 \"`wine winepath -u \"$2\"`\"' &gt;&gt; ~/bin/run_linx_program\nchmod a+x ~/bin/run_linx_program\n</code></pre>\n\n<p>I forgot that ! gets interpreted inside <code>\"</code>s. I should have used <code>'</code>s. <code>!</code> starts a history substitution match and that wasn't what I was going for.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T21:03:29.070", "id": "21883", "lastActivityDate": "2011-01-16T21:03:29.070", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21877", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>! has a special meaning in bash:</p>\n\n<blockquote>\n <p>When the command history expansion facilities are being used (see HISTORY EXPANSION below), the history expansion character, usually !,<br>\n must be quoted to prevent history expansion.</p>\n</blockquote>\n\n<p>Th...
null
null
null
null
null
21879
1
21885
2011-01-16T20:48:16.577
4
2098
<p>I recently bought a new laptop with an ATI Mobility Radeon 5470HD graphics card in it and installed Ubuntu. Everything works just fine, but at the startup, no Plymouth splash screen comes up, just a black screen with a white dash. The splash screen on shutdown works fine though.</p> <p>Does anybody know how to fix this so I can get some eyecandy? </p> <p>Thanks in advance!</p>
9032
3037
2011-01-16T21:03:34.110
2011-01-16T21:29:19.060
No Plymouth splash on startup?
[ "ati", "plymouth" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Plymouth doesn't work with binary released drivers....there's a solution but it involves a bit of legwork. For a scripted solution try this: <a href=\"http://www.webupd8.org/2010/10/script-to-fix-ubuntu-plymouth-for.html\" rel=\"nofollow\">http://www.webupd8.org/2010/10/script-to-fix-ubuntu-plymouth-for.html</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T21:29:19.060", "id": "21885", "lastActivityDate": "2011-01-16T21:29:19.060", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5768", "parentId": "21879", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Plymouth doesn't work with binary released drivers....there's a solution but it involves a bit of legwork. For a scripted solution try this: <a href=\"http://www.webupd8.org/2010/10/script-to-fix-ubuntu-plymouth-for.html\" rel=\"nofollow\">http://www.webupd8.org/2010/10/scri...
null
null
null
null
null
21880
1
21882
2011-01-16T20:56:01.217
6
9645
<p>On Ubuntu 10.10, I have recently started to experience this problem:</p> <p>For some reason Skype won't save any settings except "Sign in on startup". When Skype starts and tries to sign in it is unsuccessful (it shows incorrect password, in red) every time (I have provided the correct password).</p> <p>I always have to click to show contacts in groups, it does not remember it. Every time I have to go to options and update some notification settings.</p> <p>I know all these things should be "remembered" by Skype - this problem started only recently. I don't recall fiddling with any permissions that could have likely caused that.</p> <p>Do you know what the problem might be? I uninstalled (marking for complete configuration removal) and re-installed Skype, but it still remembers my username (why??).</p> <p>Can I find Skype configuration files on the filesystem somewhere and change permissions for them - or even better - edit the files to set what I want?</p>
5239
3037
2011-01-16T20:57:01.923
2011-01-16T21:21:37.127
Skype does not save user configuration
[ "10.10", "configuration", "skype" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-16T21:07:12.887", "id": "23612", "postId": "21880", "score": "0", "text": "Uninstall including configuration files will only purge the program's configuration files, but not user data in your `/home`-directory.", "userDisplayName": null, "userId": "3037" } ]
{ "accepted": true, "body": "<p>Rename your <code>~/.Skype</code> folder to something like <code>~/.Skype-old</code>.</p>\n\n<p>Now sign in to Skype fresh, and it will reset itself. You can now copy the contents from the old folder that you want to preserve to your new <code>~/.Skype</code> folder :).\nYou can also check the permissions of the files in that folder to ensure that Skype can read and write them correctly. If they seem correct and you still get problems, try running a disk check, which might fix any errors with the file-system (just in case)</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-16T21:14:07.623", "id": "23613", "postId": "21882", "score": "0", "text": "thanks, a good hint. But I don't want to remove all my chat history, bookmarked chats etc.", "userDisplayName": null, "userId": "5239" }, { "creationDate": "2011-01-16T21:18:42.247", "id": "23615", "postId": "21882", "score": "0", "text": "you won't lose bookmarked chats, maybe your chat history, but all you have to do is back it up.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-16T21:26:51.527", "id": "23619", "postId": "21882", "score": "2", "text": "I found how to do it. When I just deleted .Skype, I lost bookmarked chats + history. For my issue I deleted all xml and lock/lck files :) thanks", "userDisplayName": null, "userId": "5239" }, { "creationDate": "2011-01-16T21:33:19.423", "id": "23624", "postId": "21882", "score": "0", "text": "cool ^^ glad you got it working :D", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-16T21:00:42.567", "id": "21882", "lastActivityDate": "2011-01-16T21:21:37.127", "lastEditDate": "2011-01-16T21:21:37.127", "lastEditorDisplayName": null, "lastEditorUserId": "1992", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "21880", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>Rename your <code>~/.Skype</code> folder to something like <code>~/.Skype-old</code>.</p>\n\n<p>Now sign in to Skype fresh, and it will reset itself. You can now copy the contents from the old folder that you want to preserve to your new <code>~/.Skype</code> folder :).\nYou ...
null
null
null
null
null
21886
1
21887
2011-01-16T21:31:33.153
37
43487
<p>Is there a way to get java apps to use my gtk theme?</p>
1992
9781
2012-01-12T16:02:44.377
2019-09-04T10:12:48.110
How can I get a java apps to use the GTK+ theme?
[ "java", "themes", "gtk", "application-development" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2012-11-05T05:01:52.997", "id": "263108", "postId": "21886", "score": "1", "text": "Similar question for KDE/Qt: http://askubuntu.com/questions/6948/how-to-run-java-application-in-kde-with-qt-like-ui", "userDisplayName": null, "userId": "64389" }, { "creationDa...
{ "accepted": true, "body": "<p>You can try to set Java's default look and feel to GTK:</p>\n\n<p>Open a terminal ( Ctrl + Alt + T ) and paste the upper one for openjdk and the lower one for sun java .</p>\n\n<p><code>gksu gedit /usr/lib/jvm/java-6-openjdk/jre/lib/swing.properties</code></p>\n\n<p><code>gksu gedit /usr/lib/jvm/java-6-sun/jre/lib/swing.properties</code></p>\n\n<ul>\n<li><p>Follow the comment in that file and remove the hash sign, so it looks like:</p>\n\n<pre><code># uncomment to set the default look and feel to GTK\nswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel\n</code></pre></li>\n<li><p>Save and restart the java app.</p></li>\n</ul>\n\n<p>Before and after:</p>\n\n<p><img src=\"https://img.xrmb2.net/images/312793.png\"></p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-01-16T21:50:28.027", "id": "23629", "postId": "21887", "score": "1", "text": "didn't fix it, but still very useful for me :) thanks!", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2013-09-15T18:56:03.910", "id": "443013", "postId": "21887", "score": "2", "text": "Thanks. I used this as a tip but instead did; ```UIManager.setLookAndFeel(\"com.sun.java.swing.plaf.gtk.GTKLookAndFeel\");``` which does not require any configuration file editing.", "userDisplayName": null, "userId": "193187" }, { "creationDate": "2013-11-19T15:01:29.583", "id": "484630", "postId": "21887", "score": "0", "text": "@RolandiXor If this didn't work, that means the developer of the app hardcoded the look and feel. Nothing you can do about that, unless it is open-source. :(", "userDisplayName": null, "userId": "134848" }, { "creationDate": "2014-06-26T16:23:32.167", "id": "652645", "postId": "21887", "score": "1", "text": "It hepled me to solve \"jdk bold font\" bug. Thank you.", "userDisplayName": null, "userId": "28757" }, { "creationDate": "2017-05-09T11:37:46.617", "id": "1438064", "postId": "21887", "score": "0", "text": "Didn't fix for universalmediaserver on Ubuntu Mate 14.", "userDisplayName": null, "userId": "546652" }, { "creationDate": "2018-03-17T13:35:49.943", "id": "1648381", "postId": "21887", "score": "0", "text": "No dice on Ubuntu Mate, not even with OpenJDK Java 8 Policy Tool, which I don't believe it's hardcoded...", "userDisplayName": null, "userId": "282119" }, { "creationDate": "2020-04-04T07:39:12.407", "id": "2058352", "postId": "21887", "score": "0", "text": "swing.properties file seems to be ignored (open-jdk 8 & openjdk-11) even if you put swing.crossplatformlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel in it (which seems to be the correct variable to set).\n\nSetting _JAVA_OPTIONS in your environment (see below) seems more promising", "userDisplayName": null, "userId": "727936" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-16T21:39:36.143", "id": "21887", "lastActivityDate": "2011-06-24T12:29:18.303", "lastEditDate": "2017-03-09T18:04:15.430", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21886", "postTypeId": "2", "score": "29" }
[ { "accepted": true, "body": "<p>You can try to set Java's default look and feel to GTK:</p>\n\n<p>Open a terminal ( Ctrl + Alt + T ) and paste the upper one for openjdk and the lower one for sun java .</p>\n\n<p><code>gksu gedit /usr/lib/jvm/java-6-openjdk/jre/lib/swing.properties</code></p>\n\n<p><code>g...
null
null
null
null
null
21891
1
null
2011-01-16T22:13:49.497
0
788
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/15318/how-to-remove-the-unwanted-entries-from-the-boot-menu">How to remove the unwanted entries from the boot menu?</a> </p> </blockquote> <p>I guess I've got more than one ubuntu installation (either two or three) along with a windows 7 installation. Each of the ubuntu installations also list something extra (maybe like a safe mode?) within grub.</p> <p>Firstly, how do I remove the ubuntu installations I don't use? (how do I first identify the one I do use? I log into it after booting it, but how do I delete the others)</p> <p>Also, how do I leave just a Windows 7 option and an Ubuntu option?</p>
9023
-1
2017-04-13T12:23:44.677
2011-06-07T02:50:42.540
GRUB/BURG listing a lot of os's
[ "grub2", "dual-boot", "burg" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-01-16T22:27:08.263", "id": "23631", "postId": "21891", "score": "0", "text": "Duplicate of: [How to remove the unwanted entries from the boot menu?](http://askubuntu.com/questions/15318/how-to-remove-the-unwanted-entries-from-the-boot-menu)", "userDisplayName": null, ...
null
[ { "accepted": null, "body": "<p>just edit the file menu.lst located at /boot/grub</p>\n\n<p>but first you have to create a backup of this file using for example this command</p>\n\n<pre><code># cp /boot/grub/menu.lst menu.old\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwne...
null
null
2011-01-17T00:49:59.073
null
null
21892
1
22482
2011-01-16T22:25:23.430
5
5064
<p>I'm having a nasty problem with the Sound Menu on my Ubuntu 10.10 Installation. What happens is that the sound control icon is blocked, and I can't control the master volume.<br> If I try to get to the <em>Sound Preferences</em> I get a little Pop-Up Window saying:</p> <blockquote> <p>Waiting for Sound System to respond... </p> </blockquote> <p>Don't know what to do... apart of that, sound works great. </p> <p><img src="https://i.stack.imgur.com/oMOHa.png" alt="alt text"></p>
6664
114
2011-06-26T20:52:13.310
2011-06-26T20:52:13.310
"Waiting for Sound System to respond." error dialog
[ "10.10", "sound", "pulseaudio", "indicator-sound" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I managed to solve the problem myself.</p>\n\n<p>The problem was that, for some reason I don't know or remember, I was not the \"owner\" of my home folder, and because of that I couldn't kill the pulseaudio process... I realized that when Ubuntu tried to update the <code>.ICEauthority</code> file located in my home folder and had trouble with the permissions.</p>\n\n<p>Running the following command should solve the <code>.ICEauthority</code> and volume control not working for people with the same problem as me:</p>\n\n<pre><code>sudo chown \"user\":\"user\" /home/\"user\"\n</code></pre>\n\n<p>And thats it! :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-20T19:45:13.177", "id": "22482", "lastActivityDate": "2011-06-26T20:51:00.643", "lastEditDate": "2011-06-26T20:51:00.643", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "6664", "parentId": "21892", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Your <code>pulseaudio</code> daemon isn't running. Try to do <code>pulseaudio --start</code> from a terminal and see what happens.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-17T20:23:34.050", "id": "23778", "pos...
null
null
null
null
null
21895
1
21921
2011-01-16T23:32:34.360
3
4693
<p>I have a laptop with broken video card. It has two operating systems installed - Windows 7 and Ubuntu 10.10 Desktop Edition. </p> <p>It has GRUB to manage which operating system to boot up. Windows is default OS. And Windows fails to boot up without video card. I'm checking with ping to the ports which are shown as used by DHCP in my router. </p> <p>Normal boot of Ubuntu also fails and it restarts after a while. But when I choose (blindly, but checking HDD indicator and by counting button presses when GRUB menu appears) to boot second option of Ubuntu (rescue mode) it starts and I can ping it. But when I try to connect to it through SSH, I'm getting "connection refused" error from putty.</p> <p>I've took out HDD from my laptop already and inserted it to WD Passport case so now I can connect it to other computer to edit configuration files.</p> <p>How can I check if SSH server is working? How to enable it in rescue mode? Or better, how to disable video card to be required while booting Ubuntu in normal mode?</p>
9036
null
null
2011-03-04T12:19:05.577
How to start Ubuntu with no working video card?
[ "video", "configuration", "grub2", "graphics" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I'm partially guessing here - this would be a comment if it hadn't been too long for the box - but you could try: </p>\n\n<p><em>Starting the ssh deamon in rescue mode</em>. </p>\n\n<p>I don't expect this to work, as it may depend on other services that haven't been started yet (rescue mode is a very low-level state with a bare minimum of services running), but it's the quickest:\n<code># /etc/init.d/ssh start</code></p>\n\n<p>As you are working blindly you won't see any error messages, but you can obviously tell that it's working when you can ssh into the box.</p>\n\n<p><em>Disable the desktop and X server</em> </p>\n\n<p>Since rescue mode works, I'm guessing that the terminal doesn't require a working video card. In that case you should be able to disable anything related to graphics (desktop and X server), and the system might boot to a normal mode terminal-only state. SSH might already be running by then, or you can start it with <code>sudo service ssh start</code>.</p>\n\n<p>I don't have Ubuntu desktop so I can't give details on how to do that, but I believe X server and/or the desktop manager is started as a service. Have a look in <code>/etc/init.d</code> and <code>/etc/init</code>, and see the <a href=\"https://askubuntu.com/questions/19320/whats-the-recommend-way-to-enable-disable-services\">second reply to this question</a> for how to disable it.</p>\n\n<p>I don't know if this will work, but it might be worth a try.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-18T19:57:45.300", "id": "23926", "postId": "21921", "score": "0", "text": "Better answer for my problem is here: http://askubuntu.com/questions/22013/how-to-enable-ssh-server-in-recovery-mode/22017#22017\nIt's by Stefano Palazzo", "userDisplayName": null, "userId": "9036" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T04:05:40.653", "id": "21921", "lastActivityDate": "2011-01-17T04:05:40.653", "lastEditDate": "2017-04-13T12:24:13.310", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "2337", "parentId": "21895", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I'm partially guessing here - this would be a comment if it hadn't been too long for the box - but you could try: </p>\n\n<p><em>Starting the ssh deamon in rescue mode</em>. </p>\n\n<p>I don't expect this to work, as it may depend on other services that haven't been started y...
null
null
null
null
null
21897
1
null
2011-01-16T23:36:05.047
7
661
<p>Ubuntuone is correctly synchronizing selected files between two computers running Ubuntu 10.10. When I open Ubuntuone Preferences, Account tab, on one computer it does not display the usage, name e-mail or current plan. On the other computer all information is shown correctly. On the Devices tab the 2 computers are not shown. They do show correctly on the other computer. Any ideas on how to fix this problem. I have reinstalled Ubuntuone per this <strong><a href="https://wiki.ubuntu.com/UbuntuOne/FAQ/HowDoICompletelyRemoveAndReinstallUbuntuOne" rel="nofollow">link</a></strong>. </p> <p>I have installed gir1.0-soup2.4 and magicicada. I have downloaded watgui.py but I don't know how to run it, do I need to put it in a certain directory?? With magicicada I can see traffic when I change a file. Let me know what you would like to look at.</p> <p>I have run python watgui.py with the following results:</p> <pre><code> "username": "https://login.ubuntu.com/+id/C3b7HxG", "openid": "https://login.ubuntu.com/+id/C3b7HxG", "first_name": "", "last_name": "James Schurz", "features": [ "couch_storage", "file_storage", "notes_sync" ], "couchdb": { "host": "https://couchdb.one.ubuntu.com", "root": "https://couchdb.one.ubuntu.com/u/a76/8a9/662864", "dbpath": "u/a76/8a9/662864" }, "couchdb_root": "https://couchdb.one.ubuntu.com/u/a76/8a9/662864", "email": "pjschurz@yahoo.com", "current_plan": "Ubuntu One Basic (2 GB)\nTotal storage: 2 GB", "nickname": "James Schurz", "id": 662864, "subscription": { "upgrade_available": true, "description": "Ubuntu One Basic (2 GB)", "upgrade_option": { "upgrade_url": "https://one.ubuntu.com/account/subscription/591444/upgrade/662864/", "price": 2.9900000000000002, "description": "20-Pack with 20 GB (monthly)", "currency": "USD", "id": 591444, "name": "20-Pack with 20 GB (monthly)" }, "trial": false, "started": "2010-09-06T19:27:10Z", "is_paid": false, "expires": null, "qty": 1, "price": 0.0, "currency": "USD", "id": 591444, "name": "Ubuntu One Basic (2 GB)" } </code></pre> <p>Reported out as a <a href="https://bugs.launchpad.net/ubuntuone-client/+bug/708902" rel="nofollow">bug #708902</a>.</p>
9160
235
2011-01-28T16:52:04.723
2017-03-14T14:05:39.387
Ubuntu One Preferences does not show usage, name, e-mail, current plan
[ "10.10", "ubuntu-one" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2017-03-14T14:07:50.623", "id": "1397185", "postId": "21897", "score": "0", "text": "I'm voting to close this question as off-topic because Ubuntu One is dead.", "userDisplayName": null, "userId": "25798" } ]
null
[ { "accepted": null, "body": "<p>That's very strange. The information (both the account info such as email and name, and the devices) is pulled over the network doing an oauth-signed REST request, using the same token the <code>syncdaemon</code> uses to connect.</p>\n\n<p>Could you install <a href=\"http://p...
null
null
2017-03-14T14:07:50.623
null
null
21899
1
21900
2011-01-17T01:29:57.700
2
670
<p>Recently I decided to test <strong>natty</strong>, so i download it and try to install it on VirtualBox <em>(v4.0 - 3D Acceleration Enabled)</em> but have problem in using unity <em>(It says to change my desktop to classic...)</em><br> Now I want to install it on my PC, so I came here to ask is it safe to do that?</p>
5034
235
2011-01-17T01:52:10.040
2011-01-17T01:52:27.543
Is it safe to install ubuntu natty daily build beside maverick?
[ "11.04" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Sure! </p>\n\n<p>It's safe when you resize your partition to have about 20 to 30 GB unused space. \nThen you install from scratch using this unused space, leaving your system untouched. Just don't mess up your partition names during this process.\nIf done right you'll get a dual boot system that way!</p>\n\n<p>There should be an option within the installer to resize your partition during the install process if you start the installer from the live cd. Be careful when the bootmanager (grub) gets it's entries, not to mess it up. But even this would be easy to fix afterwards. </p>\n\n<p>BUT: </p>\n\n<p>If you are not familiar with the install process I STRONGLY advise to try the whole procedure of the parallel installation on your Virtualbox disk (the one you already have a natty system running on) BEFORE running on your productive system! \nAlso remeber: Natty is still alpha status, so I would suggest a test run on a virtualbox disk in any case!</p>\n\n<p>Good Luck, Have Fun!</p>\n\n<p>cya, piedro</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-01-17T06:08:20.320", "id": "23664", "postId": "21900", "score": "1", "text": "-1: What makes you so sure, that a buggy application wouldn't be able to screw up data in the other partitions?", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-17T15:20:24.387", "id": "23730", "postId": "21900", "score": "0", "text": "Well, you're theoretically right but it's very unlikely that an application (talking about standard programs) working in one partition is messing up another one. So the risk lies in the partition resizer (parted?), right? And plz note that's why I strongly suggest a test run of a parallel install on a virtual machine. I don't get your point.", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2011-01-17T15:21:25.353", "id": "23732", "postId": "21900", "score": "0", "text": "If you have some insight in some known risk involved plz let us know! Thx, piedro", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2011-01-17T19:34:47.897", "id": "23775", "postId": "21900", "score": "0", "text": "The only thing problem I had was easily fixed - I ran 'sudo apt-get upgrade` this morning and had my 10.10 install disappear from the grub menu. I mounted the 10.10 partition and ran 'sudo update-grub` and the problem was fixed. That just goes to show you that if you don't know what might (or might not) be causing something, then you probably shouldn't be screwing around with Natty *at this point* - by the time we hit Alpha 2, it'll be easier to troubleshoot.", "userDisplayName": null, "userId": "6005" }, { "creationDate": "2011-01-18T10:24:39.530", "id": "23843", "postId": "21900", "score": "0", "text": "I think the idea was not to upgrade but rather to make a fresh install - just hosted on the same computer ... without screwing up the other OS (maverick in this case) ...", "userDisplayName": null, "userId": "3275" }, { "creationDate": "2011-01-18T20:25:46.223", "id": "23934", "postId": "21900", "score": "0", "text": "the only problem I have is grub! when natty installed grub list was ok but maverick was not the default OS (while I select maverick to be default during natty installation, but I'm not so sure), so I do `sudo grub-install --recheck --root-directory=/media/maverick /dev/sda` in natty, and reboot. but grub didn't run and said \"arguments are not set\" or something like that. and now I haven't access to natty by grub!", "userDisplayName": null, "userId": "5034" }, { "creationDate": "2011-03-09T20:39:00.380", "id": "33146", "postId": "21900", "score": "0", "text": "Sry benzadesh, I didN_t see your comment until now... hope you fixed it. IF not yet I recommend the rescatux boot cd, you can fix everything with that: http://www.supergrubdisk.org/", "userDisplayName": null, "userId": "3275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T01:47:22.213", "id": "21900", "lastActivityDate": "2011-01-17T01:52:27.543", "lastEditDate": "2011-01-17T01:52:27.543", "lastEditorDisplayName": null, "lastEditorUserId": "3275", "ownerDisplayName": null, "ownerUserId": "3275", "parentId": "21899", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Sure! </p>\n\n<p>It's safe when you resize your partition to have about 20 to 30 GB unused space. \nThen you install from scratch using this unused space, leaving your system untouched. Just don't mess up your partition names during this process.\nIf done right you'll get a d...
null
null
null
null
null
21902
1
21907
2011-01-17T02:38:30.673
8
7302
<p>Is it possible to run Windows 7 64 bit from a 32bit ubuntu OS? </p> <p>I can reinstall Ubuntu as a 64bit OS, but would prefer not to if it is not necessary.</p>
752
235
2011-01-17T14:46:47.523
2012-08-19T01:19:03.717
Run 64bit OS in Virtual Box from 32bit Ubuntu
[ "64-bit", "virtualbox" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>From VB help:</p>\n\n<blockquote>\n <p>VirtualBox supports 64-bit guest\n operating systems, even on 32-bit host\n operating systems, provided that the\n following conditions are met:</p>\n \n <p>1.-You need a 64-bit processor with hardware virtualization support (see\n Section 10.3, “Hardware vs. software\n virtualization”).</p>\n \n <p>2.-You must enable hardware virtualization for the particular VM\n for which you want 64-bit support;\n software virtualization is not\n supported for 64-bit VMs.</p>\n \n <p>3.-If you want to use 64-bit guest support on a 32-bit host operating\n system, you must also select a 64-bit\n operating system for the particular\n VM. Since supporting 64 bits on 32-bit\n hosts incurs additional overhead,\n VirtualBox only enables this support\n upon explicit request.</p>\n \n <p>On 64-bit hosts (which typically come\n with hardware virtualization support),\n 64-bit guest operating systems are\n always supported regardless of\n settings, so you can simply install a\n 64-bit operating system in the guest.</p>\n</blockquote>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T03:03:07.647", "id": "21907", "lastActivityDate": "2011-01-17T03:03:07.647", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8851", "parentId": "21902", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>If your BIOS and processor support it, then yes. I'd suggest using hardinfo to check your processor's features. However you are better off using the 64bit OS as host anyway.</p>\n\n<p>Even if you processor supports VTx your BIOS may not (many HP laptops for example do not all...
null
null
null
null
null
21903
1
21938
2011-01-17T02:47:45.467
14
3864
<p>Is there anywhere one can get a copy of Ubuntu's man pages in e-reader (preferably Kindle/mobi, epub can be handled)format?</p>
9045
null
null
2019-11-06T10:41:59.520
Man pages offline for e-reader?
[ "manpage" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This bash command will dump HTML files for every man page on the system. You'll need to install the <code>groff</code> package first, then <code>cd</code> to an empty directory and run:</p>\n\n<pre><code>for f in `ls -1 /usr/share/man/man*`; do n=`echo $f | sed s/[.].*[.]gz//`; man -Thtml $n &gt; $n.html ; done\n</code></pre>\n\n<p>This will cycle through all of the files in the <code>/usr/share/man</code> directory, strip off the section number and the extension using <code>sed</code>, then call <code>man</code> to render the manpage to HTML (<code>man -Thtml</code> in turn calls <code>groff</code>, which is why you need it installed first), storing the result in an html file with the same name as the page. It will take a while to complete, and <code>groff</code> throws some warnings about line breaks, but when it finishes, you will have all of your man pages in HTML format.</p>\n\n<p>Most e-readers can handle HTML files, but if yours doesn't, you can use calibre to convert the HTML files to mobi or epub or any other format you choose.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-17T11:32:22.180", "id": "23692", "postId": "21938", "score": "1", "text": "You can try also `man -Tdvi` and `dvi2pdf` after that to get a bunch of PDFs.", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-01-17T14:15:19.610", "id": "23720", "postId": "21938", "score": "0", "text": "Sounds excellent. I knew there was a way to get PDF output, but PDFs don't reflow well", "userDisplayName": null, "userId": "9045" }, { "creationDate": "2011-01-18T02:01:37.567", "id": "23803", "postId": "21938", "score": "0", "text": "I've had pretty good luck using Calibre to convert pdf's for my kindle and android. (Text and html convert well, of course.)", "userDisplayName": null, "userId": "8844" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T07:47:57.220", "id": "21938", "lastActivityDate": "2011-01-17T07:47:57.220", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "194", "parentId": "21903", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>all man pages are located at</p>\n\n<pre><code>/usr/share/man\n</code></pre>\n\n<p>But they're compressed in .gz files.\nAlso there's a <a href=\"http://www.kernel.org/doc/man-pages/online_pages.html\" rel=\"nofollow\">web</a> where you can see all man pages online.\nI guess ...
null
null
null
null
null
21910
1
null
2011-01-17T01:41:21.867
7
7317
<p>I am using Ubuntu 10.04 as ftp server, when I upload file using Filezilla client, I always got "550 Permission denied".</p> <p>How to configure my server?</p>
9049
19490
2011-09-27T06:39:54.223
2012-01-07T14:45:04.967
How to configure FTP server?
[ "server", "ftp" ]
5
5
CC BY-SA 3.0
[ { "creationDate": "2011-01-17T12:26:33.037", "id": "23700", "postId": "21910", "score": "0", "text": "I have changed the permission of my folder to 777 .", "userDisplayName": null, "userId": "9049" }, { "creationDate": "2011-01-17T12:58:22.197", "id": "23707", "postId": "...
null
[ { "accepted": null, "body": "<p>Probably you has to set the folder's permission for that folder properly\nFor example:\nIf you want to upload a file to folder \"testing\" using user \"MyUser\" you have to set write and read permission to MyUser in Testing Folder.</p>\n", "commentCount": "0", "commen...
null
null
null
null
Tom
21914
1
22166
2011-01-17T03:37:11.510
25
62314
<p>I do not want NetworkManager to list or manipulate my wireless card. Can I hide its interface from NetworkManager somehow?</p> <p>I have tried adding this in <code>/etc/network/interfaces</code>,</p> <pre><code>iface wlan0 inet static address 192.168.1.101 netmask 255.255.255.0 gateway 192.168.1.1 wireless-essid Synaptotagmin pre-up wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf post-down killall -q wpa_supplicant </code></pre> <p>and this in <code>/etc/NetworkManager/nm-system-settings.conf</code>,</p> <pre><code>[main] plugins=ifupdown,keyfile [ifupdown] managed=false [keyfile] unmanaged-devices=/org/freedesktop/Hal/devices/net_00_19_e0_57_86_af </code></pre> <p>but NetworkManager Applet still lists and allows me to connect to wireless networks.</p>
1859
1859
2011-01-17T19:47:03.297
2018-09-03T07:27:20.300
How can I make NetworkManager ignore my wireless card?
[ "wireless", "configuration", "network-manager", "interface" ]
7
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-18T03:20:07.487", "id": "23810", "postId": "21914", "score": "0", "text": "Do you want other applications to be able to see your wireless card? Are you just trying to manually control the settings via your interfaces file or some non-NetworkManager mechanism? I assume...
{ "accepted": true, "body": "<p>According to <a href=\"https://wiki.gnome.org/Projects/NetworkManager/SystemSettings/jessie\">Gnome Wiki</a>, the syntax in <code>/etc/NetworkManager/NetworkManager.conf</code> (in older versions it was <code>/etc/NetworkManager/nm-system-settings.conf</code>) is different than what I'd read <a href=\"https://wiki.archlinux.org/index.php/NetworkManager#Ignore_specific_devices\">Arch Linux Wiki</a>. It should be:</p>\n\n<pre><code>[main]\nplugins=ifupdown,keyfile\n\n[ifupdown]\nmanaged=false\n\n[keyfile]\nunmanaged-devices=mac:00:19:e0:57:86:af\n</code></pre>\n\n<p>This configuration makes NetworkManager oblivious to the existence of my wireless card, but still allows me to control it using other methods.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-04-16T22:36:45.657", "id": "146323", "postId": "22166", "score": "5", "text": "the conf files seem to have changed in later releases\nim using oneiric.\ni did the same change but in the file /etc/NetWorkManager/NetworkManager.conf", "userDisplayName": null, "userId": "36261" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-18T19:45:06.483", "id": "22166", "lastActivityDate": "2015-06-17T09:02:54.130", "lastEditDate": "2015-06-17T09:02:54.130", "lastEditorDisplayName": null, "lastEditorUserId": "384502", "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "21914", "postTypeId": "2", "score": "31" }
[ { "accepted": null, "body": "<p>Just create a <code>.sh</code> file containing <code>killall -q wpa_supplicant</code> and execute it using cron when you log in.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "201...
null
null
null
null
null
21915
1
null
2011-01-17T03:42:21.567
2
118
<p>The mouse stops and moves jerkily, and sometimes won't register clicks. Gnome stopped responding a few hours ago--everything looks fine, but no clicks on menu items do anything.</p> <p>I've been running Ubuntu 10.10 since it was released; 8GB RAM and a 60GB SSD. I haven't added any hardware or software recently except the Ubuntu recommended updates; the last thing was the bitcoin client a week ago.</p> <p>The mouse works on other computers, rebooting does nothing, top shows 3 CPU cores free and over a gig of ram left. I don't know what else to look at.</p>
3679
3679
2011-01-17T23:14:22.513
2011-01-17T23:57:07.920
Nonresponsive UI starting a few days ago; no obvious resource shortage
[ "gnome" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T10:33:24.447", "id": "23682", "postId": "21915", "score": "0", "text": "So in otherwords, you've got a frozen GNOME. I get that all the time. Were you doing anything important that wasn't saved? If not, then pull the plug and reboot. Happens to me about once or twic...
null
[ { "accepted": null, "body": "<p>If you recently upgraded to the 2.6.35-25 kernel this past week, it's causing some folks including myself a lot of problems, but not exactly what you are describing (CPU overloading):</p>\n\n<p><a href=\"https://bugs.launchpad.net/ubuntu/+source/linux/+bug/703553\" rel=\"nofo...
null
null
null
null
null
21917
1
null
2011-01-17T03:44:05.757
3
1564
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/75887/how-do-i-add-a-canon-pixma-mx860-network-printer">How do I add a Canon Pixma MX860 network printer?</a> </p> </blockquote> <p>Were do I go or click on to bring up system so I can follow the steps to add a wireless printer. A Canon PIXMA MX860 ?</p>
null
-1
2017-04-13T12:23:28.223
2011-02-16T05:15:12.993
Adding a Canon PIXMA MX860 wireless printer?
[ "printing", "canon" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-12-20T20:38:26.090", "id": "102072", "postId": "21917", "score": "1", "text": "Did you manage to connect it? I have the same problem. Set it up as it is described in CUPS documentation but still no luck.", "userDisplayName": null, "userId": "13013" } ]
null
[ { "accepted": null, "body": "<p>System->Administration->Printing</p>\n\n<p>Click the \"Add\" button in the toolbar; it will guide you through the rest.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-03-05T12:09:11.067", "id": "32377", "postId": "2191...
null
null
2012-04-01T09:44:06.700
null
Rick
21923
1
21927
2011-01-17T04:59:40.633
16
109958
<p>I don't have a .Xauthority file in my home folder. I want to create it, please tell me the steps to do so in ubuntu 10.10.</p> <p>Thank You!</p>
9051
9051
2011-01-17T07:54:32.813
2015-12-27T21:41:51.020
How do I create the .Xauthority file?
[ "xorg" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T12:39:54.993", "id": "23704", "postId": "21923", "score": "0", "text": "Maybe it would help, if you tell us why you want/need to create this file.", "userDisplayName": null, "userId": "3037" } ]
{ "accepted": true, "body": "<p>In Ubuntu 10.10 there's no longer a <code>~/.Xauthority</code> file. Instead you'll find the equivalent in</p>\n\n<p><code>/var/run/gdm/auth-for-&lt;USER&gt;-&lt;RANDOM_CHARACTERS&gt;/database</code></p>\n\n<p>which will be re-created with new random characters on every session start. You can get its name via the <code>$XAUTHORITY</code> environment variable.</p>\n\n<p>If you need a <code>~/.Xauthority</code> file to be present, I guess you can simply create a symbolic link to <code>$AUTHORITY</code> on every session start:</p>\n\n<ol>\n<li><p>Open <code>System &gt; Preferences &gt; Startup Applications</code></p></li>\n<li><p>Click on <code>Add</code> :<br></p>\n\n<ul>\n<li>Name: <code>Xauthority</code></li>\n<li>Command: <code>/bin/bash -c 'ln -s -f \"$XAUTHORITY\" ~/.Xauthority'</code></li>\n<li>Comment: <code>Creates a symbolic link from ~/.Xauthority to $XAUTHORITY</code></li>\n</ul>\n\n<p>and add the entry by clicking on <code>Add</code>.</p></li>\n<li><p>Now every time you log in, it should create the link to the current authority file.</p></li>\n</ol>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-01-17T10:38:05.770", "id": "23685", "postId": "21927", "score": "0", "text": "On my 10.10, there is no `~/.Xauthority` by default.", "userDisplayName": null, "userId": "627" }, { "creationDate": "2011-01-17T12:52:05.207", "id": "23705", "postId": "21927", "score": "0", "text": "@loevborg: Thanks, I totally missed that. Updated my answer.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-01-17T13:15:14.783", "id": "23710", "postId": "21927", "score": "0", "text": "Thanks a lot guys problem is solved, actually problem was setting the wrong ENV variable in the script for $DISPLAY", "userDisplayName": null, "userId": "9051" }, { "creationDate": "2014-02-03T05:21:01.913", "id": "534566", "postId": "21927", "score": "3", "text": "On my 12.04, there's still an `~./Xauthority` file...", "userDisplayName": null, "userId": "13217" }, { "creationDate": "2018-04-20T11:07:04.223", "id": "1668580", "postId": "21927", "score": "0", "text": "I'm unsure if this answer is correct anymore. I can say that as of April 2018 my `Ubuntu 16.04` still expects to have an `~./Xauthority` file", "userDisplayName": null, "userId": "13693" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T05:57:46.773", "id": "21927", "lastActivityDate": "2011-01-17T13:06:34.533", "lastEditDate": "2011-01-17T13:06:34.533", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "21923", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>In Ubuntu 10.10 there's no longer a <code>~/.Xauthority</code> file. Instead you'll find the equivalent in</p>\n\n<p><code>/var/run/gdm/auth-for-&lt;USER&gt;-&lt;RANDOM_CHARACTERS&gt;/database</code></p>\n\n<p>which will be re-created with new random characters on every sessi...
null
null
null
null
null
21924
1
21926
2011-01-17T05:19:03.917
6
2019
<p>In Thunar I could easily switch between Vista-style graphical location bar and editable textual location bar (which doesn't look so eye-candy but is far more convenient for me). Can I configure this in Nautilus?</p>
2390
null
null
2011-12-07T14:41:03.073
How to make Nautilus location bar editable?
[ "nautilus" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li>If you want to enable location bar for current session then Press <kbd>Ctrl</kbd>+<kbd>L</kbd>\n<img src=\"https://i.stack.imgur.com/3txzB.png\" alt=\"alt text\"> </li>\n<li><p>To make it permanent you have to make changes in gconf-editor.Press <kbd>Alt</kbd>+<kbd>F2</kbd> and type <strong>gconf-editor</strong>.<br>\n<img src=\"https://i.stack.imgur.com/SJjcm.png\" alt=\"alt text\"></p></li>\n<li><p>Navigate to apps <strong>→</strong> nautilus <strong>→</strong> preferences and put a check mark in \"always_use_location_entry\".<br>\n<img src=\"https://i.stack.imgur.com/Drmtx.png\" alt=\"alt text\"></p></li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T05:25:28.933", "id": "21926", "lastActivityDate": "2011-01-17T05:53:16.407", "lastEditDate": "2011-01-17T05:53:16.407", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "21924", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<ul>\n<li>If you want to enable location bar for current session then Press <kbd>Ctrl</kbd>+<kbd>L</kbd>\n<img src=\"https://i.stack.imgur.com/3txzB.png\" alt=\"alt text\"> </li>\n<li><p>To make it permanent you have to make changes in gconf-editor.Press <kbd>Alt</kbd>+<k...
null
null
null
null
null
21928
1
21937
2011-01-17T06:15:18.940
6
207
<p>One of the problems with recommending Ubuntu to potential future users, especially those not particularly given to technical endeavours, is that there is a chance that upgrades will break their machine, and they'll have to pay or otherwise coerce some knowledgeable person into fixing them.</p> <p>In my limited experience of running successive versions of Ubuntu since 8-something on a couple of different laptops, this chance is quite high. I'm not sure if I'm just unlucky with the hardware that I'm using, or if it's a result of the higher-than-average number of packages I have installed, or if upgrades are just typically problematic.</p> <p>So I'd like to know the likelihood, for a casual user, of doing a release upgrade, for example from 10.04 to 10.10, without experiencing any regression bugs.</p> <p>Obviously this is dependent on the hardware that people are running. Canonical seems to be making some efforts towards collecting data on this, for example with the "I am affected by this bug" checkbox on their issue tracker, and with the laptop compatibility reports, but I've not seen anything comprehensive.</p> <p>I'm hoping for an objective reference here, for example a study carried out by relatively unbiased individuals. However, anecdotal evidence is probably useful too.</p>
3865
235
2011-01-17T11:20:26.670
2011-01-17T11:20:26.670
Probability of trouble-free upgrade?
[ "hardware", "upgrade", "updates" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T06:58:16.113", "id": "23669", "postId": "21928", "score": "1", "text": "\"anecdotal evidence\" is not evidence, it's a term used for supposed evidence that turns out to be *subjective* and unreliable :) I'm not normally this grumpy about it, and I see you've done we...
{ "accepted": true, "body": "<p>I'd love for someone to come up with some more numbers on this, here's my little analysis:</p>\n\n<p>There are around 100 bugs tagged \"regression-release\", that are of \"High\" importance. A further three are marked \"critical\", two of those affect a bunch of specific ThinkPad models.</p>\n\n<ul>\n<li><p>Have a look at the <a href=\"http://reports.qa.ubuntu.com/reports/regression/regression_tracker.html\" rel=\"nofollow\"><strong>regression tracker</strong></a>, note only the ones that are tagged \"regression-release\". </p>\n\n<p>There are quite a lot of them, of course, but then the average bug affects only a few users (now that's a number I'd like to know). Note that pretty much all of the 'serious' bugs have to do with some specific piece of hardware, and thus wouldn't affect \"well supported\" hardware platforms. </p></li>\n<li><p>Take the time to sort this list by importance and read some of the descriptions. To me at least, many of them appear very minor, or affect only a small set of users. But I can't be the judge of that.</p></li>\n</ul>\n\n<p>The likelihood of a normal user experiencing a release upgrade regression is almost impossible to estimate. The hardware platforms vary immensely.</p>\n\n<ul>\n<li>Note the affected packages, this will give you an indication as to the likelihood of a regression affecting your specific configuration. You'll notice many of them are filed against 'linux', and most of those are driver issues. </li>\n</ul>\n\n<p>In my <em>experience</em>, everything works perfectly all the time. See how worthless that information is. ;-)</p>\n\n<p>I fear that's all I've got. It's really not a problem that is discussed much, which is why I have to doubt it exists at all. People usually only investigate such things in detail, create comprehensive statistical analysis, if many users are affected; due to the way Canonical and the community test before they release, this <em>appears to be</em> rare. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T07:31:52.917", "id": "21937", "lastActivityDate": "2011-01-17T07:31:52.917", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "21928", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>I'd love for someone to come up with some more numbers on this, here's my little analysis:</p>\n\n<p>There are around 100 bugs tagged \"regression-release\", that are of \"High\" importance. A further three are marked \"critical\", two of those affect a bunch of specific Thin...
null
null
null
null
null
21929
1
null
2011-01-17T06:15:19.523
3
4464
<p>I have got this issue with Ubuntu 10.10. I have been with Ubuntu 8.04 and then decided to try out Ubuntu 10.10 . </p> <p>I booted with a LiveCD and was able to configure the wireless network painlessly using the livecd. So happily I installed Ubuntu 10.10. As soon as Ubuntu came up it detected the wireless network and I was able to assign a static IP to eth1 (i dont use DHCP option on my ADSL router) and enter a wap key and use <code>pppoeconf</code> to configure the dialer. The net was on and I was able to surf the net. All hunky dory so far. However on the next boot the fun started. It did not detect the wireless network. I could not see the network manager icon in the systray. I used ifconfig and saw that the entry for eth1 was missing. I used <code>ifup eth1</code> and it said that eth1 was already up . </p> <p>Then I installed wifi-radar. Wifi-Radar detected the wireless network. I configured wifi-radar for the detected wireless network , set the wap driver as wext and used the manual IP settings. However on clicking connect wifi-radar started looking for a DHCP IP , needless to say it failed. For the love of god I cannot understand why wifi-radar is using DHCP when I have specified manual settings . </p> <p>Next I decided to use the wired network to surf the net looking for a solution . So I plugged in the network cable from my modem , it detected the plugged in connection , I configured eth0 , used pppoeconf and connected to the net. Then I foolishly decided to reboot my PC. And wonders of wonders , the same problem appeared. I cannot see eth0 in my ifconfig anymore. I used pon to start the dsl-provider connection and it said something about network error or something . Now my ifconfig shows only lo , both eth0 and eth1 have disappeared. Can anybody help me on this? </p> <p>Is it a problem with ipv6 , if so how do you disable ipv6 on Ubuntu 10.10 ? OR is this is a known issue with Ubuntu 10.10?</p> <p>P.S.</p> <ol> <li>I tried Linux mint 10 and had the same issue. On rebooting wireless network was not getting detected . </li> <li>I have made myself the administrator so that there is no issue of rights or anything.</li> </ol>
9054
19490
2011-09-13T06:40:00.670
2015-10-05T11:53:20.077
Wired and Wireless Network Issues with PPPoE
[ "10.10", "wireless" ]
4
5
CC BY-SA 3.0
[ { "creationDate": "2011-01-17T10:26:43.987", "id": "23681", "postId": "21929", "score": "1", "text": "what's with the downvote favorite remark? up/down votes aren't supposed to be about if you are \"happy\" about an issue, but if a question is constructive. this appears to be a legitimate conc...
null
[ { "accepted": null, "body": "<p>Make sure you've read the Ubuntu documentation on Wireless troubleshooting, which is available at <a href=\"https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide/\" rel=\"nofollow\">https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide/</a>...
null
0
null
null
null
21931
1
21933
2011-01-17T06:30:53.337
10
59809
<p>On a colleagues computer, everytime I use a sudo command, I get this error:</p> <p><code>sudo: must be setuid root</code></p> <p>I tried various things mentioned on the internet, like changing the permissions to 4755 from a live cd, but even this command from a live-cd </p> <p><code>sudo chmod 4755 /media/device/usr/bin/sudo</code></p> <p>gives the same error.</p> <p><strong>EDIT:</strong> The colleague told me that he executed this command, god knows why :/</p> <p><code>sudo chmod -R 777 /</code> or <code>sudo chmod -R 777</code> He isnt exactly sure.</p>
3778
5691
2011-01-17T06:39:24.943
2019-07-23T13:04:13.427
Error after sudo-ing "sudo: must be setuid root"
[ "permissions", "sudo", "chmod" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T06:57:14.147", "id": "23668", "postId": "21931", "score": "0", "text": "Can you post the output of `ls -l /usr/bin/sudo` ?", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-01-17T07:03:08.820", "id": "23670", "postId": "2...
{ "accepted": true, "body": "<ul>\n<li><p>Reboot the computer,choose recovery console and type the following commands</p>\n\n<p><code>chown root:root /usr/bin/sudo</code></p>\n\n<p><code>chmod 4755 /usr/bin/sudo</code></p></li>\n<li><p>Reboot the machine.</p></li>\n<li><p>Also have a look at this <strong><a href=\"http://www.psychocats.net/ubuntu/fixsudo#recoverymode\">link</a></strong> for fixing broken sudo.</p></li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-17T06:45:26.717", "id": "23666", "postId": "21933", "score": "3", "text": "See how to [Boot into recovery mode](http://www.psychocats.net/ubuntu/fixsudo#recoverymode).", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2014-01-02T15:02:49.420", "id": "511504", "postId": "21933", "score": "2", "text": "I was able to do this by logging in as root without the recovery console, if you have that available.", "userDisplayName": null, "userId": "58025" }, { "creationDate": "2024-02-18T20:26:41.903", "id": "2637908", "postId": "21933", "score": "0", "text": "Why is this the accepted answer? This will fix `sudo`, but won't fix the infinitely many other things that were broken on the system.", "userDisplayName": null, "userId": "1597101" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T06:38:22.883", "id": "21933", "lastActivityDate": "2011-01-17T07:10:16.383", "lastEditDate": "2011-01-17T07:10:16.383", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "21931", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<ul>\n<li><p>Reboot the computer,choose recovery console and type the following commands</p>\n\n<p><code>chown root:root /usr/bin/sudo</code></p>\n\n<p><code>chmod 4755 /usr/bin/sudo</code></p></li>\n<li><p>Reboot the machine.</p></li>\n<li><p>Also have a look at this <strong><a...
null
null
null
null
null
21934
1
26820
2011-01-17T06:42:46.953
15
17326
<p>Currently, I am using the Unity Qt panel in my Gnome desktop, and when I press the Windows key, the Unity's dash launches, and I can't use any compiz based shortcuts. </p> <p>Same behaviour is exhibited when I log in to Unity 2D as well, as the Windows key launches the dash.</p> <p>I have no desire to change my Compiz shortcuts, so is there any way to change the keyboard mapping of Unity 2D's dash to something other or disable this shortcut completely?</p>
3602
235
2012-10-22T18:43:39.240
2017-02-26T11:28:44.190
How to change the binding of Windows key which runs Unity's Dash?
[ "keyboard", "unity-2d", "qt" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can disable the super key using the command:</p>\n\n<pre><code>gconftool --set /desktop/unity/launcher/super_key_enable --type=bool 0\n</code></pre>\n\n<p>(Since GNOME 3 settings are in dconf instead of gconf, and unity became a plugin. The method thus became: <code>dconf write /org/compiz/profiles/unity/plugins/unityshell/show-launcher '\"\"'</code>)</p>\n\n<p>Then you can define a keyboard shortcut with your preferred method to launch the following command:</p>\n\n<pre><code>dbus-send --type=method_call --dest=com.canonical.Unity2d /Dash com.canonical.Unity2d.Dash.activateHome\n</code></pre>\n\n<p>This will trigger Unity Home Dash</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-17T14:46:04.993", "id": "29502", "postId": "26820", "score": "4", "text": "I mapped it to <caps_locks>", "userDisplayName": null, "userId": "11016" }, { "creationDate": "2011-11-24T13:21:21.727", "id": "93057", "postId": "26820", "score": "1", "text": "That launch command didn't work for me, I had to use `--dest=com.canonical.Unity2d.Dash` when using the daily build for Unity 2D.", "userDisplayName": null, "userId": "21548" }, { "creationDate": "2012-05-11T09:14:08.760", "id": "161074", "postId": "26820", "score": "0", "text": "I guess this method doesn't work anymore in 12.04?", "userDisplayName": null, "userId": "17057" }, { "creationDate": "2013-11-18T14:03:21.203", "id": "483935", "postId": "26820", "score": "0", "text": "Unity 2d is not available anymore. How to open a specific lens using dbus in unity 3d?", "userDisplayName": null, "userId": "11112" }, { "creationDate": "2016-05-13T07:03:57.970", "id": "1152934", "postId": "26820", "score": "0", "text": "Ubuntu 14.04 does not work.", "userDisplayName": null, "userId": "381623" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-17T14:43:51.387", "id": "26820", "lastActivityDate": "2014-01-03T06:53:04.093", "lastEditDate": "2014-01-03T06:53:04.093", "lastEditorDisplayName": null, "lastEditorUserId": "188742", "ownerDisplayName": null, "ownerUserId": "11016", "parentId": "21934", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>It is not planned for now to make it configurable though it is planned to deactivate that shortcut by default, see <a href=\"https://bugs.launchpad.net/unity-2d/+bug/705076\" rel=\"nofollow\">bug #705076</a></p>\n", "commentCount": "0", "comments": [], "communityO...
null
null
null
null
null
21935
1
null
2011-01-17T07:06:25.930
4
1474
<p>When trying to Activate, Broadcom B43legacy wireless driver I get the following error,</p> <pre><code>SystemError: installArchives() failed. </code></pre> <p>Please help.</p>
null
866
2011-02-09T19:41:42.710
2012-06-08T14:33:52.470
Why does "Additional Drivers" Fail?
[ "10.10", "drivers", "broadcom" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I've found these bug reports:</p>\n\n<ul>\n<li><a href=\"https://bugs.launchpad.net/ubuntu/+source/jockey/+bug/626320\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/jockey/+bug/626320</a></li>\n<li><a href=\"https://bugs.launchpad.net/ubuntu/+source/jockey/+bug/...
null
null
null
null
rwdubs reviews
21939
1
21943
2011-01-17T08:11:24.710
10
1264
<p>I keep typing in the wrong place because of the pad getting touched while I am typing causing a click that re-place the cursor in another position. In Windows, I can easily disable that so the pad is only used to move the mouse cursor, but I didn't find similar option in Ubuntu. Any help?</p>
7280
null
null
2012-05-01T17:09:42.250
Disable pad click
[ "laptop", "touchpad" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Isn't this doing what you want?</p>\n\n<p><img src=\"https://i.stack.imgur.com/IeQN0.png\" alt=\"mouse preferences window\"></p>\n\n<p>This is in System / Preferences / Mouse.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-17T10:06:31.993", "id": "23679", "postId": "21943", "score": "2", "text": "Hmmmm.... never saw that before!! Why would they put under mouse? In Windows it was an icon in the taskbar, so makes it easy to see. Thanks anyway, I will mark your answer as the accepted answer because it is easier.", "userDisplayName": null, "userId": "7280" }, { "creationDate": "2011-01-17T10:41:08.247", "id": "23686", "postId": "21943", "score": "2", "text": "Would the general term \"pointing device\" be more discoverable than \"mouse\"?", "userDisplayName": null, "userId": "627" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T09:56:55.027", "id": "21943", "lastActivityDate": "2011-01-17T09:56:55.027", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9061", "parentId": "21939", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>You can install <code>touchpad-indicator</code> to enable/disable the touchpad.</p>\n<pre><code>sudo add-apt-repository ppa:lorenzo-carbonell/atareao\nsudo apt-get update\nsudo apt-get install touchpad-indicator\n</code></pre>\n<p>After installation you can find it under Appl...
null
null
null
null
null
21942
1
21945
2011-01-17T09:30:51.663
3
478
<p>I have started writting rss reader in Vala, but I don't know, what database system should I use, I cannot connect to couchdb and sqlite works fine, but I would like use couchdb because of ubuntu one. I have natty with latest updates</p> <pre><code>public CouchDB.Session session; public CouchDB.Database db; public string feed_table = "feed"; public string item_table = "item"; public struct field { string name; string val; } // constructor public Database() { try { this.session = new CouchDB.Session(); } catch (Error e) { stderr.printf ("%s a\n", e.message); } try { this.db = new CouchDB.Database (this.session, "test"); } catch (Error e) { stderr.printf ("%s a\n", e.message); } try { this.session.get_database_info("test"); } catch (Error e) { stderr.printf ("%s aa\n", e.message); } try { var newdoc = new CouchDB.Document (); newdoc.set_boolean_field ("awesome", true); newdoc.set_string_field ("phone", "555-VALA"); newdoc.set_double_field ("pi", 3.14159); newdoc.set_int_field ("meaning_of_life", 42); this.db.put_document (newdoc); // store document } catch (Error e) { stderr.printf ("%s aaa\n", e.message); } </code></pre> <p>reports</p> <pre><code>$ ./xml_parser rss.xmlCannot connect to destination (127.0.0.1) aa Cannot connect to destination (127.0.0.1) aaa </code></pre>
null
449
2011-01-17T10:04:37.143
2011-01-17T10:18:14.937
Are Vala and desktopcouch ready?
[ "vala", "couchdb" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T15:20:28.430", "id": "23731", "postId": "21942", "score": "0", "text": "OT: Don't know Vala, but wouldn't you run the whole code block in the try-clause and then catch all the different Errors? http://paste.ubuntu.com/555107/", "userDisplayName": null, "user...
{ "accepted": true, "body": "<p>From a performance point of view, I'd just like to say that CouchDB perhaps isn't the fastest solution when compared to something more mature like SQLite. A gwibber comparison puts SQLite as <em>just</em> <a href=\"http://blogs.nemein.com/people/piotras/view/1274453113.html\" rel=\"nofollow\">10 times faster</a>. </p>\n\n<p>Given that a RSS reader does a lot more <code>SELECT</code> than <code>INSERT</code>, this is something you need to be conscious of because it's going to effect your application's responsiveness.</p>\n\n<hr>\n\n<p>In terms of your code, comparing it to <a href=\"http://live.gnome.org/Vala/CouchDBSample\" rel=\"nofollow\">the \"official\" Vala+Couch sample</a>, you're not passing in the connection details so I'm wondering if there's an issue with the auto-detect mechanism. Couch is started on a different port each time it runs but <a href=\"http://ubuntuforums.org/showpost.php?p=8155355&amp;postcount=4\" rel=\"nofollow\">you can get its current port through dbus</a>:</p>\n\n<pre><code>dbus-send --session --print-reply --dest=org.desktopcouch.CouchDB / org.desktopcouch.CouchDB.getPortmethod return sender=:1.231 -&gt; dest=:1.230 reply_serial=2\n</code></pre>\n\n<p>I don't know the Vala for that but manually finding out might help you get the initial connection done.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-17T19:19:54.650", "id": "23774", "postId": "21945", "score": "0", "text": "I write tutorial to my blog, I have used desktopcouch header file and I don't have to get port and so on (handled by function)", "userDisplayName": "user6320", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-17T10:18:14.937", "id": "21945", "lastActivityDate": "2011-01-17T10:18:14.937", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "21942", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>From a performance point of view, I'd just like to say that CouchDB perhaps isn't the fastest solution when compared to something more mature like SQLite. A gwibber comparison puts SQLite as <em>just</em> <a href=\"http://blogs.nemein.com/people/piotras/view/1274453113.html\"...
null
null
null
null
user6320
21948
1
null
2011-01-17T10:50:28.707
1
1365
<p>I'm trying to install <code>opensync-plugin-synce</code> to sync my wm6 phone with Evolution, but when I try (from synaptic, also with ap-get), is:</p> <pre><code>Depende: opensync-module-python but it is not installable </code></pre> <p>In fact, I haven't found opensync-module-python in repositories.</p> <p>Any hint? Is there any way to sync WM6 and Evolution (preferably without intermediate online syncs as Gmail, for instance)?</p> <p>Update: <code>opensync-module-python</code> exists in the repositories for previous versions of Ubuntu (mine is 10.10).... could I install it from there or would I ruin something?</p> <p>Update: should I mark this as impossible? Seems to be no way to sync WM6 phone with Evolution right now....</p>
8851
8851
2011-01-24T09:23:14.303
2011-08-21T16:33:01.543
Syncing WM6 <-> Evolution.... opensync-module-python missing?
[ "10.10", "evolution", "sync", "smartphone" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-17T10:59:30.150", "id": "23687", "postId": "21948", "score": "0", "text": "Forgot to mention I'm using Maverick, in case that changes anything", "userDisplayName": null, "userId": "8851" } ]
null
[ { "accepted": null, "body": "<p>You can use the following PPA to overcome that problem, the missing package is in here.. </p>\n\n<p><a href=\"https://launchpad.net/~opensync/+archive/opensync-0.22?field.series_filter=maverick\" rel=\"nofollow\">https://launchpad.net/~opensync/+archive/opensync-0.22?field.se...
null
null
null
null
null