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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
30996 | 1 | 30997 | 2011-03-19T04:27:44.860 | 14 | 122119 | <p>I shifted to Ubuntu 10.10 now I am facing problem to have C/C++ compiler. What are the possible ways so that I can use C/C++ compiler using all the libraries (like graphic, math, conio, stdlib, etc) as in Microsoft Windows creating executable file?</p>
| 12639 | 48451 | 2013-01-09T17:51:02.543 | 2020-06-05T20:07:31.470 | Can I use a C/C++ compiler? | [
"gcc"
] | 8 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>Ubuntu provides the standard <a href=\"http://gcc.gnu.org\" rel=\"noreferrer\">Gnu Compiler Collection</a> in the repositories.</p>\n\n<p>You can install the Gnu C Compiler <a href=\"http://gcc.gnu.org\" rel=\"noreferrer\">gcc</a> <a href=\"http://apt.ubuntu.com/p/gcc\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install gcc\"></a> as well as the Gnu C++ compiler <a href=\"http://gcc.gnu.org\" rel=\"noreferrer\">g++</a> <a href=\"http://apt.ubuntu.com/p/g++\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install g++\"></a> with the following command:</p>\n\n<pre><code>sudo apt-get install gcc g++\n</code></pre>\n\n<p>You'll probably also want to install <a href=\"http://www.gnu.org/s/libc/\" rel=\"noreferrer\">libc6-dev</a> <a href=\"http://apt.ubuntu.com/p/libc6-dev\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install libc6-dev\"></a> (which includes the C standard library) and <a href=\"http://gcc.gnu.org/libstdc++/\" rel=\"noreferrer\">libstdc++6-4.5-dev</a> <a href=\"http://apt.ubuntu.com/p/libstdc++6-4.5-dev\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install libstdc++6-4.5-dev\"></a> (which includes the standard C++ libraries).</p>\n\n<hr>\n\n<p>If you're looking for something comparable to Microsoft's Visual C++ compiler, try taking a look at <a href=\"http://qt.nokia.com\" rel=\"noreferrer\">Qt</a> - specifically <a href=\"http://qt.nokia.com/products/developer-tools/\" rel=\"noreferrer\">Qt Creator</a> <a href=\"http://apt.ubuntu.com/p/qtcreator\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install qtcreator\"></a>. It's a full-fledged IDE with a visual form designer, code-editor, and debugger.</p>\n\n<p><img src=\"https://i.stack.imgur.com/nrWZz.png\" alt=\"enter image description here\"></p>\n\n<p><img src=\"https://i.stack.imgur.com/4kwxC.png\" alt=\"enter image description here\"></p>\n\n<hr>\n\n<p><strong>Edit:</strong><br>\nNow that it's clear what you mean by \"perfectly as in Microsoft windows?\", then Qt Creator (which I mentioned above) will be perfect for your needs. You won't need to use the console to compile your applications and the Qt framework is easy to learn and use.</p>\n\n<p>There's a great tutorial for getting started with Qt <a href=\"http://www.digitalfanatics.org/projects/qt_tutorial/\" rel=\"noreferrer\">here</a>.</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-19T05:11:06.727",
"id": "34777",
"postId": "30997",
"score": "0",
"text": "\"Perfectly as in microsoft\" tends to mean as i can be able to code a bit deeper using graphics and other libraries. i find it troublesome using from terminal using text editor (gedit).",
"userDisplayName": null,
"userId": "12639"
},
{
"creationDate": "2011-03-19T05:17:44.923",
"id": "34778",
"postId": "30997",
"score": "0",
"text": "@aneal: I've edited my answer.",
"userDisplayName": null,
"userId": "5"
},
{
"creationDate": "2011-03-19T05:23:16.897",
"id": "34780",
"postId": "30997",
"score": "0",
"text": "thanks. i will try using that one. lets c if this is the one i am searching for .",
"userDisplayName": null,
"userId": "12639"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-19T04:47:09.267",
"id": "30997",
"lastActivityDate": "2015-12-30T07:18:27.843",
"lastEditDate": "2017-03-11T19:00:12.867",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "5",
"parentId": "30996",
"postTypeId": "2",
"score": "34"
} | [
{
"accepted": true,
"body": "<p>Ubuntu provides the standard <a href=\"http://gcc.gnu.org\" rel=\"noreferrer\">Gnu Compiler Collection</a> in the repositories.</p>\n\n<p>You can install the Gnu C Compiler <a href=\"http://gcc.gnu.org\" rel=\"noreferrer\">gcc</a> <a href=\"http://apt.ubuntu.com/p/gcc\" rel=\... | null | null | null | null | null |
31013 | 1 | 31127 | 2011-03-19T06:09:52.580 | 1 | 7096 | <p>I'm trying to install the ath5k driver in Maverick, but the instructions at <a href="https://help.ubuntu.com/community/EeePC/Fixes#Wireless" rel="nofollow">https://help.ubuntu.com/community/EeePC/Fixes#Wireless</a> don't work. I've tried to install (sudo apt-get install) <code>linux-backports-modules-intrepid-generic</code>, and also <code>linux-backports-modules-maverick-generic</code>, but both can't be found.</p>
<p>Thanks for your response!</p>
| 12645 | 866 | 2011-05-24T08:39:52.307 | 2011-05-24T08:39:52.307 | How do I install the ath5k driver? | [
"10.10",
"wireless",
"ath5k"
] | 1 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-19T07:42:20.920",
"id": "34971",
"postId": "31013",
"score": "0",
"text": "I think , this a common problem. my friend had same problem but i was not interested coz mine was working fine. But link below might help u. it helped for him.\r\nhttp://wireless.kernel.org/en/u... | {
"accepted": true,
"body": "<p>I did it:</p>\n\n<p><code>sudo apt-get install linux-backports-modules-maverick-generic-wireless</code></p>\n\n<p>then I followed the instructions on the page (modprobe etc). Works like a charm, except for another question I'm starting now. (Asus EeePc Fn+F2 wrecks wireless until restart)</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T23:10:50.160",
"id": "31127",
"lastActivityDate": "2011-03-19T23:10:50.160",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "12645",
"parentId": "31013",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": true,
"body": "<p>I did it:</p>\n\n<p><code>sudo apt-get install linux-backports-modules-maverick-generic-wireless</code></p>\n\n<p>then I followed the instructions on the page (modprobe etc). Works like a charm, except for another question I'm starting now. (Asus EeePc Fn+F2 wrecks wireless u... | null | null | null | null | null |
31016 | 1 | 36208 | 2011-03-19T07:41:44.737 | 2 | 174 | <p>I am suffering from a bug/crash in Natty, which I have logged in Launchpad: <a href="https://bugs.launchpad.net/unity/+bug/737928" rel="nofollow">https://bugs.launchpad.net/unity/+bug/737928</a></p>
<p>The response I got back on my bug was a "provide us with a .crash file, or we won't look into it". Not very helpful really, but I can understand that the developers need something to work with. I have checked for this .crash file, which I can provide, but it isn't there.</p>
<p>So, my question is, what else can I provide/do in order to get this bug looked at and fixed?</p>
<p>It can't be a specific problem as it happens to both my 32bit laptop and my 64bit desktop, both being very different machines, and it is stopping me from connecting to my development & backup network machines so I can't do my work...</p>
<p>It turns out that I had to replicate the bug a number of times before I finally got promoted to report it by Apport. It would be nice, though, if there was a simpler way.</p>
| 176 | 5768 | 2012-07-09T13:56:41.840 | 2012-07-09T13:56:41.840 | How to report a crash when there isn't a .crash file | [
"11.04",
"unity",
"bug-reporting"
] | 3 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>I find some of the Unity bug filing a bit brusque too, such as using \"Incomplete\" to mean \"we haven't decided how to fix this yet\" even though it is a real bug.</p>\n\n<p>If you have a hang/crash bug, one good way to get some more data is to run <code>strace</code> on the process in question, with eg</p>\n\n<pre><code>strace -ff -o /tmp/unity.strace -p UNITY_PID\n</code></pre>\n\n<p>(after finding the right pid), then attach that file to the bug. I can't promise they'll accept it but for things I work on that's often helpful.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-04-21T01:02:52.147",
"id": "36208",
"lastActivityDate": "2011-04-21T01:02:52.147",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "1116",
"parentId": "31016",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": null,
"body": "<p>You need to enable Apport - details on how to do this are found on the Ubuntu Wiki <a href=\"https://wiki.ubuntu.com/Apport\" rel=\"nofollow\">here</a></p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-19T21:49:50.453",
"id": ... | null | null | null | null | null |
31020 | 1 | null | 2011-03-19T08:03:13.080 | 2 | 871 | <p>The question is in the title, I always remove applications that I do not use after installing or upgrading, this includes games etc (wish it was possible to install Ubuntu with no applications then add the ones I require after, is this possible?)
Anyway after removing the applications they still show under the installed applications menu, if you click on them nothing happens but how do I get rid of the remaining icons? </p>
| 12649 | null | null | 2011-03-19T08:09:36.787 | Uninstalled aplications still show launcher icons under installed aplications? | [
"unity",
"icons",
"uninstall"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>Right click on the top left Ubuntu icon (next to Applications) and select 'Edit Menus'</p>\n\n<p>In the box that opens simply remove the tick from the icon you no longer wish to be displayed.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,... | null | null | null | null | null |
31023 | 1 | null | 2011-03-19T06:31:11.967 | 19 | 288118 | <p>How to manually configure <code>eth0</code> in Ubuntu?
I don't have any DHCP server. Do I need IP address when I am just going to capture packets?</p>
| null | 235 | 2011-03-19T16:46:47.900 | 2024-03-29T06:03:22.603 | How to configure eth0 manually? | [
"networking"
] | 4 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>You don't need IP address for capturing packets in promiscuous mode (when you want to capture all traffic, not just traffic destined to your computer). You can put that interface up using command</p>\n\n<pre><code>ifconfig eth0 up\n</code></pre>\n\n<p>This do not assign IPv4 ... | null | null | null | null | Dhinesh |
31029 | 1 | null | 2011-03-19T09:26:11.230 | 4 | 12064 | <p>I put in the wireless LAN card into the usb port, being new to Ubuntu i'd expect something like Windows... Auto installing itself, but nothing happened. </p>
<p>With the card I have a disc for the wireless LAN card to install. Inside of the disc there is a folder called Linux. I'm assuming that that is how I install the driver.</p>
<p>Inside of that folder there are two more folders. One is which is for the driver. Inside of that is a .tar.bz2 folder and inside of that is two more folders called Module and WPA supp.</p>
<p>I have no idea and I did tried to search. I found a little bit of stuff but I don't think I understand. Could someone please give me the exact instructions to install the driver/files for it?</p>
<p>I'm using Ubuntu 10.10 and the card is a RT2070 Ralink Lan USB 11B/G 54M Wireless card 802.11.</p>
<p>Pastebin of dmesg: <a href="http://pastebin.com/UrFY3NSR" rel="nofollow">http://pastebin.com/UrFY3NSR</a></p>
<p>Representative portion in case pastebin wipes this entry:</p>
<pre><code>[ 234.984025] hub 1-0:1.0: Cannot enable port 8. Maybe the USB cable is bad?
[ 234.984041] hub 1-0:1.0: unable to enumerate USB device on port 8
[ 235.184037] hub 5-0:1.0: unable to enumerate USB device on port 2
[ 235.744031] usb 5-2: new full speed USB device using uhci_hcd and address 8
[ 235.864020] usb 5-2: device descriptor read/64, error -71
</code></pre>
<p>Ralink also has a page for support...
<a href="http://eng.ralinktech.com.tw/support.php?s=2" rel="nofollow">http://eng.ralinktech.com.tw/support.php?s=2</a></p>
<p>This is what the readme file says, but it is to complicated to understand, maybe someone can translate it so it'll be less complicated?</p>
<p><a href="http://pastebin.com/hTFrhY2w" rel="nofollow">http://pastebin.com/hTFrhY2w</a></p>
<p>Here are all folders/file names that is in the folder for the wireless USB driver</p>
<p><a href="http://pastebin.com/1y8uvyqY" rel="nofollow">http://pastebin.com/1y8uvyqY</a></p>
| 9838 | 9838 | 2011-03-25T18:48:35.430 | 2012-08-21T06:32:03.853 | How do I get a Ralink RT2070 wireless USB stick to work? | [
"10.10",
"wireless",
"drivers",
"ralink"
] | 8 | 9 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T13:59:56.883",
"id": "34965",
"postId": "31029",
"score": "0",
"text": "We need more hardware information to help you, can you look at this question and then edit your question adding more detail? http://askubuntu.com/questions/14008/i-have-a-hardware-detection-prob... | null | [
{
"accepted": null,
"body": "<p>You need to extract the .tar.gz into a folder. To do that you can right click on the file and choose <em>extract</em>. Once the file is extracted, go into the folder, and look at the readme or install files. Follow the instructions on how to install the driver. </p>\n\n<p... | null | null | null | null | null |
31032 | 1 | null | 2011-03-19T10:20:41.877 | 1 | 1191 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://askubuntu.com/questions/22735/disable-locking-the-screen-after-resuming-from-suspend">Disable locking the screen after resuming from suspend</a> </p>
</blockquote>
<p>I would like to be able to bounce straight back to where I left off and the lock screen is just a pain. Please help</p>
| null | -1 | 2017-04-13T12:24:49.530 | 2011-03-19T17:06:28.943 | Can I disable the lock screen that happens when I close my Dell d430? | [
"10.10",
"screen",
"lock"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T12:56:18.877",
"id": "34818",
"postId": "31032",
"score": "1",
"text": "This has already been answered here : http://askubuntu.com/questions/22735/disable-locking-the-screen-after-resuming-from-suspend/22737#22737",
"userDisplayName": null,
"userId": "861"
... | null | [
{
"accepted": null,
"body": "<p>I'm not sure i clearly understand what you're looking for, but i found these:\n<a href=\"http://brainstorm.ubuntu.com/idea/24847/\" rel=\"nofollow\">http://brainstorm.ubuntu.com/idea/24847/</a> and\n<a href=\"http://ubuntuforums.org/showpost.php?s=0282c09fc59593ce6a3c6c22d221... | null | null | 2011-03-20T13:52:05.630 | null | user12652 |
31039 | 1 | 32533 | 2011-03-19T11:19:03.567 | 4 | 5542 | <p>So here's the short story.</p>
<p>I wanted to compile the latest Transmission client from source but in order to do that I needed the libevent-2 library which is not available from Ubuntu 10.04's repository.</p>
<p>Therefore, I grabbed libevent-2's source code, compiled it and installed it (sudo make install). </p>
<p>I am now able to compile transmission and install it. However, when I try to launch it <code>/usr/local/bin/transmission-gtk</code>, I get the following error:</p>
<p><code>/usr/local/bin/transmission-gtk: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory</code></p>
<p>However, <code>libevent-2.0.so.5</code> is in the <code>/usr/local/lib</code> directory instead of <code>/usr/local/lib</code>. Is that possibly the problem? Where should I go from here?</p>
| 2331 | null | null | 2012-02-24T03:41:46.843 | Compiling library from source code, how to overwrite current package? | [
"compiling",
"shared-library"
] | 2 | 3 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T11:24:26.603",
"id": "34803",
"postId": "31039",
"score": "0",
"text": "Setting LD_LIBRARY_PATH=\"/usr/local/lib\" seemed to fix my problem.",
"userDisplayName": null,
"userId": "2331"
},
{
"creationDate": "2011-03-19T14:02:12.607",
"id": "34826"... | {
"accepted": true,
"body": "<p>Set LD_LIBRARY_PATH to \"/usr/local/lib\"</p>\n\n<p><code>export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\"/usr/local/lib\"</code> in Bashexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:\"/usr/local/lib\"</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-29T13:51:36.553",
"id": "32533",
"lastActivityDate": "2012-02-24T03:40:11.573",
"lastEditDate": "2012-02-24T03:40:11.573",
"lastEditorDisplayName": null,
"lastEditorUserId": "2331",
"ownerDisplayName": null,
"ownerUserId": "2331",
"parentId": "31039",
"postTypeId": "2",
"score": "6"
} | [
{
"accepted": null,
"body": "<p>Was unable to set my path right apparently, a symbolic link like this worked: </p>\n\n<pre><code>sudo ln -s /usr/local/lib/libevent-2.0.so.5 /usr/lib/libevent-2.0.so.5\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"content... | null | null | null | null | null |
31047 | 1 | 31091 | 2011-03-19T12:03:30.990 | 3 | 776 | <p>I often update my system with <code>apt-get update && apt-get dist-upgrade</code>. This caused me a few problems with natty and nvidia drivers.</p>
<p>Someone on IRC told me that's because I did a partial upgrade, but I did not know.</p>
<p><strong>How do I know if apt-get is going to do a partial upgrade?</strong></p>
| 154 | null | 2012-06-25T16:13:02.423 | 2012-06-25T16:13:02.423 | How do I know if apt-get is going to do a partial upgrade? | [
"command-line",
"apt",
"release-management",
"partial-upgrade"
] | 2 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>Typically you should be wary of using \"dist-upgrade\" during the development release, if the archive is in an inconsistent state it will remove things and this will happen. This always isn't easy as you might have upgraded part of the system and the bits that they depend on might not be build yet. </p>\n\n<p>Normally when this occurs packages to be \"held back\", but a dist-upgrade overrides that and just installs the newest things in the archive, whether that breaks your computer or not.</p>\n\n<p>The simplest way you can recover is find out what you're missing and reinstall it, I would guess in your case you upgraded either X, nvidia, and/or your kernel and your mirror wasn't caught up or the right things weren't built yet. This is why I always upgrade with \"apt-get upgrade\" or the update-manager and just let things sit held back for a while.</p>\n\n<p>What I do is do <code>apt-get upgrade</code>, then when certain things are held back I apt-get install them one at a time. So for example kernel packages will be held back and I manually install them. If something wants to remove something that looks important I keep it held back. It's not too time consuming and ensures that something important isn't removed.</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-19T19:34:21.720",
"id": "34874",
"postId": "31091",
"score": "2",
"text": "Indeed, don't use dist-upgrade on a regular basis. A partial upgrade IS dist-upgrade.",
"userDisplayName": null,
"userId": "8500"
},
{
"creationDate": "2011-03-22T15:20:39.233",
"id": "35319",
"postId": "31091",
"score": "0",
"text": "Do you suggest using the plain 'upgrade' command? I've seen that this command does not install kernel upgrades for example, why?",
"userDisplayName": null,
"userId": "154"
},
{
"creationDate": "2017-08-17T17:20:36.593",
"id": "1506486",
"postId": "31091",
"score": "0",
"text": "`apt-get upgrade` (or these days, you can also just use `apt upgrade`) definitely installs kernel upgrades. `dist-upgrade` is asking for trouble unless you actually want to install the next version of Ubuntu.",
"userDisplayName": null,
"userId": "54675"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T16:55:43.947",
"id": "31091",
"lastActivityDate": "2011-03-22T16:11:50.407",
"lastEditDate": "2011-03-22T16:11:50.407",
"lastEditorDisplayName": null,
"lastEditorUserId": "235",
"ownerDisplayName": null,
"ownerUserId": "235",
"parentId": "31047",
"postTypeId": "2",
"score": "6"
} | [
{
"accepted": true,
"body": "<p>Typically you should be wary of using \"dist-upgrade\" during the development release, if the archive is in an inconsistent state it will remove things and this will happen. This always isn't easy as you might have upgraded part of the system and the bits that they depend on ... | null | null | null | user70540 | null |
31050 | 1 | 33739 | 2011-03-19T12:06:22.760 | 3 | 298 | <p>I have a laptop that has a trackpad for the mouse. I'm not using all the multi-touch capabilities of the trackpad and am currently only able to get left click working. Is there any way to setup Win+Click as right click? This would be kind of like Command+Click on Apple machines.</p>
| 12659 | null | null | 2019-02-27T08:47:54.850 | Trackpad Mimic Apple's Command Click | [
"mouse",
"keyboard-layout",
"trackpad"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Let's do it! </p>\n\n<p>1) Install <a href=\"http://apt.ubuntu.com/p/xdotool\" rel=\"nofollow noreferrer\">xdotool</a> </p>\n\n<pre>sudo aptitude install xdotool</pre> \n\n<p>2) Install <a href=\"http://apt.ubuntu.com/p/compizconfig-settings-manager\" rel=\"nofollow noreferrer\">Compiz</a> </p>\n\n<pre>sudo aptitude install compizconfig-settings-manager</pre>\n\n<p>3) Open Compiz </p>\n\n<pre>ccsm</pre> \n\n<p>4) Go to Commands then to \"Commands\" tab and add this to \"Command line 0\"<br>\n<em>sleep 0.1 && xdotool click --clearmodifiers 3</em> </p>\n\n<p><a href=\"https://i.stack.imgur.com/Vy9Zr.jpg\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/Vy9Zr.jpg\" alt=\"\"></a>\n </p>\n\n<p>5) Assign <kbd>Super</kbd> + Button1 at \"Button Bindings\" tab </p>\n\n<p><a href=\"https://i.stack.imgur.com/gZDQA.jpg\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/gZDQA.jpg\" alt=\"\"></a>\n </p>\n\n<p>And you're done. </p>\n",
"commentCount": "4",
"comments": [
{
"creationDate": "2011-04-12T00:31:26.610",
"id": "38625",
"postId": "33739",
"score": "0",
"text": "Awesome, thank you so much for putting the time into this! :)",
"userDisplayName": null,
"userId": "12659"
},
{
"creationDate": "2011-04-12T01:05:54.440",
"id": "38632",
"postId": "33739",
"score": "0",
"text": "Glad to find stuff like this ;-)",
"userDisplayName": null,
"userId": "12943"
},
{
"creationDate": "2019-02-27T08:50:17.000",
"id": "1854517",
"postId": "33739",
"score": "0",
"text": "@Glorfindel Thanks for updating the image links! However, you should include the working links to Wayback Machine instead of the dead originals IMHO.",
"userDisplayName": null,
"userId": "250300"
},
{
"creationDate": "2019-02-27T09:00:49.547",
"id": "1854520",
"postId": "33739",
"score": "0",
"text": "You're welcome. To be honest, I don't think it really matters; it's rather easy to find the corresponding Wayback Machine link (or vice versa). And I have had some cases where the system rejected my edits because they changed too much, so from that point of view it's better to use the original URL.",
"userDisplayName": null,
"userId": "606366"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2011-04-06T03:01:56.120",
"id": "33739",
"lastActivityDate": "2019-02-27T08:47:54.850",
"lastEditDate": "2019-02-27T08:47:54.850",
"lastEditorDisplayName": null,
"lastEditorUserId": "606366",
"ownerDisplayName": null,
"ownerUserId": "12943",
"parentId": "31050",
"postTypeId": "2",
"score": "3"
} | [
{
"accepted": true,
"body": "<p>Let's do it! </p>\n\n<p>1) Install <a href=\"http://apt.ubuntu.com/p/xdotool\" rel=\"nofollow noreferrer\">xdotool</a> </p>\n\n<pre>sudo aptitude install xdotool</pre> \n\n<p>2) Install <a href=\"http://apt.ubuntu.com/p/compizconfig-settings-manager\" rel=\"nofollow norefe... | null | null | null | null | null |
31051 | 1 | 31057 | 2011-03-19T12:08:47.563 | 0 | 414 | <p>This was from <a href="http://wiki.karen.net.nz/index.php/Network_Diagnostic_Tool_%28NDT%29" rel="nofollow">here</a>.</p>
<p><strong>Extract the patch</strong></p>
<pre><code>tar -xvzf /usr/src/web100-2.5.22-200810130047.tar.gz
bzip2 web100/ web100-2.6.27-2.5.22-200810130047.patch
</code></pre>
<p><strong>Test the patch</strong></p>
<pre><code>bzip2 -dc /usr/src/linux/web100/ web100-2.6.27-2.5.22-200810130047.patch.bz2 | patch -p1 --dry-run
</code></pre>
<p>I looked at the <code>.patch</code>, the diff output of many files and the file <code>.patch.bz2</code> after the <code>bzip2</code> command which is too also the diff output of many files, they seem to be the same. My question is why is bzip2 even needed to turn the <code>.patch</code> into a <code>.patch.bz2</code>? Is it for the redirection to std output from the <code>-dc</code> option for the patch command? Even if it is, why not just not just use the patch command in the form something like this:<code>patch -p1 < patchfile</code>? I don't see why the bzip2 is done here.</p>
<p>Also, I think the bzip2 might have an extra space in the command after <code>web100/</code>, right?</p>
| 12657 | 12657 | 2011-03-19T13:29:11.910 | 2011-03-21T04:58:23.163 | Why is bzip2 needed in the kernel patch instructions? | [
"kernel",
"patch"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<ol>\n<li>Correct, there does appear to be an extra space character in <code>web100/ web100</code> that should not be there and will break the command.</li>\n<li>I agree, there appears to be no obvious reason for using <code>bzip2</code> in the example. Normally one would just do <code>patch -p1 < ../my.patch</code>.</li>\n</ol>\n\n<p>Have you considered getting in contact with the authors of that webpage and letting them know that they can simplify the instructions?</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-19T13:19:18.267",
"id": "34820",
"postId": "31057",
"score": "0",
"text": "I've seen quite a few tutorials that do this. For example: (http://ck.wikia.com/wiki/WalkThrough), (http://www.howtoforge.com/kernel_compilation_ubuntu) and (http://www.howtoforge.com/network-diagnostic-tool-ndt-ubuntu-7.10-server-p2) Is there a particular reason why?",
"userDisplayName": null,
"userId": "12657"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T13:04:53.990",
"id": "31057",
"lastActivityDate": "2011-03-21T04:58:23.163",
"lastEditDate": "2011-03-21T04:58:23.163",
"lastEditorDisplayName": null,
"lastEditorUserId": "7702",
"ownerDisplayName": null,
"ownerUserId": "7702",
"parentId": "31051",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": true,
"body": "<ol>\n<li>Correct, there does appear to be an extra space character in <code>web100/ web100</code> that should not be there and will break the command.</li>\n<li>I agree, there appears to be no obvious reason for using <code>bzip2</code> in the example. Normally one would just ... | null | null | null | null | null |
31063 | 1 | null | 2011-03-19T14:01:55.880 | 16 | 41558 | <p>The command history between sessions is not getting saved. I'm using guake and the history for the session is working fine.</p>
<p>I noticed that <strong>.bash_history</strong> had some commands I executed in <code>sudo -s</code> mode and tried the same again and all the commands while in the session got saved so I tried:</p>
<pre class="lang-none prettyprint-override"><code>chmod 777 .bash_history
</code></pre>
<p>Now the old commands appear at the start of a session but no new commands are getting saved.</p>
| null | null | 2020-08-21T14:49:41.923 | 2020-08-21T14:49:41.923 | Bash command history not working | [
"command-line",
"bash",
"history",
"guake"
] | 4 | 2 | CC BY-SA 4.0 | [
{
"creationDate": "2011-03-19T14:06:23.063",
"id": "34828",
"postId": "31063",
"score": "2",
"text": "So... what exactly are you trying to accomplish? You dont seem to be asking a question here :/",
"userDisplayName": null,
"userId": "10616"
},
{
"creationDate": "2011-03-19T14:5... | null | [
{
"accepted": null,
"body": "<p>The commands are not visible because Bash saves history to the .bash_history file only after the shell quits, and this happens very rarely with Guake. There is <a href=\"http://www.cuberick.com/2008/11/update-bash-history-in-realtime.html\">a simple workaround</a> to make Bas... | null | null | null | user1094181 | user12663 |
31064 | 1 | 31074 | 2011-03-19T14:02:32.070 | 3 | 213 | <p>Google have just published their <a href="http://www.google-melange.com/gsoc/program/accepted_orgs/google/gsoc2011" rel="nofollow">list of accepted mentoring organisations</a> for Summer of Code 2011, but Ubuntu isn't listed there. Jono Bacon has confirmed that Ubuntu applied for a position, so I can only conclude that the application was unsuccessful. Can anyone clarify whether or not this is the case?</p>
| null | 235 | 2011-11-11T01:34:24.117 | 2011-11-11T01:34:24.117 | Ubuntu isn't on Google's list of Summer of Code participants | [
"community"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T15:00:10.267",
"id": "34839",
"postId": "31064",
"score": "0",
"text": "i don't think ubuntu needs GSoC.",
"userDisplayName": null,
"userId": "5149"
}
] | {
"accepted": true,
"body": "<p>As far as I know Ubuntu did not get through. It is not there in the list.</p>\n\n<p>Ubuntu got <a href=\"http://socghop.appspot.com/gsoc/program/accepted_orgs/google/gsoc2010\" rel=\"nofollow\">through last year(2010)</a> where we had a few projects (one I can remember was Harvest)</p>\n\n<p>In 2010 openSUSE did not get through. They got through this year.</p>\n\n<p>Ubuntu did not get <a href=\"http://socghop.appspot.com/gsoc/program/accepted_orgs/google/gsoc2009\" rel=\"nofollow\">through in 2009</a>.</p>\n\n<p>This all fine. Ubuntu is a pretty big project. GSoC is a initiative to boost FOSS mentality. </p>\n\n<p>This time Google themselves said that <a href=\"http://lists.p2pu.org/pipermail/p2pu-dev/2011-February/000288.html\" rel=\"nofollow\">smaller organizations should also apply</a>. Looks like Google thought that Ubuntu doesn't need GSoC students. </p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-19T15:04:47.717",
"id": "34841",
"postId": "31074",
"score": "0",
"text": "Sounds fair enough.",
"userDisplayName": "user2405",
"userId": null
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T14:47:04.573",
"id": "31074",
"lastActivityDate": "2011-03-19T14:47:04.573",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "52",
"parentId": "31064",
"postTypeId": "2",
"score": "9"
} | [
{
"accepted": true,
"body": "<p>As far as I know Ubuntu did not get through. It is not there in the list.</p>\n\n<p>Ubuntu got <a href=\"http://socghop.appspot.com/gsoc/program/accepted_orgs/google/gsoc2010\" rel=\"nofollow\">through last year(2010)</a> where we had a few projects (one I can remember was Ha... | null | null | null | null | user2405 |
31067 | 1 | null | 2011-03-19T14:19:02.407 | 2 | 1141 | <p>I have installed ubuntu 10.10 on my pc. I dont have internet connection. </p>
<p>Now i haven't installed third party software like for music, video, graphics, display. So how do i do that?</p>
<p>Please help me.</p>
| null | 667 | 2011-03-19T14:38:41.310 | 2011-03-19T14:38:41.310 | How do I install non-free drivers and codecs without an Internet connection? | [
"installation",
"drivers",
"offline",
"codecs"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T14:40:00.857",
"id": "34830",
"postId": "31067",
"score": "1",
"text": "See Also: [How can I install software offline?](http://askubuntu.com/q/974/667)",
"userDisplayName": null,
"userId": "667"
}
] | null | [
{
"accepted": null,
"body": "<p>I think you should take a look at <a href=\"http://www.omgubuntu.co.uk/2011/01/offline-ubuntu-updater-keryx-hits-1-0/\" rel=\"nofollow\">this</a>. This program allows you to download packages from one computer, save them in a USB drive and install them on another computer whi... | null | null | null | null | user12664 |
31069 | 1 | 31071 | 2011-03-19T14:35:02.233 | 206 | 420782 | <p>When I work in terminal, sometimes I want to open the current directory in a GUI file manager.
And then to click the items in the window to run the application. How can I do this? </p>
| null | 667 | 2011-03-19T14:43:32.383 | 2020-12-04T18:50:14.153 | How to open a file manager of the current directory in the terminal? | [
"command-line",
"window",
"filemanager"
] | 6 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T14:52:17.540",
"id": "34835",
"postId": "31069",
"score": "2",
"text": "I don't think this question is an exact duplicate. There are [many similar questions](http://askubuntu.com/search?page=1&tab=relevance&q=xdg-open) with some identical answers but none of the que... | {
"accepted": true,
"body": "<p>The following works in all desktop environments by using the default file manager:</p>\n\n<pre><code>xdg-open .\n</code></pre>\n\n<p>You can also open files from the terminal as if you had double clicked them in the file manager:</p>\n\n<pre><code>xdg-open file\n</code></pre>\n",
"commentCount": "8",
"comments": [
{
"creationDate": "2017-06-14T07:45:17.117",
"id": "1462493",
"postId": "31071",
"score": "1",
"text": "Doesn't work for Ubuntu 16",
"userDisplayName": null,
"userId": "680375"
},
{
"creationDate": "2018-10-19T06:25:13.087",
"id": "1784566",
"postId": "31071",
"score": "0",
"text": "Works in CentOS 6.10 as well.",
"userDisplayName": null,
"userId": "11473"
},
{
"creationDate": "2019-04-29T21:23:28.887",
"id": "1888117",
"postId": "31071",
"score": "0",
"text": "@TheGodfather it works it Ubuntu 18.04",
"userDisplayName": null,
"userId": "907760"
},
{
"creationDate": "2019-05-25T17:44:01.133",
"id": "1902768",
"postId": "31071",
"score": "0",
"text": "for ubuntu, uses: `caja`, or `nautilus`",
"userDisplayName": null,
"userId": "734218"
},
{
"creationDate": "2019-06-04T18:14:31.120",
"id": "1908198",
"postId": "31071",
"score": "1",
"text": "Works like a charm in Ubuntu 18. :) Thanks for this!",
"userDisplayName": null,
"userId": "784592"
},
{
"creationDate": "2019-09-26T08:30:57.007",
"id": "1965004",
"postId": "31071",
"score": "0",
"text": "Works for me in Ubuntu 16.04",
"userDisplayName": null,
"userId": "999708"
},
{
"creationDate": "2020-07-13T03:29:14.530",
"id": "2127312",
"postId": "31071",
"score": "0",
"text": "This shows a deprecation warning, the newer command is `gio open .` (Centos 7)",
"userDisplayName": null,
"userId": "1103315"
},
{
"creationDate": "2021-06-18T13:38:47.800",
"id": "2301467",
"postId": "31071",
"score": "0",
"text": "Is there a similar command to \"Choose a file\"? e.g. It will open the default file manager and you can choose/select a file and it'll return the file's absolute path? More like a \"File-picker\"?",
"userDisplayName": null,
"userId": "1083536"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T14:42:06.923",
"id": "31071",
"lastActivityDate": "2011-03-19T14:42:06.923",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "667",
"parentId": "31069",
"postTypeId": "2",
"score": "299"
} | [
{
"accepted": null,
"body": "<p>You write nautilus [path]. for current directory - </p>\n\n<pre><code>nautilus .\n</code></pre>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2018-10-23T15:22:39.633",
"id": "1787188",
"postId": "31070",
"score": "0",
... | null | null | null | null | user8260 |
31076 | 1 | 38610 | 2011-03-19T15:12:38.067 | 7 | 5565 | <p>My clock starts running out of sync in Ubuntu which doesn't happen in Windows. The problem is that it just starts losing time after a moment of syncing it with an NTP server, that means the clock is broken. </p>
<p>So How can I make the system use the hardware clock instead(I tried adjtimex).</p>
<p>BTW: please don't suggest the CMOS battery, it's not the correct answer.</p>
| 4384 | null | null | 2013-07-08T23:33:27.933 | How can I force Ubuntu to use the BIOS internal clock instead of NTP or whatever its being used? | [
"time",
"clock",
"ntp"
] | 3 | 7 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T19:57:48.073",
"id": "34877",
"postId": "31076",
"score": "1",
"text": "To clarify... you think that your internal clock is /more/ accurate than using NTP? Or are you suggesting that NTP is broken on your system? Windows uses time.windows.com or something similar ... | {
"accepted": true,
"body": "<p>By default, Ubuntu only sets the time when a network interface comes up. It does this with a small piece of the \"ntp\" system: ntpdate. If your machine stays connected and keeps running for days or weeks, even the best internal clock will eventually go out of sync.<br>\nUbuntu also doesn't try to adjust your internal clock by default, and it sounds like your clock is badly adjusted. The real time clock (hardware clock) in most systems is also not very good over the long term.</p>\n\n<p>So if you want better time, I can recommend two options:</p>\n\n<ul>\n<li><p>Install the full \"ntp\" package to get the Network Time Protocol, which regularly looks at Internet time servers and keeps your clock within milliseconds of the right time. See some good instructions here: <a href=\"http://www.linuxbsdos.com/2009/11/11/install-ntp-ssh-server-and-java-jre-on-ubuntu-9-10/\" rel=\"nofollow\">Install NTP....</a> You can also install it from the Ubuntu Software Center. This is easy and typically pretty foolproof, if your machine is usually on the Internet and doesn't have really nasty firewalls cutting off ntp.</p></li>\n<li><p>Manually adjust the frequency of your internal clock, using the adjtimex package. Actually, when you install adjtimex, it runs adjtimexconfig which sets values in /etc/default/adjtimex. But it does so quickly using the hardware clock, and in my experience the results are usually somewhere between bad and terrible. Some machines are hard to tune well, but I've had good luck with most of my machines by doing the manual calculation necessary to figure out the right FREQ and TICK values to put in /etc/default/adjtimex. To go this route, start by installing adjtimex via Applications/Ubuntu Software Center. To figure out manual settings for FREQ and TICK, see the nice calculator at <a href=\"http://www.ep.ph.bham.ac.uk/general/support/adjtimex.html\" rel=\"nofollow\">Tuning with adjtimex as an alternative to running ntpd</a>. That page also notes that your choice of \"clocksource\" can affect how accurate your clock is. The hpet (High Precision Event Timer) seems more accurate than the tsc (Time Stamp Counter).</p></li>\n</ul>\n\n<p>There are tips for dealing with other glitches at <a href=\"https://help.ubuntu.com/community/UbuntuTime\" rel=\"nofollow\">UbuntuTime - Help.ubuntu.com</a></p>\n",
"commentCount": "4",
"comments": [
{
"creationDate": "2011-05-01T09:31:03.483",
"id": "42609",
"postId": "38610",
"score": "1",
"text": "Thanks, I already fixed this by upgrading to Natty, however, this is the most informative answer. :)",
"userDisplayName": null,
"userId": "4384"
},
{
"creationDate": "2011-05-01T12:53:07.033",
"id": "42640",
"postId": "38610",
"score": "0",
"text": "Thanks :) But I wonder why upgrading to natty would have helped?",
"userDisplayName": null,
"userId": "6130"
},
{
"creationDate": "2011-05-04T14:39:24.227",
"id": "43919",
"postId": "38610",
"score": "0",
"text": "It did help, I don't know how but it helped.",
"userDisplayName": null,
"userId": "4384"
},
{
"creationDate": "2011-05-18T20:40:00.837",
"id": "47942",
"postId": "38610",
"score": "1",
"text": "Thank you; adjtimex seems to be working beautifully. I'm down to a few seconds per day, and am getting closer to ideal.",
"userDisplayName": null,
"userId": "4783"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-04-30T22:03:20.877",
"id": "38610",
"lastActivityDate": "2011-04-30T23:20:43.713",
"lastEditDate": "2011-04-30T23:20:43.713",
"lastEditorDisplayName": null,
"lastEditorUserId": "6130",
"ownerDisplayName": null,
"ownerUserId": "6130",
"parentId": "31076",
"postTypeId": "2",
"score": "4"
} | [
{
"accepted": null,
"body": "<p>Go to system/preferences/time and date, then unlock the settings by clicking on the little padlock.</p>\n\n<p><img src=\"https://i.stack.imgur.com/vkIzi.jpg\" alt=\"Time and Date settings\"></p>\n\n<p>Change your configuration to \"manual\" (that's the default, unless you've ... | null | null | null | null | null |
31077 | 1 | 31084 | 2011-03-19T15:12:39.660 | 6 | 9279 | <p>First i tried with youtube-dl and all the times ( and all days) for all videos it gives this same error:</p>
<pre><code>youtube-dl http://www.youtube.com/watch?v=6zWwTTAc7O8
[youtube] Setting language
[youtube] 6zWwTTAc7O8: Downloading video info webpage
[youtube] 6zWwTTAc7O8: Extracting video information
ERROR: format not available for video
</code></pre>
<p>Then I tried minitube latest version. but it just cant open the video. it just keeps trying to open video. it is unable to even play or download any video.</p>
<p>Also in old days, whenever i play video in youtube.com that was automatically was saved in my /tmp. But that is also not happening these days.</p>
<p>What can I use for downloading Youtube videos? I am using Lucid 64 bit. </p>
<p>Edit1: I dont want to use any extensions to Firefox. I like my firefox without any extension. With extension it becomes soooooo slow and inactive.</p>
| 4162 | 24621 | 2013-04-14T19:26:00.453 | 2013-04-26T18:30:16.873 | How can I download Youtube videos? | [
"software-recommendation",
"youtube"
] | 9 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T15:34:57.790",
"id": "34847",
"postId": "31077",
"score": "1",
"text": "There are firefox/chrome extensions for saving Video and Audio from YouTube - is this an option?",
"userDisplayName": null,
"userId": "2056"
},
{
"creationDate": "2011-03-19T21:3... | {
"accepted": true,
"body": "<p>You can use <a href=\"http://www.miksoft.net/mobileMediaConverter.htm\" rel=\"nofollow noreferrer\">Mobile Media Converter</a>, which will do this task with ease in 32 bit systems.</p>\n\n<pre><code>The producers haven't delivered yet a 64 bit version, but the 32 bit will download videos for youtube as in a native 32 bit system.\n</code></pre>\n\n<p><strong><em>Nowadays they have released a 64 bit version <a href=\"http://www.miksoft.net/products/mmc_1.7.7_amd64.deb\" rel=\"nofollow noreferrer\">right here</a>.</em></strong></p>\n\n<p>Additionally, take a look at this: <a href=\"https://askubuntu.com/questions/27646/youtube-dl-error-please-help-in-this-to-resolve/27659#27659\">https://askubuntu.com/questions/27646/youtube-dl-error-please-help-in-this-to-resolve/27659#27659</a></p>\n\n<p>Pasted here for your convenience:</p>\n\n<blockquote>\n <p>If you are interested on obtaining the\n video take a look at this, other way\n look into another answer in order to\n see if you can solve your problem with\n youtube-dl. Thank you.</p>\n \n <p>Notwithstanding that youtube-dl is\n great in a terminal, there are several\n ways to gather the videos from the\n youtube buffer, one of which is the\n usage of <code>totem</code> in order to play the\n video and then extract the buffered\n video from the <code>/tmp</code> folder.</p>\n \n <p>In the past (and depending on how\n updated is your system: maybe your\n case), the buffered videos were saved\n into the <code>/tmp</code> folder also by some\n browsers (Google Chrome and Chromium\n Browser tested by me), but somehow\n after updating that behaviour simply\n stopped.</p>\n \n <p>When watching the videos or simply by\n open it to allow the buffer to\n increase via web browser, now they are\n saved into the\n <code>/home/USERNAME/.cache/google-chrome/Default/Cache</code>\n folder. (where USERNAME is your\n username or home folder name).</p>\n \n <p>As I said before, the usage of totem\n is yet observing this behaviour.</p>\n</blockquote>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2011-03-19T16:23:09.570",
"id": "34852",
"postId": "31084",
"score": "0",
"text": "Ya, I was about to mention `/tmp` too, but that doesn't seem to be true anymore.",
"userDisplayName": null,
"userId": "5"
},
{
"creationDate": "2011-03-19T16:29:09.187",
"id": "34854",
"postId": "31084",
"score": "0",
"text": "Thank you for your comment George Edison. /tmp buffering behaviour simply stopped working, so, after a couple of weeks trying to find a solution I found in google what I posted here. Even so, the Mobile Media Converter seems to continue working pretty fine. It is my favorite for now. :)",
"userDisplayName": null,
"userId": "9598"
},
{
"creationDate": "2011-03-20T17:15:13.320",
"id": "34999",
"postId": "31084",
"score": "0",
"text": "You guys know why that traditional /tmp way is not working ? it is the most easiest way for me to download youtube videos? But now it is not existing.",
"userDisplayName": null,
"userId": "4162"
},
{
"creationDate": "2011-03-20T17:38:49.383",
"id": "35003",
"postId": "31084",
"score": "0",
"text": "I knew about Mobile Media convertor before. But I did not knew that it also downloads youtube videos. So far as of now Mobile Media is the only GUI app worked for me to download youtube video. Command line is youtube-dl. Thank you.",
"userDisplayName": null,
"userId": "4162"
},
{
"creationDate": "2011-03-21T15:27:21.187",
"id": "35153",
"postId": "31084",
"score": "0",
"text": "I couldn't find the reference on which I readed that Google is implementing a new method for caching, which leads to prevent copyright issues, piracy and other facts. Unfortunatelly this seems not to be in our hands to re-program. Who knows? I haven't tried with the source code of chromium-browser but I think it can be achieved. Fortunatelly, this is Linux. There are lots of alternatives to almost everything.",
"userDisplayName": null,
"userId": "9598"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-19T16:16:46.623",
"id": "31084",
"lastActivityDate": "2013-04-26T18:30:16.873",
"lastEditDate": "2017-04-13T12:24:29.360",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "9598",
"parentId": "31077",
"postTypeId": "2",
"score": "3"
} | [
{
"accepted": null,
"body": "<p>YouTube often changes their system, breaking such tools (probably deliberately) which means that the tools in the repositories quickly become out of date.</p>\n\n<p>I recommend downloading the <a href=\"http://rg3.github.com/youtube-dl/download.html\">latest version</a>:</p>\... | null | null | 2011-04-30T01:54:04.343 | null | null |
31080 | 1 | 31248 | 2011-03-19T15:33:54.123 | 4 | 2537 | <p>So I was facing weird graphics drivers issues due to the <a href="https://askubuntu.com/questions/30088/thinkpad-w510-with-default-graphics-drivers-shows-weird-brightness-issues">default nouveau drivers that came installed with Ubuntu 10.10</a> hence I installed the latest nVidia graphics drivers & the weird graphics issues stopped happening. So far so good, but when I tried to shut down the laptop it got stuck at the window with text </p>
<pre><code>15, shutting down...
modem-manager: Caught signal 15, shutting down...
init: Disconnected from system us
init: dbus main process (1107) killed by TERM signal
</code></pre>
<p>And this happens .everytime.without.fail. I tried updating the kernel and any/all drivers through update manager but it still happens. Not only this even the startup screen is totally screwed up. It just displays Ubuntu 10.10 in text with 3 dots. But that is acceptable. To power cycle down the laptop each and everytime for shutdown is not. Same goes for when I try to restart.</p>
<p>Interesting thing is if I try to shutdown the laptop when I am on the login screen it does so without any problems.</p>
<p>I googled & many people seem to face the same issue but I couldn't find any silver bullet hoping to find one here. </p>
| 12256 | -1 | 2017-04-13T12:23:27.200 | 2012-01-24T15:52:41.810 | Installing nVidia drivers for Quadro FX 880M on 10.10 caused shutdown/startup issues | [
"10.10",
"nvidia",
"graphics",
"shutdown",
"documentation"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T17:46:51.370",
"id": "35007",
"postId": "31080",
"score": "0",
"text": "definitely a driver issue, the reason it doesn't evidence itself on the login screen is that it's still using the old plymouth driver(generic) and not the REAL driver for whatever. file a bug w... | {
"accepted": true,
"body": "<p>Ok. I think I figured out to resolve this. I can't believe it is so simple. Just went to this page on Ubuntu Wiki - <a href=\"https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia\" rel=\"nofollow\">https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia</a>\nand then followed the recommended steps for Ubuntu 10.10 & we are all set. Just pasting here steps for reference - </p>\n\n<blockquote>\n <p>Version 96.43.18 is broken ,Go to\n System->Administration->Software\n sources then go to the update's\n tab--tick proposed update\n sources--close & refesh. please follow\n this link for more infomantion\n <a href=\"http://joeslifewithubuntu.blogspot.com/2010/12/update-on-nvidia-96-driver-with-ubuntu.html\" rel=\"nofollow\">http://joeslifewithubuntu.blogspot.com/2010/12/update-on-nvidia-96-driver-with-ubuntu.html</a></p>\n</blockquote>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-20T22:07:34.243",
"id": "31248",
"lastActivityDate": "2012-01-24T15:52:41.810",
"lastEditDate": "2012-01-24T15:52:41.810",
"lastEditorDisplayName": null,
"lastEditorUserId": "3037",
"ownerDisplayName": null,
"ownerUserId": "12256",
"parentId": "31080",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": true,
"body": "<p>Ok. I think I figured out to resolve this. I can't believe it is so simple. Just went to this page on Ubuntu Wiki - <a href=\"https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia\" rel=\"nofollow\">https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia</a>\nand then... | null | null | null | null | null |
31081 | 1 | 31082 | 2011-03-19T15:02:28.683 | 147 | 258714 | <p>What's the difference between the Server version of Ubuntu and the Desktop version?</p>
| 12670 | 618353 | 2022-04-18T12:02:13.860 | 2022-04-18T12:03:20.680 | What's the difference between the Server version and the Desktop version? | [
"distro-recommendation"
] | 4 | 1 | CC BY-SA 4.0 | [
{
"creationDate": "2013-06-25T20:42:20.783",
"id": "394952",
"postId": "31081",
"score": "1",
"text": "which one is better? I have an Acer Aspire One 1gb RAM, 1,60GHZ processor... It's an old computer, but I've always used Ubuntu distros with it. I recently installed Ubuntu 12.10 and it's too sl... | {
"accepted": true,
"body": "<p>Copied as-is from <a href=\"https://help.ubuntu.com/community/ServerFaq#What.27s_the_difference_between_desktop_and_server.3F\" rel=\"nofollow noreferrer\">Ubuntu docs</a>:</p>\n<blockquote>\n<ol>\n<li>The first difference is in the CD contents. The "Server" CD avoids including what Ubuntu considers desktop packages (packages like X,\nGnome or KDE), but does include server related packages (Apache2,\nBind9 and so on). Using a Desktop CD with a minimal installation and\ninstalling, for example, apache2 from the network, one can obtain the\nexact same result that can be obtained by inserting the Server CD and\ninstalling apache2 from the CD-ROM.</li>\n<li>The Ubuntu Server Edition installation process is slightly different from the Desktop Edition. Since by default Ubuntu Server\ndoesn't have a GUI, the process is menu driven, very similar to the\nAlternate CD installation process.</li>\n<li>Before 12.04, Ubuntu server installs a server-optimized kernel by default. Since 12.04, there is no difference in kernel between Ubuntu\nDesktop and Ubuntu Server since linux-image-server is merged into\nlinux-image-generic.</li>\n<li>For Ubuntu LTS releases before 12.04, the Ubuntu Desktop Edition only receives 3 years of support. This was increased to 5 years in\nUbuntu LTS 12.04 In contrast, all Ubuntu LTS Server Edition releases\nare supported for 5 years.</li>\n</ol>\n</blockquote>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2019-02-22T15:59:37.483",
"id": "1851955",
"postId": "31082",
"score": "3",
"text": "So basically, server and desktop are the same except server has Apache and desktop has a GUI.",
"userDisplayName": null,
"userId": "458247"
}
],
"communityOwnedDate": "2015-09-08T10:27:36.930",
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2011-03-19T15:17:24.710",
"id": "31082",
"lastActivityDate": "2022-04-18T12:03:20.680",
"lastEditDate": "2022-04-18T12:03:20.680",
"lastEditorDisplayName": null,
"lastEditorUserId": "618353",
"ownerDisplayName": "Tshepang",
"ownerUserId": "2591",
"parentId": "31081",
"postTypeId": "2",
"score": "102"
} | [
{
"accepted": true,
"body": "<p>Copied as-is from <a href=\"https://help.ubuntu.com/community/ServerFaq#What.27s_the_difference_between_desktop_and_server.3F\" rel=\"nofollow noreferrer\">Ubuntu docs</a>:</p>\n<blockquote>\n<ol>\n<li>The first difference is in the CD contents. The "Server" CD avoi... | null | null | null | null | oneat |
31086 | 1 | null | 2011-03-19T16:27:37.317 | 3 | 620 | <pre><code>Checking for a new ubuntu release
Done Upgrade tool signature
Done Upgrade tools
Done downloading
extracting 'maverick.tar.gz'
authenticate 'maverick.tar.gz' against 'maverick.tar.gz.gpg'
tar: Removing leading `/' from member names
Reading cache
Checking package manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Building data structures... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Building data structures... Done
Updating repository information
WARNING: Failed to read mirror file
A fatal error occurred
Please report this as a bug and include the files
/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in
your report. The upgrade has aborted.
Your original sources.list was saved in
/etc/apt/sources.list.distUpgrade.
Traceback (most recent call last):
File "/tmp/tmpe_xVWd/maverick", line 7, in <module>
sys.exit(main())
File "/tmp/tmpe_xVWd/DistUpgradeMain.py", line 158, in main
if app.run():
File "/tmp/tmpe_xVWd/DistUpgradeController.py", line 1616, in run
return self.fullUpgrade()
File "/tmp/tmpe_xVWd/DistUpgradeController.py", line 1534, in
fullUpgrade
if not self.updateSourcesList():
File "/tmp/tmpe_xVWd/DistUpgradeController.py", line 664, in
updateSourcesList
if not self.rewriteSourcesList(mirror_check=True):
File "/tmp/tmpe_xVWd/DistUpgradeController.py", line 486, in
rewriteSourcesList
distro.get_sources(self.sources)
File "/tmp/tmpe_xVWd/distro.py", line 103, in get_sources
source.template.official == True and
AttributeError: 'Template' object has no attribute 'official'
</code></pre>
<p>This is what i got when i tried to upgrade the desktop edition:sudo do-release-upgrade.
One more info: I have kde installed.</p>
| 12405 | null | null | 2011-03-19T20:29:17.740 | Upgrade 10.04LTS to 10.10 problem | [
"10.10",
"10.04",
"upgrade"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>The first hit on Google (searching for \"AttributeError: 'Template' object has no attribute 'official'\") yields the next Ubuntu Forums thread: <a href=\"http://ubuntuforums.org/showthread.php?t=1595020\" rel=\"nofollow\">Upgrading to 10.10: \"AttributeError: 'Template' objec... | null | null | null | null | null |
31094 | 1 | 31262 | 2011-03-19T17:37:07.077 | 9 | 18754 | <p>What is the way to be able to type Japanese characters? Could someone make a how-to in order to explain the few steps to get it?</p>
| 5592 | 24694 | 2012-03-18T01:04:29.137 | 2021-06-10T08:30:03.090 | How can I type Japanese characters? | [
"language-support",
"ibus",
"input-language",
"special-characters",
"japanese"
] | 3 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>Since Ubuntu 9.10, you just have to follow those few steps :</p>\n\n<ul>\n<li>Install <a href=\"http://apt.ubuntu.com/p/ibus-anthy\" rel=\"noreferrer\">ibus-anthy</a></li>\n<li>Go to System -> Preferences -> Keyboard input methods</li>\n<li>Accept to activate iBus (pop-up window)</li>\n<li>Add Japanese-Anthy in the Method tab</li>\n<li>Disconnect and reconnect</li>\n<li>Open an input field (like Gedit for instance), hit Control + Space ; you should be able to type Japanese characters</li>\n</ul>\n\n<p>In order to have iBus launched automatically on boot, go to System -> Administration -> Languages and select iBus as the input method.</p>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2012-01-18T12:38:58.580",
"id": "110300",
"postId": "31262",
"score": "0",
"text": "In 11.04+ is there any way to consolidate the ibus keyboard layout icon with the regular layout selector icon?",
"userDisplayName": null,
"userId": "145"
},
{
"creationDate": "2016-09-06T03:34:20.123",
"id": "1246644",
"postId": "31262",
"score": "0",
"text": "What is meant by 'disconnect and reconnect' please?",
"userDisplayName": null,
"userId": "117018"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-21T00:15:24.517",
"id": "31262",
"lastActivityDate": "2016-03-14T07:38:00.097",
"lastEditDate": "2016-03-14T07:38:00.097",
"lastEditorDisplayName": null,
"lastEditorUserId": "457662",
"ownerDisplayName": null,
"ownerUserId": "5592",
"parentId": "31094",
"postTypeId": "2",
"score": "9"
} | [
{
"accepted": null,
"body": "<p>Read the following:</p>\n\n<ul>\n<li><p><a href=\"https://help.ubuntu.com/community/JapaneseInput\" rel=\"nofollow\">Japanese Input</a></p></li>\n<li><p><a href=\"https://help.ubuntu.com/community/SCIM\" rel=\"nofollow\">SCIM</a></p></li>\n</ul>\n",
"commentCount": "0",
... | null | null | null | null | null |
31100 | 1 | 31116 | 2011-03-19T18:37:04.117 | 24 | 91284 | <p>What is best way to install a Cisco VPN client application in Ubuntu?</p>
| 11749 | 36499 | 2011-12-22T04:19:56.790 | 2016-11-30T16:22:57.487 | How do I install the Cisco VPN client? | [
"vpn",
"cisco"
] | 4 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-19T19:52:43.700",
"id": "34876",
"postId": "31100",
"score": "0",
"text": "Which client are we talking about here? VPNC? AnyConnect? Or the network-manager-vpnc plug-in? Or are you asking \"what clients are available?\" in which case, I might just have answered yo... | {
"accepted": true,
"body": "<p>You need to install network-manager-vpnc, then configure it through network manager.</p>\n\n<pre><code>sudo apt-get install network-manager-vpnc\n</code></pre>\n\n<p>That will install <code>vpnc</code>, <code>network-manager-vpnc</code> and <code>network-manager-vpnc-gnome</code>.</p>\n\n<p>Now LEFT click on your network manager applet :</p>\n\n<p><img src=\"https://i.stack.imgur.com/C5Bkp.jpg\" alt=\"Network Manager\"></p>\n\n<p>And choose \"Configure VPN...\", then click \"Add\" and drop the menu to \"Cisco Compatible VPN\".</p>\n\n<p><img src=\"https://i.stack.imgur.com/uy3C2.jpg\" alt=\"VPN Configureation\"></p>\n\n<p>And enter your details. To start your VPN, just follow the steps again, but instead of \"Configure VPN\", you'll click on the entry you created.</p>\n",
"commentCount": "9",
"comments": [
{
"creationDate": "2011-03-19T22:34:39.790",
"id": "34901",
"postId": "31116",
"score": "0",
"text": "i experienced strange \"restart your pc to make authentication work\" problem with this. If it says \"wrong authentification just try to restart your pc\".",
"userDisplayName": null,
"userId": "1990"
},
{
"creationDate": "2011-03-20T06:12:30.617",
"id": "34930",
"postId": "31116",
"score": "0",
"text": "vpn connection failed...i tried make restart many times....same issue....",
"userDisplayName": null,
"userId": "11749"
},
{
"creationDate": "2011-03-20T06:36:51.990",
"id": "34933",
"postId": "31116",
"score": "0",
"text": "should i install cisco certificate...encryption method should be the same .....",
"userDisplayName": null,
"userId": "11749"
},
{
"creationDate": "2011-04-08T01:10:19.180",
"id": "38028",
"postId": "31116",
"score": "0",
"text": "You can also do a \"sudo killall NetworkManager\" instead of a full reboot.",
"userDisplayName": null,
"userId": "13762"
},
{
"creationDate": "2011-05-05T16:45:24.677",
"id": "44278",
"postId": "31116",
"score": "1",
"text": "also if your administrator gives you a .pcf file (or you can find it on a windows machine), you can just hit import and all your connection details will get filled in automagically.",
"userDisplayName": null,
"userId": "681"
},
{
"creationDate": "2016-08-12T07:20:53.487",
"id": "1226603",
"postId": "31116",
"score": "0",
"text": "After I installing network-manager-vpnc, my connection type still only supports PPTP VPN. I am using Ubuntu 16.04",
"userDisplayName": null,
"userId": "581159"
},
{
"creationDate": "2017-06-07T06:21:00.347",
"id": "1458050",
"postId": "31116",
"score": "3",
"text": "@JayWong I had to manually `sudo apt install network-manager-vpnc-gnome` for it to show up in the GUI.",
"userDisplayName": null,
"userId": "181442"
},
{
"creationDate": "2017-12-23T08:20:53.377",
"id": "1593536",
"postId": "31116",
"score": "0",
"text": "If you don't have a **group password**, after you click on **Add VPN**, you should choose **Cisco AnyConnect Compatible VPN(openconnect)** instead of **Cisco Compatible VPN (vpnc)**.",
"userDisplayName": null,
"userId": "320930"
},
{
"creationDate": "2022-05-02T11:42:06.697",
"id": "2442167",
"postId": "31116",
"score": "0",
"text": "Currently using Ubuntu 20 and I also had to manually do what @FriendFX said `sudo apt install network-manager-vpnc-gnome`",
"userDisplayName": null,
"userId": "683076"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T21:15:41.270",
"id": "31116",
"lastActivityDate": "2011-03-19T21:15:41.270",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "861",
"parentId": "31100",
"postTypeId": "2",
"score": "21"
} | [
{
"accepted": true,
"body": "<p>You need to install network-manager-vpnc, then configure it through network manager.</p>\n\n<pre><code>sudo apt-get install network-manager-vpnc\n</code></pre>\n\n<p>That will install <code>vpnc</code>, <code>network-manager-vpnc</code> and <code>network-manager-vpnc-gnome</c... | null | null | null | null | null |
31102 | 1 | null | 2011-03-19T19:22:38.597 | 1 | 442 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://askubuntu.com/questions/78522/how-to-open-the-unity-dash-when-hitting-the-top-left-corner-of-the-screen">How to open the Unity dash when hitting the top left corner of the screen?</a> </p>
</blockquote>
<p>Gnome Shell gives uses the option of flicking the left upper corner with the mouse to achieve the same result as clicking ACTIVITIES. Will Unity give users the same option with respect to revealing the launcher? Can users move the mouse to the left upper corner instead of the left edge?</p>
<p>(There is a separate question for <a href="https://askubuntu.com/questions/78522/how-to-open-the-unity-dash-when-hitting-the-top-left-corner-of-the-screen">opening the dash</a> with the same action.)</p>
| null | -1 | 2017-04-13T12:24:13.310 | 2012-01-24T08:35:22.867 | Will Unity lets users flick the left upper corner to reveal launcher? | [
"unity",
"launcher",
"interface"
] | 1 | 0 | CC BY-SA 3.0 | [] | null | [
{
"accepted": null,
"body": "<p>Try this:</p>\n\n<ul>\n<li>Install <code>xdotool</code> (a program that allows you to simulate X11 keyboard/mouse input).</li>\n<li>Run <code>ccsm</code> (the CompizConfig Settings Manager).</li>\n<li>Activate the <em>Commands</em> plugin (probably will crash Unity, do <kbd>C... | null | null | 2012-01-24T15:56:09.023 | null | user12671 |
31103 | 1 | null | 2011-03-19T19:25:19.017 | 10 | 1509 | <p>Getting this set up was relatively simple on Windows, but I can't quite figure out how to go about doing it in Ubuntu.</p>
<p>My phone is paired with the Ubuntu machine, and I simply want to pipe the audio from the phone to it. However, I have no idea how to do this.</p>
<p><strong>Note:</strong> I have <a href="https://launchpad.net/blueman" rel="nofollow">Blueman</a> installed, if that helps.</p>
| 5 | 5 | 2011-03-20T04:48:00.627 | 2011-03-24T07:08:01.657 | How to get my bluetooth-enabled phone to pipe its audio through my Ubuntu machine? | [
"sound",
"bluetooth"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2012-03-08T17:42:18.543",
"id": "131124",
"postId": "31103",
"score": "0",
"text": "The top answer to http://askubuntu.com/questions/2573/can-i-use-my-computer-as-an-a2dp-receiver also answers your question.",
"userDisplayName": null,
"userId": "16134"
}
] | null | [
{
"accepted": null,
"body": "<p>here u go u should take a look at <a href=\"http://jprvita.wordpress.com/2009/12/15/1-2-3-4-a2dp-stream/\" rel=\"nofollow\"><strong>A2DP</strong></a> </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
... | null | null | null | null | null |
31104 | 1 | null | 2011-03-19T19:38:53.797 | 0 | 203 | <p><a href="http://packages.ubuntu.com/maverick/sisu" rel="nofollow">sisu</a> is an application for documents structuring, publishing in multiple formats and search.</p>
<p>I was wondering </p>
<ol>
<li>How well it is received by users, and if there are other similar applications that are comparable to or even better than sisu;</li>
<li>if there is some introduction to
show its functionality and how to
use it;</li>
<li>if there is some GUI for it, as it
is command line oriented?</li>
</ol>
<p>Thanks and regards!</p>
| 1471 | 25863 | 2012-06-18T18:12:40.730 | 2012-06-18T18:12:40.730 | Any introduction on how to use sisu? | [
"document"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>I believe the SiSu homepage itself has a very thorough document on using sisu: <a href=\"http://www.sisudoc.org/sisu/sisu_manual/sisu_intro.html\" rel=\"nofollow\">http://www.sisudoc.org/sisu/sisu_manual/sisu_intro.html</a></p>\n",
"commentCount": "0",
"comments": [],... | null | null | null | null | null |
31105 | 1 | 31114 | 2011-03-19T19:47:16.433 | 3 | 1280 | <p>How can I add new logical partition?</p>
<p>I already have an extended partition, so I tried to use GParted to add a new logical partition.</p>
<ol>
<li><p>I tried to resize the extended partition, but such an option is not available.</p></li>
<li><p>I tried to add a new logical partition but it only gave primary partition options.</p></li>
</ol>
| 12139 | 10581 | 2011-03-20T13:43:18.440 | 2011-05-28T10:53:02.230 | How can I add new logical partition? | [
"partitioning"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T21:12:13.153",
"id": "34881",
"postId": "31105",
"score": "0",
"text": "Could you please show the output of fdisk -l /dev/sda (or whatever is the disk in question) ?",
"userDisplayName": null,
"userId": "11616"
}
] | {
"accepted": true,
"body": "<p>You cannot resize the extended partition if any of the partitions on it are in use.</p>\n\n<p>Boot into a LiveCD and use the GParted <strong>without</strong> mounting the partitions. Remember to make a backup before proceeding.</p>\n",
"commentCount": "6",
"comments": [
{
"creationDate": "2011-03-19T21:15:37.387",
"id": "34882",
"postId": "31114",
"score": "0",
"text": "what should I use in liveCD menu?",
"userDisplayName": null,
"userId": "12139"
},
{
"creationDate": "2011-03-19T21:16:58.183",
"id": "34883",
"postId": "31114",
"score": "0",
"text": "Select your language, choose \"Try\" and wait a few seconds. If the desktop shows up, start GParted (it's called Disk Utility if I'm not mistaken)",
"userDisplayName": null,
"userId": "6969"
},
{
"creationDate": "2011-03-19T21:20:08.777",
"id": "34886",
"postId": "31114",
"score": "4",
"text": "No, Disk Utility is `palimpsest`. GParted should be called `Partition Editor` in the `System > Administration` menu.",
"userDisplayName": null,
"userId": "3037"
},
{
"creationDate": "2011-03-19T21:25:27.067",
"id": "34887",
"postId": "31114",
"score": "0",
"text": "Thanks, learned something today. Till now, I was in the assumption that Disk Utility = GParted.",
"userDisplayName": null,
"userId": "6969"
},
{
"creationDate": "2011-03-19T21:47:38.217",
"id": "34890",
"postId": "31114",
"score": "0",
"text": "the problem if I cant reboot computer like if computer server, should be another way",
"userDisplayName": null,
"userId": "12139"
},
{
"creationDate": "2011-03-20T08:59:03.460",
"id": "34940",
"postId": "31114",
"score": "0",
"text": "In that case, you're out of luck unless you're using something like [LVM](http://serverfault.com/q/38542/51929). Messing with partitions while the system is running is a *bad* idea.",
"userDisplayName": null,
"userId": "6969"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T20:38:56.593",
"id": "31114",
"lastActivityDate": "2011-03-19T20:38:56.593",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "6969",
"parentId": "31105",
"postTypeId": "2",
"score": "5"
} | [
{
"accepted": true,
"body": "<p>You cannot resize the extended partition if any of the partitions on it are in use.</p>\n\n<p>Boot into a LiveCD and use the GParted <strong>without</strong> mounting the partitions. Remember to make a backup before proceeding.</p>\n",
"commentCount": "6",
"comments":... | null | null | null | null | null |
31109 | 1 | 31120 | 2011-03-19T20:09:49.793 | 10 | 3641 | <p>I was wondering if there are some applications for downloading files from some popular hosting websites, automating the procedure of waiting and fetching links and downloading files, once we give the applications the links?</p>
<p>Examples of such websites are </p>
<ul>
<li>Rapidshare,</li>
<li>Uploading,</li>
<li>Megaupload,</li>
<li>Filesonic,</li>
<li>Fileserver,</li>
<li>Hotfiles,</li>
<li>Depositefiles,</li>
<li>iFile.</li>
</ul>
<p>But the applications are not necessarily applicable to all of them.</p>
<p>Thanks and regards!</p>
<hr>
<p>ADDED:</p>
<p>I just tried slimrat. It failed to download files from rapidshare. Can it be because the website of rapidshare has changed recently and the parsing functionality for their website by slimrat is not up-to-date yet. </p>
| 1471 | 25863 | 2012-06-18T18:12:35.393 | 2020-01-16T11:56:51.227 | Is there some application to download files from popular file hosting websites? | [
"software-recommendation",
"downloads"
] | 7 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p><a href=\"http://jdownloader.org/\" rel=\"noreferrer\">JDonwloader</a> does exactly that - with some capthca skipping (that doesnt work on all sites)</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-19T21:47:59.310",
"id": "34891",
"postId": "31120",
"score": "0",
"text": "Thanks! Is it in some repository that can be downloaded from synaptic application manager?",
"userDisplayName": null,
"userId": "1471"
},
{
"creationDate": "2011-03-19T22:21:31.217",
"id": "34897",
"postId": "31120",
"score": "0",
"text": "No, last time i downloaded from the website",
"userDisplayName": null,
"userId": "829"
},
{
"creationDate": "2011-03-28T09:40:02.700",
"id": "36284",
"postId": "31120",
"score": "0",
"text": "@Tim There is a ppa for jdownloader:\n\n- sudo apt-get install sun-java6-jre\n- sudo add-apt-repository ppa:jd-team/jdownloader\n- sudo apt-get update\n- sudo apt-get install jdownloader",
"userDisplayName": null,
"userId": "6107"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T21:33:13.627",
"id": "31120",
"lastActivityDate": "2011-03-19T21:33:13.627",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "829",
"parentId": "31109",
"postTypeId": "2",
"score": "5"
} | [
{
"accepted": null,
"body": "<p>Firefox has an add-on for that purpose, called <a href=\"https://addons.mozilla.org/nl/firefox/addon/skipscreen-incredible-rapidsha/\">Skipscreen</a>.</p>\n\n<p><a href=\"https://addons.mozilla.org/nl/firefox/addon/skipscreen-incredible-rapidsha/\">Description from AMO</a>:</... | null | null | null | null | null |
31115 | 1 | null | 2011-03-19T21:03:27.897 | 2 | 25311 | <p>When I run: </p>
<pre><code>svn co http:://mysvnserver.com/trunk --username myuser
</code></pre>
<p>I get error: </p>
<pre><code>svn: Can't create directory .svn': Permission denied
</code></pre>
<p>(I set folder permission to 755 with : <code>chmod -R 755</code> + <code>umask 022</code>, but I get error above)</p>
<p>What should I do?</p>
| 12139 | 10581 | 2011-03-19T21:24:14.807 | 2011-03-24T02:05:35.977 | Error: svn: Can't create directory .svn': Permission denied | [
"permissions",
"svn"
] | 3 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-19T21:18:39.990",
"id": "34884",
"postId": "31115",
"score": "0",
"text": "Please update your [original question](http://askubuntu.com/q/31107/6969), do not create a new one if the original question has no answers or comments yet.",
"userDisplayName": null,
"us... | null | [
{
"accepted": null,
"body": "<p>Your command creates a directory named \"trunk\" in your current directory. You should have write permissions to that folder.</p>\n\n<p>If you want to put the checkout in a different directory, pass it to the command:</p>\n\n<pre><code>svn --username myuser co http://host/tru... | null | null | null | null | null |
31119 | 1 | 31130 | 2011-03-19T21:25:53.567 | 1 | 4253 | <p>I have an Asus EeePC 1005PE netbook and I'm planning on doing a massive re-partitioning (going to install Ubuntu, Mint, XP, etc).</p>
<p>I've noticed it has 2 "special" partitions:</p>
<ul>
<li>a 10Gb Fat32 RESTORE hidden partition (used by BIOS "F9 recovery" feature)</li>
<li>a 16Mb "unknown" partition at the end of the drive (used by BIOS "Boot Booster" feature)</li>
</ul>
<p>So, for both partitions, my question is:</p>
<ul>
<li><p>Can I move/resize the recovery partition freely?</p>
</li>
<li><p>What are the requirements for it? (I mean, for it still to be found by BIOS when I press F9/Activate BootBooster.) Partition table order? Partition type? Flags? Label? UUID?</p>
</li>
<li><p>Can I make it a logical (instead of primary) partition?</p>
</li>
<li><p>Must it be the flagged as boot?</p>
</li>
</ul>
<p>Most importantly: Where can I find <em>any</em> official documentation about it? I've already seen much (mis)information about it. Some say Boot Booster partition must be last (in partition table), some say Recovery must be 2nd, that it must be bootable, etc. How can I know what is <em>really</em> needed for the BIOS to use both F9 and Boot Booster?</p>
<p><strong>Note</strong>: I'm using GParted from a Live USB Stick (Mint 10 / Ubuntu 10.10), and I've noticed that, since the filesystem type of the Boot Booster is not recognized, it can't move or resize it. Can I delete it and re-create it somewhere else? Whenever I create a 0xEF partition GParted crashes and quits and I cannot open it again (must delete the partition using fdisk / cfdisk).</p>
| 11015 | 955434 | 2021-11-21T09:07:43.450 | 2021-11-21T09:07:43.450 | Install Ubuntu on Asus Eee-PC 1005PE - Dealing with special partitions | [
"partitioning",
"system-installation",
"gparted",
"eeepc"
] | 1 | 1 | CC BY-SA 4.0 | [
{
"creationDate": "2013-03-12T13:41:34.480",
"id": "334458",
"postId": "31119",
"score": "0",
"text": "Any official information is TOP SECRET and it is necessary to sign a Non Disclosure Agreement with own blood only :( If the half of mankind would not be forced to discover the wheel each day ag... | {
"accepted": true,
"body": "<p>I have an eeePC 1000HE and have partitioned it many times. First I must say that if you think to delete this 2 little partitions you will lose your boot booster and it will boot with \"ASUS\" gray boot screen instead of quick black screen.(which is very important and will give you at least 10 sec. of advantage in booting time) I do not recommend you to move, to delete or to touch this parts.\nI have triple boot (Ubuntu netbook 10.04, Meego and XP).You can make partitions with Gparted and with XP hard disk manager without touching those parts. </p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-21T04:12:33.520",
"id": "35076",
"postId": "31130",
"score": "0",
"text": "But can i move them around, at least resize them? Is the order in the partition table relevant?",
"userDisplayName": null,
"userId": "11015"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-19T23:26:33.520",
"id": "31130",
"lastActivityDate": "2011-03-19T23:26:33.520",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "12610",
"parentId": "31119",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": true,
"body": "<p>I have an eeePC 1000HE and have partitioned it many times. First I must say that if you think to delete this 2 little partitions you will lose your boot booster and it will boot with \"ASUS\" gray boot screen instead of quick black screen.(which is very important and will gi... | null | null | null | null | null |
31122 | 1 | null | 2011-03-19T22:05:22.157 | 0 | 475 | <p>I have been on 9.10 for over a year on the grounds that if it ain't broke, don't fix it. However, I had a spare weekend and figured it was probably about time...</p>
<p>I performed an upgrade to 10.4, and everything seemed to proceed smoothly, so I took the plunge and went for 10.10.</p>
<p>Disaster.</p>
<p>My twinview Nvidia display which had been working perfectly is now broken. On boot everything seems fine, but when X starts and the second monitor springs into life the primary winks out and switches off - almost as if its been put into an unsupported display mode.</p>
<p>The system seems to think there's a second monitor - the nvidia logo is split across the two screens, but it can't seem to start.</p>
<p>Things I've tried:</p>
<ul>
<li>Swapping the monitors (one is older than the other, and its definitely the port not the actual monitor)</li>
<li>Rolling back to an old Xorg conf from prior to the upgrade</li>
<li>Installing a non-beta driver direct from Nvidia (this seems to start both monitors but then apparently stops boot and causes the second display to 'wink'. Twinview seems non-functional, both displays are mirrors)</li>
<li>Disabling EDID</li>
<li>Disabling twinview, logging in and attempting to use the Nvidia config to re-detect the monitors (second monitor is falsely detected and won't go higher than 1024x768. Selecting 'apply' causes one screen to go blank and the other to display garbage)</li>
<li>googling for about 5 hours looking for similar problems, none of the offered solutions seemed to work</li>
</ul>
<p>I'm at a loss, and it is looking very much like I'm going to have to go through a time consuming reinstall to downgrade back to the working 10.4. </p>
<p>Any thoughts?</p>
| 12677 | 235 | 2011-05-22T14:22:32.823 | 2012-02-15T12:37:27.183 | Twinview broken on upgrade to 10.10 | [
"10.10",
"upgrade",
"nvidia",
"twinview"
] | 1 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-21T02:56:24.003",
"id": "35065",
"postId": "31122",
"score": "0",
"text": "What nvidia card do you have? There's a known bug with 8400 cards which has exactly these symptoms. Workaround is to go back to the 173 driver.",
"userDisplayName": null,
"userId": "1243... | null | [
{
"accepted": null,
"body": "<p>I used TwinView on 10.10 without problems, so I think it's just an issue with old settings.</p>\n\n<p>Try deleting Xorg.conf altogether (that's okay to do, because no Xorg.conf file is default now), restarting, and then checking that your Hardware Drivers is selected on the r... | null | null | null | null | null |
31126 | 1 | null | 2011-03-19T22:58:19.410 | 7 | 542 | <p>I'm trying <kbd>Alt</kbd> + <kbd>SysRq</kbd> + <kbd>REISUB</kbd> to see how it would be used to restart my system safely in case of emergency.</p>
<p>However, I find that <kbd>Alt</kbd> + <kbd>SysRq</kbd> + <kbd>REISUB</kbd> hangs at "resetting" (without actually resetting/restarting) in Maverick.</p>
<p>All other <kbd>SysRq</kbd> combinations appear to work correctly (i.e. <kbd>Alt</kbd> + <kbd>SysRq</kbd> + <kbd>REISU</kbd>).</p>
<p>cat /proc/sys/kernel/sysrq returns 0. But I'm not sure it's relevant because <kbd>Alt</kbd> + <kbd>SysRq</kbd> certainly works.</p>
<p>What can I do to have "B" actually restart the system?</p>
| null | 169736 | 2014-05-26T22:37:16.007 | 2014-05-26T22:37:16.007 | ALT+SysRq+REISUB hangs at "resetting" (without actually resetting/restarting) | [
"kernel",
"sysrq"
] | 1 | 5 | CC BY-SA 3.0 | [
{
"creationDate": "2012-08-17T08:24:27.327",
"id": "218927",
"postId": "31126",
"score": "1",
"text": "Does SysRq+O (for Off) work? I used to have a system where that worked, but not reBoot, despite all my efforts.",
"userDisplayName": null,
"userId": "20965"
},
{
"creationDate":... | null | [
{
"accepted": null,
"body": "<p><strong>Alt + SysRq +</strong></p>\n\n<p><strong>R</strong> - takes keyboard and mouse control from the X server. This can be useful if the X-Server crashed, you can change to a console and kill the X-Server or check the error log.\nNOTE:- The documentation refers to this key... | null | null | null | null | user12681 |
31129 | 1 | 51393 | 2011-03-19T23:15:45.177 | 2 | 2280 | <p>I managed to get my wireless working beautifully (ath5k driver working great), and it works over a disable/enable wireless cycle, even a suspend/wakeup cycle (read some people have issues with that). Unfortunately, I discovered that if I press Fn+F2 on my keyboard (Asus EeePC 900HA, so that's the wireless toggle key), wireless then stops working until I restart the computer.</p>
<p>How can I fix this? I'm running UNR 10.10 (with Unity turned off tyvm!). I heard something about Jupiter controlling these keys, but what about asus-laptop? How can I fix this behaviour?</p>
<p>TIA.
(Note, I'm a power user, but still fairly new to Linux. I'm picking up speed though).</p>
| 12645 | null | null | 2011-07-01T11:33:58.413 | ASUS EeePC Fn+F2 ruins wireless until restart | [
"10.10",
"wireless",
"ubuntu-netbook",
"shortcut-keys",
"eeepc"
] | 2 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-05-01T08:59:35.410",
"id": "42605",
"postId": "31129",
"score": "0",
"text": "Did you try Ndiswrapper for the wi-fi? Does it give you the same issue?",
"userDisplayName": null,
"userId": "271"
},
{
"creationDate": "2011-05-06T08:41:51.993",
"id": "4453... | {
"accepted": true,
"body": "<p>I too have Maverick on a eee900A and I was having the same problem with the wireless.\nI found \n<a href=\"http://ubuntuforums.org/showthread.php?t=1415671\" rel=\"nofollow\">this fix</a>, it worked beatifully for me.\nHope it helps</p>\n\n<p>Ciao</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-07-01T11:33:58.413",
"id": "51393",
"lastActivityDate": "2011-07-01T11:33:58.413",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "20949",
"parentId": "31129",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": null,
"body": "<p>I have an Asus EeePC myself too, the 1005PE, but im using Lucid 10.04 instead. Ive bought it soon after Lucid was released, and decided to stick with an LTS release. After all, netbooks have limited hardware, and i depend on it on a daily basis, for work and college, so bleed... | null | null | null | null | null |
31131 | 1 | 31133 | 2011-03-19T23:42:54.957 | 15 | 7063 | <p>The default behavior of my shell window is to create tabs. I can switch between those tabs but only one tab can be visible at a time.</p>
<p>Is it possible to open multiple shells in the same window? E.g. have a window split 4-ways with each pane running it's own instance of a shell. I would prefer this over tabs since I can run my shell window full-screen at see 4 shells at the same time.</p>
| 1202 | 12435 | 2011-03-21T03:00:56.473 | 2022-12-10T22:26:45.503 | Multiple shells in one window | [
"command-line",
"gnome"
] | 5 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2022-09-28T14:23:04.027",
"id": "2496013",
"postId": "31131",
"score": "0",
"text": "It's an old post, but I'll leave a usefull reference:\nhttps://github.com/pvolok/mprocs See this [answer](https://askubuntu.com/a/1432735/430645) also",
"userDisplayName": null,
"userI... | {
"accepted": true,
"body": "<p><a href=\"https://launchpad.net/ubuntu/+source/terminator\" rel=\"nofollow noreferrer\">terminator</a> <a href=\"http://apt.ubuntu.com/p/terminator\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install terminator\"></a>\n can do exactly this. It is available in the software center.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-20T00:17:42.557",
"id": "34911",
"postId": "31133",
"score": "0",
"text": "This works great. Very customizable as well.",
"userDisplayName": null,
"userId": "1202"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-19T23:53:11.487",
"id": "31133",
"lastActivityDate": "2012-01-06T17:27:15.793",
"lastEditDate": "2017-03-11T19:00:05.787",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "5297",
"parentId": "31131",
"postTypeId": "2",
"score": "18"
} | [
{
"accepted": true,
"body": "<p><a href=\"https://launchpad.net/ubuntu/+source/terminator\" rel=\"nofollow noreferrer\">terminator</a> <a href=\"http://apt.ubuntu.com/p/terminator\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install terminator\"></a>\n can do exactly th... | null | null | null | null | null |
31139 | 1 | 31151 | 2011-03-20T01:00:35.297 | 2 | 397 | <p>I wanted to test out XFCE, so I installed Xubuntu-Desktop, but unfortunately, it's changed my logonscreen, and all those other types of pre/post session screens. How do I return them to the Gnome defaults? I can't find any options within Gnome itself, like I could in my brief fling with KDE.</p>
<p>Thanks for your time.</p>
| 12645 | null | null | 2011-03-20T04:10:18.177 | How do I get the Ubuntu loginscreen etc back after installing Xubutu-Desktop? | [
"10.10",
"gnome",
"login-screen",
"xfce"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T01:49:50.357",
"id": "34923",
"postId": "31139",
"score": "0",
"text": "I will post detailed information later. You will have to change multiple things to get them back to normal.",
"userDisplayName": null,
"userId": "1992"
}
] | {
"accepted": true,
"body": "<p>You need to update the default splash screen. For that you need to type:</p>\n\n<p><code>sudo update-alternatives --config default.plymouth</code></p>\n\n<p>It should present a list of alternative splash-screens. Select the one your want.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T04:10:18.177",
"id": "31151",
"lastActivityDate": "2011-03-20T04:10:18.177",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "3778",
"parentId": "31139",
"postTypeId": "2",
"score": "0"
} | [
{
"accepted": null,
"body": "<p>Run this in terminal:</p>\n\n<pre><code>dpkg-reconfigure gdm\n</code></pre>\n\n<p>and say that you want gdm to be default login manager.</p>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2011-03-20T02:38:30.073",
"id": "34925",
... | null | null | null | null | null |
31147 | 1 | 31166 | 2011-03-20T03:14:52.043 | 17 | 169901 | <p>I'm having trouble with read/write permissions on my Samba server, how do I fix my smb.conf and file permissions to have a more unified access?</p>
<p>smb.conf</p>
<pre><code>[global]
workgroup = workgroup
netbios name = LnxNAS
server string = %h
wins support = no
dns proxy = no
security = user
encrypt passwords = yes
panic action = /usr/share/samba/panic-action %d
[homes]
comment = Home Directories
[Video]
path = /data/eric/Videos
[Music]
path = /data/eric/Music
[Pictures]
path = /data/eric/Pictures
[data]
path = /data
writeable = Yes
</code></pre>
<p>my ls -l of /data/eric/Pictures</p>
<pre><code>drwxrwxrwx 2 ericfoss root 4096 2011-03-13 22:09 Android Projs
drwxrwxrwx 3 ericfoss root 4096 2011-03-13 22:09 Automotive
-rwxrwxrwx 1 ericfoss root 2439 2010-12-17 17:03 BDD reduction.png
-rwxrwxrwx 1 ericfoss root 2722 2010-12-17 16:55 BDD Tree.png
-rwxrwxrwx 1 ericfoss root 7341 2010-12-17 16:46 BDD Tree.xcf
-rwxrwxrwx 1 ericfoss root 72421 2007-11-22 22:59 Bum Ninja.jpg
-rwxrwxrwx 1 ericfoss root 32152 2010-12-17 21:25 cell transition.png
-rwxrwxrwx 1 ericfoss root 40212 2010-12-17 17:55 control graph.png
drwxrwxrwx 2 ericfoss root 4096 2011-03-13 22:09 Crap
-rwxrwxrwx 1 ericfoss root 82 2010-09-20 17:18 desktop.ini
ericfoss@SERVER:~$
</code></pre>
<p>Output from samba4 restart</p>
<pre><code>sudo /etc/init.d/samba4 restart
* Stopping Samba 4 daemon samba [ OK ]
* Starting Samba 4 daemon samba
Unknown parameter encountered: "guest ok"
Ignoring unknown parameter "guest ok"
Unknown parameter encountered: "guest ok"
Ignoring unknown parameter "guest ok"
Unknown parameter encountered: "writeable"
Ignoring unknown parameter "writeable"
Unknown parameter encountered: "valid users"
Ignoring unknown parameter "valid users"
[ OK ]
</code></pre>
<p>I can't delete, rename or create files...</p>
| 10965 | 10965 | 2011-03-20T22:41:09.617 | 2022-11-13T04:18:34.013 | How to grant write permissions in Samba? | [
"permissions",
"samba",
"users",
"file-sharing"
] | 4 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Samba has its own layer of access control for each share. There are two basic options</p>\n\n<ul>\n<li><code>read only</code>: by default every share is read-only, regardless of filesystem permissions,</li>\n<li><code>writeable</code>: in order to allow write access you should set <code>writeable = Yes</code>.</li>\n</ul>\n\n<p>This should be enough to solve the problem. But if you'd like to learn more about Samba permissions, like how to set umask, enable guest account or control access for individual users/groups, then read <a href=\"http://www.cyberciti.biz/tips/how-do-i-set-permissions-to-samba-shares.html\">the short tutorial on Samba permissions</a>.</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-20T22:49:16.240",
"id": "35037",
"postId": "31166",
"score": "0",
"text": "Problem is that my smb.conf isn't responding the same as the expected output... see my question update",
"userDisplayName": null,
"userId": "10965"
},
{
"creationDate": "2011-03-22T05:17:36.313",
"id": "35259",
"postId": "31166",
"score": "0",
"text": "Could you explain to me why my settings don't take affect till I restart? (Yes, I know about sudo /etc/init.d/samba4 restart)",
"userDisplayName": null,
"userId": "10965"
},
{
"creationDate": "2020-05-22T17:20:45.083",
"id": "2093992",
"postId": "31166",
"score": "0",
"text": "write permissons like 0774 are not set in Samba! The limit is value UMASK in file /etc/login.defs ! Group write rights in Samba and NFS are not able to superseed the default rights in the /etc/login.defs UMASK. Put 002 instead of 022 and you're done.",
"userDisplayName": null,
"userId": "354678"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T09:27:55.913",
"id": "31166",
"lastActivityDate": "2011-03-20T09:34:03.347",
"lastEditDate": "2011-03-20T09:34:03.347",
"lastEditorDisplayName": null,
"lastEditorUserId": "11976",
"ownerDisplayName": null,
"ownerUserId": "11976",
"parentId": "31147",
"postTypeId": "2",
"score": "21"
} | [
{
"accepted": true,
"body": "<p>Samba has its own layer of access control for each share. There are two basic options</p>\n\n<ul>\n<li><code>read only</code>: by default every share is read-only, regardless of filesystem permissions,</li>\n<li><code>writeable</code>: in order to allow write access you shoul... | null | null | null | null | null |
31148 | 1 | null | 2011-03-20T03:34:50.720 | 2 | 289 | <p>I have a DSL internet connection. For a long time the internet functioned fine in Ubuntu using the default Network Manager. Recently however, my ISP was bought by another ISP, and the service name had to be changed in the DSL settings. In Windows, it connects without any issue whatsoever. But in Ubuntu, the first time I connect I get a "Apache: Not Found" page, the next time, I get to the previous ISP's login page, it continues like this for some time until I get it working. I have to try connecting it again and again.</p>
<p>When I asked the customer service, they said that because of the takeover, they have switched servers. But they said, it should work properly in Windows, and they were clueless about Ubuntu. Is there anything I can do to solve this issue?</p>
| 12689 | 3940 | 2011-03-20T09:42:55.790 | 2011-04-20T20:18:20.937 | How to connect to the internet reliably | [
"network-manager",
"internet",
"settings",
"dsl"
] | 1 | 3 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T09:40:06.073",
"id": "34943",
"postId": "31148",
"score": "1",
"text": "To answer this we need to know more. How is your box connected, DSL modem only, or router? What **exactly** did change for your ISP's settings? There is no sensible reason why network manager sh... | null | [
{
"accepted": null,
"body": "<p>There's a service name field in the settings on the main page for DSL connections. You should file in the service name there, as well as the usual username and password information.</p>\n\n<p>If you find you're having issues with the service name entered, try to set the conne... | null | null | null | null | null |
31152 | 1 | 31486 | 2011-03-20T04:53:49.013 | 0 | 741 | <p>this is how a maximized window looks when unity runs for the first time:</p>
<p><img src="https://i.stack.imgur.com/4eB1O.png" alt="enter image description here"></p>
<p>and this is how a maximized window looks when i click on the "maximize" button - after i restore it:</p>
<p><img src="https://i.stack.imgur.com/xpByw.png" alt="enter image description here"></p>
<hr>
<p>Is there a shortcut to make a window get maximized without hiding the siderbar (like in the first screeshot) without making the siderbar always visible?</p>
| 12692 | 235 | 2011-03-20T13:52:32.253 | 2011-03-22T16:54:21.313 | Maximized windows on Unity start without covering the sidebar - how can i do that manually? | [
"unity",
"11.04"
] | 1 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T20:44:51.343",
"id": "35023",
"postId": "31152",
"score": "0",
"text": "lol? that's a bit of a confusing idea :P - it's either one or the other...",
"userDisplayName": null,
"userId": "1992"
},
{
"creationDate": "2011-03-20T21:03:56.773",
"id": "... | {
"accepted": true,
"body": "<p>I'm sorry, but there is none. The behaviour that you see in the first screenshot is the result of bug <a href=\"https://bugs.launchpad.net/unity/+bug/731786\" rel=\"nofollow\">https://bugs.launchpad.net/unity/+bug/731786</a>. If you want to have the launcher visible, you'll have to set the launcher to be always visible.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-23T23:42:42.900",
"id": "35576",
"postId": "31486",
"score": "0",
"text": "a bug eh? i seem to have a tendency to love bugs lately\n\nthanks :D",
"userDisplayName": null,
"userId": "12692"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-22T16:54:21.313",
"id": "31486",
"lastActivityDate": "2011-03-22T16:54:21.313",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "3600",
"parentId": "31152",
"postTypeId": "2",
"score": "0"
} | [
{
"accepted": true,
"body": "<p>I'm sorry, but there is none. The behaviour that you see in the first screenshot is the result of bug <a href=\"https://bugs.launchpad.net/unity/+bug/731786\" rel=\"nofollow\">https://bugs.launchpad.net/unity/+bug/731786</a>. If you want to have the launcher visible, you'll h... | null | null | null | null | null |
31158 | 1 | null | 2011-03-19T03:44:13.847 | 1 | 2751 | <p>How to install Ruby on Rails and MySql on my Ubuntu 10.04 OS?</p>
| null | 186134 | 2015-06-01T13:18:49.630 | 2015-06-01T13:18:49.630 | How to install Ruby on Rails and MySql? | [
"software-installation",
"mysql",
"ruby"
] | 6 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p><strong>Ruby on Rails</strong></p>\n\n<blockquote>\n <p>sudo apt-get install rails</p>\n</blockquote>\n\n<p>For details, see the Ubuntu Help <a href=\"https://help.ubuntu.com/10.04/serverguide/C/ruby-on-rails.html\" rel=\"nofollow\">here</a>.</p>\n\n<hr>\n\n<p><strong>MySQL<... | null | null | null | null | schadi |
31163 | 1 | null | 2011-03-20T08:12:49.627 | 5 | 2252 | <p>According to <a href="https://askubuntu.com/questions/6491/laptop-immediately-suspends-when-going-onto-battery-power">this thread</a> I can disable this thing altogether but this battery-critical-power-down not always happens. Is there a way or terminal command that can stop the power manager shutting down my computer when that infamous message box pops up?</p>
| 12702 | -1 | 2017-04-13T12:23:59.520 | 2011-09-11T21:02:16.297 | How to stop turning off sequence when power manager says that battery is too low and want to power down? | [
"shutdown",
"battery",
"gnome-power-manager"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>As far as i know, the computer can be set to either Shutdown, or Hibernate (free space/swap space providing).</p>\n\n<p>If Hibernation is something you consider an alternative, then you should be able to change it in the Power Manager.</p>\n\n<p>If not, then the system is try... | null | null | null | null | null |
31164 | 1 | null | 2011-03-20T09:03:08.183 | 2 | 123 | <p>I want to write a small tools in the form of Applet, but not just a "applet".
I want to show a listview or anything in the applet, unfortunly it seems that ONLY Menu/MenuItem can be add into applet.
But anyone using rhythmbox must use the "Previous||Pause||Next" button on the sound-applet
So can anyone have a solution to make such a control?</p>
<p>Any suggestion is welcome!</p>
| null | 9781 | 2011-10-16T10:04:44.190 | 2011-10-16T11:12:56.037 | How to add a rich control(not just MenuItem) for a applet like Rhythmbox | [
"indicator",
"rhythmbox",
"application-development",
"applet"
] | 1 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T09:59:24.530",
"id": "34947",
"postId": "31164",
"score": "0",
"text": "Something to go in the panel?",
"userDisplayName": null,
"userId": "866"
},
{
"creationDate": "2012-02-26T23:04:18.223",
"id": "126488",
"postId": "31164",
"score": "... | null | [
{
"accepted": null,
"body": "<p>You're probably talking about <em>indicators</em> and not <em>applets</em>. The available controls are very limited. Anything other than normal menu enties are provided by libido. </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"conte... | null | null | 2012-02-27T01:01:03.047 | null | user12703 |
31167 | 1 | 31171 | 2011-03-20T10:44:02.587 | 50 | 57790 | <p>I'm testing Natty, and Compiz keeps crashing on me. However, it doesn't always give me the option to restart Compiz, and for some reason doesn't have a fallback window manager(WM) configured. </p>
<p>Without a WM, all my programs are still running, but they're not accepting input from the keyboard, and I can't switch between them. </p>
<p>I can, however, press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd> and get a terminal, and I can <code>killall Xorg</code> to reset everything; but, I'd rather just reset Compiz, if possible. </p>
<p>If I try typing <code>compiz --replace</code> in the TTY, it complains "fatal--couldn't open display." Is there a way to have TTY1 restart Compiz? Like <code>compiz --replace --display=something</code>? </p>
<p>Additionally, is there a way to configure a fallback window manager so that there's an easier way to recover from Compiz crashing? </p>
| 6699 | 106495 | 2016-08-09T00:40:53.403 | 2016-08-09T00:40:53.403 | How can I restart Compiz from a TTY? (& Related, how can I set up a fallback WM?) | [
"command-line",
"11.04",
"compiz",
"tty"
] | 3 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-22T00:59:28.120",
"id": "35241",
"postId": "31167",
"score": "0",
"text": "You should start accepting answers. So far you've asked 8 questions but haven't accepted any answers.",
"userDisplayName": null,
"userId": "2079"
},
{
"creationDate": "2013-06-0... | {
"accepted": true,
"body": "<p>Switch to terminal number 1 (<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd>) and run </p>\n\n<pre><code>DISPLAY=:0 unity --replace \n</code></pre>\n\n<p>or</p>\n\n<pre><code>DISPLAY=:0 compiz --replace\n</code></pre>\n\n<p>Sometimes it doesn't restart. Just kill all <code>compiz</code> processes and try again in case.</p>\n",
"commentCount": "6",
"comments": [
{
"creationDate": "2011-04-16T17:31:22.317",
"id": "39581",
"postId": "31171",
"score": "2",
"text": "Latest unity starts itself on DISPLAY=:0 automatically.",
"userDisplayName": null,
"userId": "214"
},
{
"creationDate": "2012-08-16T09:39:19.937",
"id": "218216",
"postId": "31171",
"score": "0",
"text": "You can also switch use 'setsid unity' btw",
"userDisplayName": null,
"userId": "214"
},
{
"creationDate": "2013-02-07T09:44:21.220",
"id": "315420",
"postId": "31171",
"score": "0",
"text": "Both your comments seem valuable, but they're not yet clear to me: do they mean **1)** that **DISPLAY=:0** can be dropped, even when using **tty**-1 to replace **unity** running, crashedly, in tty-7 **?** and **2)** do you recommend using **setsid** for this purpose (rather than () or & disown or nohup) and if so why **?**",
"userDisplayName": null,
"userId": "16023"
},
{
"creationDate": "2013-02-07T09:54:34.653",
"id": "315425",
"postId": "31171",
"score": "0",
"text": "cf **[setsid](http://manpages.ubuntu.com/manpages/jaunty/man2/setsid.2.html)** and http://askubuntu.com/questions/106351/running-programs-in-the-background-from-terminal/106359#106359",
"userDisplayName": null,
"userId": "16023"
},
{
"creationDate": "2014-02-12T10:42:39.607",
"id": "541714",
"postId": "31171",
"score": "3",
"text": "I have killed compiz and I had to run `DISPLAY=:0 unity --replace ` to start unity. Just running compiz did not show full screen window decoration and did not automatically start unity.",
"userDisplayName": null,
"userId": "61670"
},
{
"creationDate": "2021-07-07T10:38:23.607",
"id": "2308728",
"postId": "31171",
"score": "0",
"text": "This closed almost all of my 1000+ windows I had open. Seems to be even more destructive than logout/logon (which tries to reopen closed windows).",
"userDisplayName": null,
"userId": "164798"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-20T11:47:01.907",
"id": "31171",
"lastActivityDate": "2015-07-07T09:10:01.720",
"lastEditDate": "2015-07-07T09:10:01.720",
"lastEditorDisplayName": null,
"lastEditorUserId": "175814",
"ownerDisplayName": null,
"ownerUserId": "214",
"parentId": "31167",
"postTypeId": "2",
"score": "68"
} | [
{
"accepted": null,
"body": "<p>You need to set the DISPLAY environment variable, in the usual case of a single Xorg instance you can do that with</p>\n\n<pre><code>export DISPLAY=\":0.0\"\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "... | null | null | null | null | null |
31168 | 1 | null | 2011-03-20T11:06:35.560 | 6 | 19080 | <p>I have a USB 3.0 external hard disk which I am unable to mount. The entry appears in the "lsusb" command, but I do not exactly understand how to mount it.</p>
<p>This is the output for my lsusb command. "ASMedia Technology Inc." is the USB 3.0 device. I would appreciate some help in mounting and accessing the hard disk.</p>
<p>This the relevant output of my "sudo fdisk -l" when I connect the USB 3.0 HDD to a normal USB 2.0 port:</p>
<pre><code>Disk /dev/sdb: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x8e0eee9e
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 13 102400 7 HPFS/NTFS
Partition 1 does not end on cylinder boundary.
/dev/sdb2 13 38914 312466432 7 HPFS/NTFS
</code></pre>
<p>As you can see the sdb drive and paritions are listed accurately.</p>
<p>However when I connect the USB 3.0 HDD to the (ExpressCard34) USB 3.0 port and run the same "sudo fdisk -l" command, the sdb drives are not detected. They only seem to appear in the "lsusb" output. I have given the "sudo fdisk -l" output below:</p>
<pre><code>Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000b441f
Device Boot Start End Blocks Id System
/dev/sda1 * 1 37434 300686336 83 Linux
/dev/sda2 37434 38914 11882497 5 Extended
/dev/sda5 37434 38914 11882496 82 Linux swap / Solaris
</code></pre>
<p>This the relevant output of my "lsusb" :</p>
<pre><code>lsusb
Bus 009 Device 002: ID 174c:5106 ASMedia Technology Inc.
Bus 008 Device 002: ID 0a5c:2150 Broadcom Corp. BCM2046 Bluetooth Device
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 5986:0205 Acer, Inc
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
</code></pre>
<p>This the relevant output of my "lsusb -v" :</p>
<pre><code>Bus 009 Device 002: ID 174c:5106 ASMedia Technology Inc.
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.10
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
idVendor 0x174c ASMedia Technology Inc.
idProduct 0x5106
bcdDevice 0.01
iManufacturer 2 ASMedia
iProduct 3 AS2105
iSerial 1 00000000000000000000
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 32
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xc0
Self Powered
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 2
bInterfaceClass 8 Mass Storage
bInterfaceSubClass 6 SCSI
bInterfaceProtocol 80 Bulk (Zip)
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x02 EP 2 OUT
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 0
Device Qualifier (for other device speed):
bLength 10
bDescriptorType 6
bcdUSB 2.10
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
bNumConfigurations 1
Device Status: 0x0001
Self Powered
Bus 009 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 3.00
bDeviceClass 9 Hub
bDeviceSubClass 0 Unused
bDeviceProtocol 3
bMaxPacketSize0 9
idVendor 0x1d6b Linux Foundation
idProduct 0x0003 3.0 root hub
bcdDevice 2.06
iManufacturer 3 Linux 2.6.35-28-generic xhci_hcd
iProduct 2 xHCI Host Controller
iSerial 1 0000:04:00.0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 25
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xe0
Self Powered
Remote Wakeup
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 0 Full speed (or root) hub
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0004 1x 4 bytes
bInterval 12
Hub Descriptor:
bLength 9
bDescriptorType 41
nNbrPorts 4
wHubCharacteristic 0x0009
Per-port power switching
Per-port overcurrent protection
TT think time 8 FS bits
bPwrOn2PwrGood 10 * 2 milli seconds
bHubContrCurrent 0 milli Ampere
DeviceRemovable 0x00
PortPwrCtrlMask 0xff
Hub Port Status:
Port 1: 0000.0100 power
Port 2: 0000.0100 power
Port 3: 0000.0503 highspeed power enable connect
Port 4: 0000.0503 highspeed power enable connect
Device Status: 0x0003
Self Powered
Remote Wakeup Enabled
</code></pre>
<p>This is the error given when I try to mount the hard drive:</p>
<pre><code>shinso@shinso-IdeaPad:~$ sudo mount /dev/sdb /mnt
[sudo] password for shinso:
mount: /dev/sdb: unknown device
</code></pre>
<p>This the output of "dmesg|tail":</p>
<pre><code>[30062.774178] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
[30535.800977] usb 9-4: USB disconnect, address 3
[30659.237342] Valid eCryptfs headers not found in file header region or xattr region
[30659.237351] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
[31259.268310] Valid eCryptfs headers not found in file header region or xattr region
[31259.268313] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
[31860.059058] Valid eCryptfs headers not found in file header region or xattr region
[31860.059062] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
[32465.220590] Valid eCryptfs headers not found in file header region or xattr region
[32465.220593] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
</code></pre>
<p>I am using Ubuntu 10.10 (64 bit).</p>
<p>I have included a screengrab from Disk Utility for people who want extra info.</p>
<p><a href="https://i.stack.imgur.com/mcFRh.png" rel="noreferrer">https://i.stack.imgur.com/mcFRh.png</a></p>
<p>Any help is appreciated.</p>
| 12662 | 12662 | 2011-03-21T16:53:05.733 | 2012-01-17T06:36:35.330 | Cannot mount external USB 3.0 Hard Disk | [
"10.10",
"usb",
"mount",
"external-hdd"
] | 4 | 11 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T11:11:47.200",
"id": "34951",
"postId": "31168",
"score": "1",
"text": "Hi! I think everything is OK with your device, but your method is wrong, because, you have to use the partiton to mount, **/dev/sdb** is the device, not a partition on that. To list that, use `s... | null | [
{
"accepted": null,
"body": "<p>Depending on the partition format, and the partition number (both of which can be found with <code>sudo fdisk -l</code>), the syntax for the mount command would be something like this:<br />\n<code>sudo mount -t ntfs /dev/sdb1 /media/mountPoint</code> <br />\nNote that the co... | null | null | null | null | null |
31170 | 1 | 31189 | 2011-03-20T11:44:08.267 | 0 | 796 | <p>my dell mini 10v running Ubuntu 10.10 runs ok for hours, but then will suddenly slow down drastically. Switching to a console shows lots of error messages, which also get into <code>/var/log/syslog</code>. These errors happen every couple of seconds. I'm figuring that the disk is failing, but is there anyway to be sure, and can laptop disks be replaced easily?</p>
<pre><code>Mar 20 11:08:12 dell-mini kernel: [ 2476.378774] ata1.00: status: { DRDY ERR }
Mar 20 11:08:12 dell-mini kernel: [ 2476.378785] ata1.00: error: { UNC }
Mar 20 11:08:12 dell-mini kernel: [ 2476.449841] ata1.00: configured for UDMA/133
Mar 20 11:08:12 dell-mini kernel: [ 2476.449887] ata1: EH complete
Mar 20 11:08:14 dell-mini kernel: [ 2478.777754] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
Mar 20 11:08:14 dell-mini kernel: [ 2478.777976] ata1.00: BMDMA stat 0x24
Mar 20 11:08:14 dell-mini kernel: [ 2478.778059] ata1.00: failed command: READ DMA
Mar 20 11:08:14 dell-mini kernel: [ 2478.778162] ata1.00: cmd c8/00:08:43:3b:97/00:00:00:00:00/e0 tag 0 dma 4096 in
Mar 20 11:08:14 dell-mini kernel: [ 2478.778166] res 51/40:00:47:3b:97/00:00:00:00:00/00 Emask 0x9 (media error)
</code></pre>
| 12380 | 7035 | 2011-06-07T02:55:33.037 | 2011-06-07T02:55:33.037 | Disk failing on Dell Mini, are there diagnostic tools? | [
"10.10",
"hardware",
"disk"
] | 2 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>If you go to \"System\" > \"Administration\" > \"Disk Utility\", you should see a list of your hard drives.</p>\n\n<p>Click on the drive in question, and you can check the drive for errors, or view the SMART data and have the drive run some of it's own tests.</p>\n\n<p>It doesn't look like the Mini 10v drives are too buried in the computer - they are directly beneath the keyboard, and are pretty easy to access.</p>\n\n<p>Luckily, someone appears to have posted a great <a href=\"http://www.youtube.com/watch?v=xWgJH_ioVIo\" rel=\"nofollow\">hard drive swap video</a> on YouTube for your model that you can use as a guide.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T14:18:22.067",
"id": "31189",
"lastActivityDate": "2011-03-20T14:25:33.823",
"lastEditDate": "2011-03-20T14:25:33.823",
"lastEditorDisplayName": null,
"lastEditorUserId": "6016",
"ownerDisplayName": null,
"ownerUserId": "6016",
"parentId": "31170",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": true,
"body": "<p>If you go to \"System\" > \"Administration\" > \"Disk Utility\", you should see a list of your hard drives.</p>\n\n<p>Click on the drive in question, and you can check the drive for errors, or view the SMART data and have the drive run some of it's own tests.</p>\n\n<p>It doe... | null | null | null | null | null |
31172 | 1 | 84215 | 2011-03-20T12:29:43.153 | 4 | 17796 | <p>I want to write shell script file that has a GUI with multiple input boxes for user entry.
I already tried <code>zenity</code>. Any ideas or advice would be appreciated.</p>
| 11749 | 25130 | 2011-12-27T21:24:20.683 | 2019-07-30T18:45:06.280 | Need an interface for a gui shell script more powerful than zenity | [
"gui"
] | 5 | 3 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-20T12:35:45.427",
"id": "34957",
"postId": "31172",
"score": "1",
"text": "This is a great [Stack Overflow](http://stackoverflow.com) question.",
"userDisplayName": null,
"userId": "8515"
},
{
"creationDate": "2011-03-20T12:58:41.330",
"id": "34959"... | {
"accepted": true,
"body": "<p>Yad may be useful in this regard, it is a fork of zenity with more features, one of them the ability to create forms.</p>\n\n<p>Here is a very simple example of a form:</p>\n\n<pre><code>#!/bin/bash\n\n\nfrmdata=$(yad --title \"Test Form\" --form --field \"Address\" --field=\"Name\")\n\n\nfrmaddr=$(echo $frmdata | awk 'BEGIN {FS=\"|\" } { print $1 }')\nfrmname=$(echo $frmdata | awk 'BEGIN {FS=\"|\" } { print $2 }')\n\necho $frmaddr > test.txt\necho $frmname >> test.txt\n</code></pre>\n\n<p>The above script will display a form like this:</p>\n\n<p><img src=\"https://i.stack.imgur.com/GDxm7.png\" alt=\"Yad Form Example\"></p>\n\n<p>After you enter your data and click ok or hit enter on the keyboard, the form data will be written to a text file called test.txt, I am using awk to separate the form data which is a string with a pipe as field separator, I believe there is a direct way to get the data without awk but I am no yad expert, please check the project home and ask questions, you may find a more elegant way.</p>\n\n<p>How to get and install yad here:</p>\n\n<p><a href=\"http://www.webupd8.org/2010/12/yad-zenity-on-steroids-display.html\" rel=\"noreferrer\">http://www.webupd8.org/2010/12/yad-zenity-on-steroids-display.html</a></p>\n\n<p>yad project home:</p>\n\n<p><a href=\"http://code.google.com/p/yad/\" rel=\"noreferrer\">http://code.google.com/p/yad/</a></p>\n\n<p>more examples here:</p>\n\n<p><a href=\"http://technostripe.com/yad-a-fork-of-zenity-with-more-features/\" rel=\"noreferrer\">http://technostripe.com/yad-a-fork-of-zenity-with-more-features/</a></p>\n\n<p><a href=\"http://code.google.com/p/yad/wiki/Examples\" rel=\"noreferrer\">http://code.google.com/p/yad/wiki/Examples</a></p>\n\n<p>I am late here but this may still be helpful.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-12-01T04:12:10.667",
"id": "84215",
"lastActivityDate": "2011-12-01T04:12:10.667",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "4923",
"parentId": "31172",
"postTypeId": "2",
"score": "13"
} | [
{
"accepted": null,
"body": "<p>xDialog is something similar, <a href=\"http://freshmeat.net/search?q=xdialog&submit=Search\" rel=\"nofollow\">here is a search list from freshmeat</a>. tcl/tk is another, popular tool for such jobs.</p>\n\n<p>A poor solution would need the user to fill a list, and finall... | null | null | null | null | null |
31174 | 1 | null | 2011-03-20T12:44:55.710 | 3 | 1602 | <p>Edit: Since setting Appearance -> Visual Effects up to a stunning "Normal", I now get ~35 FPS in <code>glxgears</code> right after login, with nothing else running :(</p>
<p>I'm getting terrible graphics performance in <strong>NeverWinter Nights</strong> (native with SoU+HotU+CEP2) on my Eee PC 1005HAB. Even with all graphics settings (including the "advanced" ones) at minimum I get about 2-10 FPS, depending on the scene. <strong>Firefox</strong> is really sluggish as well - Changing tabs often takes a second, scrolling is laggy, and typing this I notice the delay between pressing keys and seeing the text on screen. The rest of the OS is running OK, although general performance seems to be even <em>worse</em> than my old Eee PC 900.</p>
<p><code>glxgears</code> gives about 60 FPS, which is apparently as it should be (synchronized with the monitor refresh rate).</p>
<p>Bugs like <a href="https://bugs.launchpad.net/ubuntu/karmic/+source/xserver-xorg-video-intel/+bug/252094" rel="nofollow">Launchpad #252094</a> and the instructions for <a href="https://wiki.ubuntu.com/ReinhardTartler/X/RevertingIntelDriverTo2.4" rel="nofollow">Reverting the Jaunty Xorg intel driver to 2.4</a> are old enough that I'm afraid following the instructions would render the system unusable.</p>
<p>Are there any tips for improving graphics performance on this system that are still relevant for 10.10?</p>
<pre><code>$ uname -a
Linux l0b0eee 2.6.35-28-generic #49-Ubuntu SMP Tue Mar 1 14:40:58 UTC 2011 i686 GNU/Linux
$ lspci -nn | grep VGA
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GME Express Integrated Graphics Controller [8086:27ae] (rev 03)
$ glxinfo
name of display: :0.0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
...
</code></pre>
| 10371 | 10371 | 2011-03-20T14:52:49.853 | 2011-05-01T14:49:38.767 | Graphics performance of 945GME | [
"10.10",
"graphics",
"performance"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>Do you get better performance after adding yourself to the video group?</p>\n\n<pre><code>adduser USERNAME video\n</code></pre>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2011-03-29T20:59:53.917",
"id": "36573",
"postId": "... | null | null | null | null | null |
31175 | 1 | null | 2011-03-20T12:56:45.493 | 2 | 2200 | <p>I have the following problem every time i run apt-get install:</p>
<p>for example : installing python-django-south</p>
<pre><code>...
Unpacking python-django-south (from .../python-django-south_0.5-2_all.deb) ...
Setting up sun-j2sdk1.6 (1.6.0+update22-linux-i586.) ...
update-alternatives: error: alternative path /usr/lib/j2sdk1.6-sun/jre/plugin/amd64/ns7/libjavaplugin_oji.so doesn't exist.
dpkg: error processing sun-j2sdk1.6 (--configure):
subprocess installed post-installation script returned error exit status 2
Setting up python-django-south (0.5-2) ...
Processing triggers for python-support ...
Errors were encountered while processing:
sun-j2sdk1.6
E: Sub-process /usr/bin/dpkg returned an error code (1)
</code></pre>
<p>What could be the problem?
I have 9.10 Ubuntu</p>
| 12706 | 235 | 2011-03-20T13:46:38.517 | 2012-09-08T22:39:24.903 | apt-get install problem: Errors were encountered while processing: sun-j2sdk1.6 | [
"apt",
"dpkg"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>As per the line:</p>\n\n<pre><code>update-alternatives: error: alternative path /usr/lib/j2sdk1.6-sun/jre/plugin/amd64/ns7/libjavaplugin_oji.so doesn't exist.\n</code></pre>\n\n<p>you have an invalidly set <code>java</code> path. So run from a terminal:</p>\n\n<pre><code>sudo... | null | null | null | null | null |
31177 | 1 | 31182 | 2011-03-20T13:09:15.600 | 4 | 8187 | <p>How do I list top or bottom 10 lines from the line that matched the word 'error' in a file.</p>
<p>I'm using <code>grep 'error' /var/log/logfile.log > errors</code> to print and save the lines that matched the word 'error' in to the file called 'errors'. How could I change this to suite my requirement?. Anybody has any idea?</p>
| 3215 | null | null | 2011-03-20T13:36:50.257 | List top/bottom ten lines of a word matching in a file | [
"9.10",
"grep"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Displaying lines before/after/around the match using grep -A, -B and -C</p>\n\n<p>-A is the option which prints the specified N lines after the match as shown below.</p>\n\n<p>-B is the option which prints the specified N lines before the match.</p>\n\n<p>-C is the option which prints the specified N lines before the match. In some occasion you might want the match to be appeared with the lines from both the side. This options shows N lines in both the side(before & after) of match.</p>\n\n<p>Source: <a href=\"http://www.thegeekstuff.com/2009/03/15-practical-unix-grep-command-examples/\" rel=\"nofollow\">http://www.thegeekstuff.com/2009/03/15-practical-unix-grep-command-examples/</a> (Also I would recommend you to read the full blog post)</p>\n\n<p>so, the command should be like <code>grep -C 10 'error'</code></p>\n",
"commentCount": "6",
"comments": [
{
"creationDate": "2011-03-20T14:54:04.190",
"id": "34974",
"postId": "31182",
"score": "0",
"text": "awesome!!!. It's really more than the one what I want and the link is really useful. Again a small thing, a file may have many lines matched the word and is it possible to differentiate/separate with some hashes or spaces or with something.",
"userDisplayName": null,
"userId": "3215"
},
{
"creationDate": "2011-03-20T15:40:39.870",
"id": "34977",
"postId": "31182",
"score": "0",
"text": "Thanks! You can accept the answer as accepted. Regarding your question, are you trying to match selectively? I am not sure if that can be done by `grep` somehow without an example. I would suggest you to ask a different question explaining with an example so that others can help you out.",
"userDisplayName": null,
"userId": "8238"
},
{
"creationDate": "2011-03-20T16:09:27.233",
"id": "34982",
"postId": "31182",
"score": "0",
"text": "@user3215 if you want the first match or the last match, try piping through `head` or `tail`, respectively. Eg `grep -C 10 'error'|head -n 10`",
"userDisplayName": null,
"userId": "8515"
},
{
"creationDate": "2011-03-20T16:12:41.293",
"id": "34983",
"postId": "31182",
"score": "0",
"text": "@djeikyb I think he actually wants to grep the \"error\" with a certain pattern around that word.",
"userDisplayName": null,
"userId": "8238"
},
{
"creationDate": "2011-03-21T02:13:12.770",
"id": "35058",
"postId": "31182",
"score": "0",
"text": "Eg: after the first 10 lines of from the line contains error, give some space/hashes and then print next 10 lines",
"userDisplayName": null,
"userId": "3215"
},
{
"creationDate": "2011-03-21T07:24:48.217",
"id": "35103",
"postId": "31182",
"score": "0",
"text": "Interesting! I would like to know too.",
"userDisplayName": null,
"userId": "8238"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T13:36:50.257",
"id": "31182",
"lastActivityDate": "2011-03-20T13:36:50.257",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "8238",
"parentId": "31177",
"postTypeId": "2",
"score": "4"
} | [
{
"accepted": true,
"body": "<p>Displaying lines before/after/around the match using grep -A, -B and -C</p>\n\n<p>-A is the option which prints the specified N lines after the match as shown below.</p>\n\n<p>-B is the option which prints the specified N lines before the match.</p>\n\n<p>-C is the option whi... | null | null | null | null | null |
31179 | 1 | null | 2011-03-20T13:10:43.867 | 2 | 1864 | <p>Msn keeps "connecting" without actually doing so eventually.<br>
isn't the:<br>
server: messenger.hotmail.com<br>
port: 1863?</p>
| 12499 | null | null | 2012-02-16T00:08:48.217 | Msn account not connecting on Empathy | [
"empathy",
"connection",
"msn"
] | 1 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T15:06:01.323",
"id": "34976",
"postId": "31179",
"score": "0",
"text": "just for 1 account ?\nWich version of empathy ?",
"userDisplayName": null,
"userId": "6586"
},
{
"creationDate": "2011-03-21T12:16:45.613",
"id": "35123",
"postId": "3117... | null | [
{
"accepted": null,
"body": "<p>I had the same issue last night. Check if you have telepathy-butterfly installed and remove it.</p>\n\n<p>See Ubuntu Software Center and search for telepathy-butterfly then click remove</p>\n\n<p>or remove it by using terminal</p>\n\n<blockquote>\n <p>sudo apt-get remove te... | null | null | null | null | null |
31180 | 1 | null | 2011-03-20T13:12:58.093 | 1 | 2539 | <p>I have a 3-4 years old laptop (Compaq V3000), which had Win Vista with Ubuntu 10.10 in dual boot configuration. The graphics card inside is an old Nvidia GeForce Go 7200.</p>
<p>One fine day, my graphics card died (of old age, presumably) - resulting in myself being initially unable to boot to WinVista and Ubuntu 10.10. I solved the problem with WinVista (disabled Nvidia card after booting to Safe mode), but I don't know how to do the same with Ubuntu. I can only disable the 3rd-party driver <em>after</em> I boot to desktop, but since its crashing before that, I'm unable to do so. </p>
<p>Can anyone help me disable the graphics card in Ubuntu?</p>
| 12708 | 3037 | 2011-10-10T08:13:25.530 | 2011-10-10T08:13:25.530 | How to get disable nVidia Graphics Card (which has recently expired) so that I can boot Desktop? | [
"10.10",
"boot",
"xorg",
"nvidia",
"graphics"
] | 2 | 3 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-20T13:57:31.020",
"id": "34963",
"postId": "31180",
"score": "0",
"text": "Why not booting ubuntu in safe mode too?",
"userDisplayName": null,
"userId": "5938"
},
{
"creationDate": "2011-03-20T17:01:31.270",
"id": "34992",
"postId": "31180",
... | null | [
{
"accepted": null,
"body": "<p>Looks like you've issues with your initial ramdisk (initrd) which expects your nVidia card. You'll need to update this initrd.</p>\n\n<p>Boot with a LiveCD and follow the next steps:</p>\n\n<ol>\n<li><p>Mount your Ubuntu root partition, change <code>XY</code> accordingly:</p>... | null | null | null | null | null |
31183 | 1 | null | 2011-03-20T13:56:42.413 | 8 | 25799 | <p>I'm in desperate need of a decent comfortable mouse that will give me maximum performance on Ubuntu. I'm looking at a wireless Microsoft mouse, but I am concerned it will not work effectively with Ubuntu.</p>
<p>Is there a list of wireless mice that are confirmed to work well with Ubuntu?</p>
<p>Is there a place where I can get opinions from Ubuntu users about mice?</p>
| 1731 | 1859 | 2013-04-23T16:02:28.627 | 2020-01-07T16:53:13.003 | What wireless mice work well with Ubuntu? | [
"mouse"
] | 10 | 4 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-20T15:52:08.673",
"id": "34979",
"postId": "31183",
"score": "3",
"text": "Edited to fit the format of the site. Subjective questions are better discussed at a forum like http://ubuntuforums.org/",
"userDisplayName": null,
"userId": "8515"
},
{
"creatio... | null | [
{
"accepted": null,
"body": "<p>In my experience 100% of mice I've tried work perfectly with Ubuntu.</p>\n\n<p>I use a Logitech MX Revolution and I'm really happy with its outstanding wheel.\nIt's a lot of money for it so if you want to spend less mx518 is a great great mouse.</p>\n",
"commentCount": "0... | null | null | 2013-04-24T00:07:02.297 | null | null |
31197 | 1 | null | 2011-03-20T15:18:52.507 | 0 | 218 | <p>My Ubuntu one is saying that my account is full. It has done that for over a week now, but its the account is not full at all.</p>
<p>I have tried this guide:</p>
<ol>
<li><p>Quit the Ubuntu One Preferences, if open</p></li>
<li><p>Open (Lucid): Applications->Accessories->Passwords and Encryption Keys
(Maverick): System -> Preferences -> Password and Encryption Keys</p></li>
<li><p>Click on the arrow next to "Passwords"</p></li>
<li><p>Right-click on the Ubuntu One token and select "Delete"</p></li>
<li><p>Go to <a href="https://one.ubuntu.com/account/machines/" rel="nofollow">https://one.ubuntu.com/account/machines/</a></p></li>
<li><p>Click on the checkbox next to your computer</p></li>
<li><p>Click the "Remove selected computers" button</p></li>
<li><p>(Maverick): killall ubuntu-sso-login; u1sdtool -q; u1sdtool -c
(Lucid): u1sdtool -q; killall ubuntuone-login; u1sdtool -c</p></li>
<li><p>a web page, if in Lucid, or a window, in Maverick, should open,prompting you to add your computer to your Ubuntu One account</p></li>
<li><p>Add your computer</p></li>
</ol>
<p>This guide did not change any thing and I still get the message that my account is full every time something is syncing.</p>
<p>I've also tried to create and connect to a new account, but the new account was doing the same. </p>
<p>So I am now really confused. Please help!</p>
| null | 8844 | 2011-03-21T16:09:10.590 | 2011-03-22T00:39:46.510 | Ubuntu One says that my account is full, but it's not | [
"ubuntu-one"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T15:56:47.530",
"id": "34980",
"postId": "31197",
"score": "0",
"text": "Possibly related: [Quota Exceeded but I only use 1.8 MB](http://askubuntu.com/q/29155/6969).",
"userDisplayName": null,
"userId": "6969"
}
] | null | [
{
"accepted": null,
"body": "<p>Could it be that your UbuntuOne account's disk space is full, and not your local disk space?</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-20T15:59:34.827",
"id": "34981",
"postId": "31198",
"score": "0",
... | null | null | null | null | user12711 |
31201 | 1 | 31207 | 2011-03-20T15:33:22.713 | 3 | 13546 | <p>usually, the video I played on YouTube completed I can find it on temp folder, but now nothing inside there after being played completely. </p>
| 3905 | 7035 | 2011-06-06T15:05:27.263 | 2011-06-06T15:29:41.620 | Where does the video we play on YouTube go? | [
"video",
"folder",
"downloads"
] | 5 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<h2>Take a look at <a href=\"https://askubuntu.com/questions/31077/how-can-i-download-youtube-videos/31084#31084\">this</a>, posted here for your convenience:</h2>\n\n<blockquote>\n <p>You can use <a href=\"http://www.miksoft.net/mobileMediaConverter.htm\" rel=\"nofollow noreferrer\">Mobile Media\n Converter</a>, which will do this task\n with ease in 32 bit systems. If you\n are using a 64 bit version of Ubuntu\n you may wish to follow <a href=\"http://israelremixteam.freeforums.org/how-to-install-32-bit-software-in-64-bit-system-t20.html\" rel=\"nofollow noreferrer\">this\n thread</a> in order to make this\n software install into a 64 bit system.\n The producers haven't delivered yet a\n 64 bit version, but the 32 bit will\n download videos for youtube as in a\n native 32 bit system.</p>\n</blockquote>\n\n<p>Additionally, take a look at this: <a href=\"https://askubuntu.com/questions/27646/youtube-dl-error-please-help-in-this-to-resolve/27659#27659\">https://askubuntu.com/questions/27646/youtube-dl-error-please-help-in-this-to-resolve/27659#27659</a></p>\n\n<p>Pasted here for your convenience:</p>\n\n<blockquote>\n <p>If you are interested on obtaining the\n video take a look at this, other way\n look into another answer in order to\n see if you can solve your problem with\n youtube-dl. Thank you.</p>\n \n <p>Notwithstanding that youtube-dl is\n great in a terminal, there are several\n ways to gather the videos from the\n youtube buffer, one of which is the\n usage of <code>totem</code> in order to play the\n video and then extract the buffered\n video from the <code>/tmp</code> folder.</p>\n \n <p>In the past (and depending on how\n updated is your system: maybe your\n case), the buffered videos were saved\n into the <code>/tmp</code> folder also by some\n browsers (Google Chrome and Chromium\n Browser tested by me), but somehow\n after updating that behaviour simply\n stopped.</p>\n \n <p>When watching the videos or simply by\n open it to allow the buffer to\n increase via web browser, now they are\n saved into the\n <code>/home/USERNAME/.cache/google-chrome/Default/Cache</code>\n folder. (where USERNAME is your\n username or home folder name).</p>\n \n <p>As I said before, the usage of totem\n is yet observing this behaviour.</p>\n</blockquote>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T16:14:56.383",
"id": "31207",
"lastActivityDate": "2011-03-23T21:32:45.403",
"lastEditDate": "2017-04-13T12:23:44.677",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "9598",
"parentId": "31201",
"postTypeId": "2",
"score": "4"
} | [
{
"accepted": null,
"body": "<p>Depending on flash version and the player used on the web site, the video is stored in the browser cache folder. However, depending on the space allocated for the cache, the video might be deleted after downloading. Additionally, if you are viewing a video that uses rtsp, the... | null | null | null | null | null |
31206 | 1 | 31231 | 2011-03-20T16:10:51.923 | 16 | 23934 | <p>Each time I want to use Skype, I have to go in the sound preferences. And there, turn the audio-in to "<em>webcam</em>" and uncheck the "<em>mute</em>" button. It's quite annoying. Is there a way to always keep the same configuration ?</p>
| 6065 | null | null | 2017-09-10T18:49:55.590 | How can my audio input always be the webcam microphone? | [
"sound",
"webcam",
"skype"
] | 4 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-04-06T05:16:25.610",
"id": "37849",
"postId": "31206",
"score": "1",
"text": "I have this problem as well with a logitech quickacam. After every reboot I have to go through the preferences and reset it as the default input in order for it to work. I think it has somethi... | {
"accepted": true,
"body": "<h2>Changing default settings for PulseAudio</h2>\n<p>When running pulseaudio all settings can be defined by putting custom configuration files in the hidden <code>.pulse</code> directory in your HOME. If these file do not yet exist there you can use the standard files from <code>/etc/pulse/</code> as a template. Most entries have verbous explanations in these files.</p>\n<ul>\n<li><code>~/.pulse/default.pa</code> to load modules and define defaults</li>\n<li><code>~/.pulse/client.conf</code> to configure a client for the sound server</li>\n<li><code>~/.pulse/daemon.conf</code> to define sample rates and buffers</li>\n</ul>\n<p>To make your webcam the default source we need to know this source's name and number by looking through the list produced by the following command in a terminal:</p>\n<pre><code>pacmd list-sources\n</code></pre>\n<p>We then edit the following line in <code>~/.pulse/default.pa</code>:</p>\n<pre><code>set-default-source [name]\n</code></pre>\n<p>and replace <code>[name]</code> by the name or the source number for the desired source. We then need to make sure that the source is unmuted by adding this line:</p>\n<pre><code>set-source-mute [name]|[#n]> 0\n</code></pre>\n<p>Give the name or the index of your source. You can add a variety of other settings that are referenced in the <a href=\"https://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/CLI/\" rel=\"noreferrer\">PulseAudio Wiki</a> (now on man page: <code>man pulse-cli-syntax</code>).</p>\n<p><strong>It is recommended to first test all commands through the command line interface before changing the configuration files. This can be opened with</strong> <code>pacmd</code> <strong>in a terminal</strong></p>\n",
"commentCount": "4",
"comments": [
{
"creationDate": "2012-03-16T21:17:36.940",
"id": "134251",
"postId": "31231",
"score": "0",
"text": "There's no default.pa in my .pulse folder. Should I create a new file with one line: set-default-source x ?",
"userDisplayName": null,
"userId": "27968"
},
{
"creationDate": "2012-03-17T17:49:58.657",
"id": "134521",
"postId": "31231",
"score": "3",
"text": "@ToDo the default settings are in `/etc/pulse/default.pa`. Use this file or copy it to `~/.pulse` before editing.",
"userDisplayName": null,
"userId": "3940"
},
{
"creationDate": "2015-11-13T15:00:07.017",
"id": "1021183",
"postId": "31231",
"score": "0",
"text": "For the sake of completeness: one have to write as an input device name the thing that is written inside of angle braces of output of `pacmd list-sources`. I.e. with for my device it was `set-default-source alsa_input.usb-0d8c_USB_PnP_Sound_Device-00-Device.analog-mon`.",
"userDisplayName": null,
"userId": "266507"
},
{
"creationDate": "2015-11-13T17:11:43.027",
"id": "1021286",
"postId": "31231",
"score": "0",
"text": "@Hi-Angel: thank you for that - the answer came from a much older version of pulseaudio. We can now use the proper name of a sink.",
"userDisplayName": null,
"userId": "3940"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-20T18:58:15.977",
"id": "31231",
"lastActivityDate": "2017-09-10T18:49:55.590",
"lastEditDate": "2020-06-12T14:37:07.210",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "3940",
"parentId": "31206",
"postTypeId": "2",
"score": "18"
} | [
{
"accepted": null,
"body": "<p>try this, click on the speaker icon on your top panel, the click preferences. there you can select a default input option for you microphone and probably change some hardware config to make it work ok.</p>\n",
"commentCount": "1",
"comments": [
{
"creati... | null | null | null | null | null |
31216 | 1 | 31221 | 2011-03-20T17:10:17.980 | 129 | 204342 | <p>I know that in bash you can set up aliases in a <code>.bash_aliases</code> file, so that the command you type doesn't need to be a command stored in the binaries in the system. Is there any way I can get aliases into <code>zsh</code>?</p>
| 10616 | 618353 | 2022-11-14T10:04:01.793 | 2023-03-29T20:21:49.930 | How to set up aliases in zsh? | [
"zsh"
] | 8 | 0 | CC BY-SA 4.0 | [] | {
"accepted": true,
"body": "<p>You can do it by the "alias" command with this syntax:</p>\n<pre class=\"lang-sh prettyprint-override\"><code>alias [ -gmrL ] [ name[=value] ... ]\n</code></pre>\n<p>For "gmrL" switches, see <a href=\"http://zsh.sourceforge.net/Doc/Release/Shell-Grammar.html#Aliasing\" rel=\"noreferrer\">this guide, which is my reference</a>.<br />\nFor each name, with no value, zsh will print the name and what it is aliased to previously. With no arguments at all, <code>alias</code> prints the values of ALL defined aliases.</p>\n<p>To define one or more aliases, simply enter:</p>\n<pre class=\"lang-sh prettyprint-override\"><code>alias name1=value1 name2=value2 ... nameX=valueX\n</code></pre>\n<p>For each name with a corresponding value, zsh defines an alias with that value. For further info, check out that link. ;-)</p>\n",
"commentCount": "6",
"comments": [
{
"creationDate": "2011-03-21T03:22:11.773",
"id": "35069",
"postId": "31221",
"score": "0",
"text": "That document answered my question exactly. Thanks much.",
"userDisplayName": null,
"userId": "10616"
},
{
"creationDate": "2014-04-14T10:52:08.027",
"id": "587201",
"postId": "31221",
"score": "0",
"text": "That link is down.",
"userDisplayName": null,
"userId": "66627"
},
{
"creationDate": "2014-04-14T17:54:08.483",
"id": "587502",
"postId": "31221",
"score": "0",
"text": "updated the link.",
"userDisplayName": null,
"userId": "12594"
},
{
"creationDate": "2014-07-31T09:06:31.550",
"id": "680027",
"postId": "31221",
"score": "12",
"text": "this answer misses the part about where to persist the aliases, Kurtosis answer includes it (.zshrc).",
"userDisplayName": null,
"userId": "310914"
},
{
"creationDate": "2018-11-12T20:00:04.547",
"id": "1798076",
"postId": "31221",
"score": "6",
"text": "I use `~/.profile` to store all aliases I care about and source `~/.profile` it from `~/.zshrc`.",
"userDisplayName": null,
"userId": "245365"
},
{
"creationDate": "2020-07-07T22:04:38.653",
"id": "2124457",
"postId": "31221",
"score": "0",
"text": "I tried to store all my aliases in `~/.zprofile` but most are overwritten @danba",
"userDisplayName": null,
"userId": "660555"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2011-03-20T17:54:02.817",
"id": "31221",
"lastActivityDate": "2020-07-01T16:23:47.113",
"lastEditDate": "2020-07-01T16:23:47.113",
"lastEditorDisplayName": null,
"lastEditorUserId": "733386",
"ownerDisplayName": null,
"ownerUserId": "12594",
"parentId": "31216",
"postTypeId": "2",
"score": "57"
} | [
{
"accepted": true,
"body": "<p>You can do it by the "alias" command with this syntax:</p>\n<pre class=\"lang-sh prettyprint-override\"><code>alias [ -gmrL ] [ name[=value] ... ]\n</code></pre>\n<p>For "gmrL" switches, see <a href=\"http://zsh.sourceforge.net/Doc/Release/Shell-Grammar.ht... | null | null | null | null | null |
31219 | 1 | null | 2011-03-20T17:36:15.990 | 1 | 4637 | <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 want to limit the number of kernels shown in my boot screen to say only the two latest ones. How can I do this with the new grub? (Any method that does not require manually uninstalling all extraneous kernels is also welcome.)</p>
| 7729 | -1 | 2017-04-13T12:24:29.360 | 2011-03-20T18:54:00.850 | How to limit number of kernels shown in boot menu? | [
"kernel",
"grub2"
] | 3 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-20T20:24:37.510",
"id": "35022",
"postId": "31219",
"score": "0",
"text": "Possible duplicate of [Is there a way to remove or hide old kernel versions?](http://askubuntu.com/questions/2793/is-there-a-way-to-remove-hide-old-kernel-versions) .",
"userDisplayName": nu... | null | [
{
"accepted": null,
"body": "<p>You'd need to remove the individual kernel images you don't want. I have every kernel starting with the one packaged on the 10.04 LTS disc up to the most recent one (including the backported kernel). There's no automated process to remove old kernels, so you'd have to remov... | null | null | 2011-03-21T16:19:17.160 | null | null |
31222 | 1 | 31235 | 2011-03-20T17:59:51.767 | 3 | 638 | <p>I have more than 150 ubuntu systems connected in a network. Can someone suggest a good monitoring application to monitor all these systems?? For example, I want to check whether all the IPs are up or down and so on.</p>
| 5691 | 527764 | 2017-03-15T10:28:12.137 | 2017-03-15T10:28:12.137 | Software to monitor all Ubuntu systems | [
"10.04",
"software-recommendation",
"monitoring",
"landscape"
] | 4 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>Another option I've seen used at several different shops is <a href=\"http://sourceforge.net/projects/xymon/\" rel=\"nofollow noreferrer\">xymon</a> .</p>\n\n<p>It was originally a clone of the now non-free \"big brother\" then changed to \"hobbit monitor\", before mutating into <a href=\"http://packages.ubuntu.com/xymon\" rel=\"nofollow noreferrer\">xymon</a> <a href=\"http://apt.ubuntu.com/p/xymon\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install xymon\"></a>\n. </p>\n\n<p>It is something like nagios, though in my opinion probably more simple, generally just showing up or down states. It is very extensible through scripting, however. </p>\n\n<p><img src=\"https://i.stack.imgur.com/szAii.png\" alt=\"xymon monitor up and down systems\"></p>\n\n<p>In addition to nagios, other well-known applications include <a href=\"http://www.opennms.org/\" rel=\"nofollow noreferrer\">OpenNMS</a> and <a href=\"http://www.zenoss.com/\" rel=\"nofollow noreferrer\">Zenoss</a>. </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-20T20:03:28.820",
"id": "31235",
"lastActivityDate": "2017-03-15T10:26:52.830",
"lastEditDate": "2017-03-15T10:26:52.830",
"lastEditorDisplayName": null,
"lastEditorUserId": "527764",
"ownerDisplayName": null,
"ownerUserId": "8844",
"parentId": "31222",
"postTypeId": "2",
"score": "3"
} | [
{
"accepted": null,
"body": "<p>Canonical sells licenses to its <a href=\"http://www.canonical.com/enterprise-services/ubuntu-advantage/landscape\">software called Landscape</a>. Free trials are available.</p>\n\n<blockquote>\n <p>Landscape is an easy-to-use systems management and monitoring service. Manag... | null | null | null | null | null |
31225 | 1 | 31228 | 2011-03-20T18:03:51.573 | 4 | 18276 | <p>I'm not experienced with PATH (Any good reference would be appreciated), but I made a mistake and did <code>PATH=/google_appengine</code>, which I'm assuming completely overrid PATH.</p>
<p>Still, I restarted bash and echo'd PATH and found that the folders were back. </p>
<blockquote>
<p>mark@mark-laptop:~$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games</p>
</blockquote>
<p>However, when I then tried to append to it, I got an error that PATH wasn't found. I've looked around Google and couldn't find a good answer. Any help would be appreciated</p>
<blockquote>
<p>mark@mark-laptop:~$ PATH = $PATH:/google_appengine<br>
PATH: command not found</p>
</blockquote>
| 10538 | null | null | 2011-03-20T18:24:00.530 | PATH command not found | [
"environment-variables"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>You mustn't use spaces around <code>=</code>, so it should look like this:</p>\n\n<pre><code>PATH=$PATH:/google_appengine\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T18:24:00.530",
"id": "31228",
"lastActivityDate": "2011-03-20T18:24:00.530",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "9340",
"parentId": "31225",
"postTypeId": "2",
"score": "10"
} | [
{
"accepted": true,
"body": "<p>You mustn't use spaces around <code>=</code>, so it should look like this:</p>\n\n<pre><code>PATH=$PATH:/google_appengine\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": ... | null | null | null | null | null |
31232 | 1 | 31238 | 2011-03-20T18:59:49.170 | 3 | 1948 | <p>Last week I bought a AMD E350 (AMD Fusion platform) based Sony VAIO (VPCYB15AG) having AMD Radeon HD 6310 graphics, I removed Windows that came along with and installed Ubuntu 10.10 (AMD64) using USB drive.</p>
<p>During installation my touchpad was not working, I managed through keyboard, but after completing installation & restarting the machine still there was no touchpad support. Also there's no proper graphic card drivers. Even I tried connecting the USB mouse to it but the left key is not working and had to configure the mouse as left-hand to get the left click enabled.</p>
<p>I tried searching for any possible solutions for these but found nothing helpful, is there any hope? What should I do to enable<br>
i) enable touch pad support<br>
ii) get higher resolution 1366x768, etc?</p>
| 12719 | null | null | 2011-04-24T00:21:03.290 | Ubuntu on AMD based Sony Vaio VPCY B15AG | [
"10.10",
"sony",
"vaio",
"64-bit"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<h3>For touchpad support :</h3>\n\n<ol>\n<li><p>Open <code>/etc/default/grub</code> in superuser mode and then\nchange the line <code>GRUB_CMDLINE_LINUX=\"\"</code> to <code>GRUB_CMDLINE_LINUX=\"i8042.reset i8042.nomux i8042.nopnp i8042.noloop\"</code></p></li>\n<li><p>Run the <code>sudo update-grub</code> command in a terminal.</p></li>\n<li>Restart your machine.</li>\n</ol>\n\n<p>Hopefully, your touchpad should work.</p>\n\n<h3>Graphics/Video Card Drivers</h3>\n\n<ol>\n<li><p>Go to System -> Administration -> Additional Drivers </p>\n\n<ul>\n<li>You will find graphics driver for ATI/AMD</li>\n<li>Activate it</li>\n<li>Restart the machine</li>\n</ul></li>\n</ol>\n\n<h3>Audio</h3>\n\n<ol>\n<li><p>Add ubuntu-audio-dev ppa: </p>\n\n<pre><code>sudo add-apt-repository ppa:ubuntu-audio-dev/ppa\nsudo apt-get update\nsudo apt-get install linux-alsa-driver-modules-$(uname -r)\n</code></pre></li>\n<li><p>Reboot machine & check levels in alsamixer by alsamixer. Press to select correct soundcard, show playback level, select capture levels.Use arrow keys to select & change levels, to mute/unmute. </p></li>\n</ol>\n\n<p>Now go to \"System>Preferences>Sound\",check correct soundcard is default & adjust profile on the hardware tab.On output tab choose correct device.</p>\n\n<p>Hopefully, you will get your desired resolution.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-21T19:33:25.363",
"id": "35197",
"postId": "31238",
"score": "1",
"text": "Thanks. It worked like a charm, only hitch was the graphics driver which got installed were for different version of the ATI card and was displaying an \"ATI Unsupported Hardware\" watermark on the right bottom corner of the screen. So I followed these links to get the correct graphics driver installed. [Ubuntu HowTo for ATI](https://help.ubuntu.com/community/BinaryDriverHowto/ATI), [Unofficial Ubuntu forum](http://wiki.cchtml.com/index.php/Ubuntu_Maverick_Installation_Guide) & [AMD Website](http://support.amd.com/us/gpudownload/Pages/index.aspx)",
"userDisplayName": null,
"userId": "12719"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T20:15:52.743",
"id": "31238",
"lastActivityDate": "2011-04-01T07:41:21.840",
"lastEditDate": "2011-04-01T07:41:21.840",
"lastEditorDisplayName": null,
"lastEditorUserId": "235",
"ownerDisplayName": "user12722",
"ownerUserId": null,
"parentId": "31232",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": true,
"body": "<h3>For touchpad support :</h3>\n\n<ol>\n<li><p>Open <code>/etc/default/grub</code> in superuser mode and then\nchange the line <code>GRUB_CMDLINE_LINUX=\"\"</code> to <code>GRUB_CMDLINE_LINUX=\"i8042.reset i8042.nomux i8042.nopnp i8042.noloop\"</code></p></li>\n<li><p>Run the <... | null | null | null | null | null |
31233 | 1 | 31236 | 2011-03-20T19:43:44.750 | 4 | 541 | <p>I want to put two commands together</p>
<p>I need the script to login:</p>
<pre><code>ssh root@192.168.0.188
</code></pre>
<p>Then I need to the script to run (while logged in to root@192.168.0.188 via ssh ):</p>
<pre><code>find /var/mobile/Media/Music/ -name "*.mp3" -exec ln -s {} /var/mobile/Media/Music/"All Songs" \;
</code></pre>
| 11902 | 8844 | 2011-03-20T21:23:55.507 | 2011-03-20T21:23:55.507 | Combine Two Commands In a Script | [
"command-line",
"bash",
"gnome-terminal",
"scripts"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>You can include a command to run on the remote machine as the last argument to ssh</p>\n\n<pre><code>ssh root@192.168.0.188 'find /var/mobile/Media/Music/ [...]'\n</code></pre>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-20T20:16:34.490",
"id": "35020",
"postId": "31236",
"score": "0",
"text": "Worked perfectly!!",
"userDisplayName": null,
"userId": "11902"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-20T20:09:36.990",
"id": "31236",
"lastActivityDate": "2011-03-20T20:09:36.990",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "11976",
"parentId": "31233",
"postTypeId": "2",
"score": "5"
} | [
{
"accepted": true,
"body": "<p>You can include a command to run on the remote machine as the last argument to ssh</p>\n\n<pre><code>ssh root@192.168.0.188 'find /var/mobile/Media/Music/ [...]'\n</code></pre>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-20T20:16:34... | null | null | null | null | null |
31240 | 1 | null | 2011-03-20T18:15:48.133 | 18 | 20511 | <p>Is there any way I can switch the application running in one workspace to another on command line? I use Ubuntu 10.04 </p>
<p><strong>UPDATE1</strong><br>
As per suggestions below </p>
<pre><code> wmctrl -l
0x02200003 -1 bond Bottom Expanded Edge Panel
0x02200049 -1 bond Top Expanded Edge Panel
0x02000020 0 bond x-nautilus-desktop
0x04e00004 0 bond bond@bond: ~
0x0482a380 0 bond OMG! Ubuntu! | wmctrl - Chromium
0x05000072 0 bond how to shift applications from workspace 1 to 2 using command - Ask Ubuntu - Stack Exchange - Google Chrome
</code></pre>
<p>now when I type </p>
<pre><code>wmctrl -r :OMG! Ubuntu! | wmctrl - Chromium: -t 2 No window was specified.
</code></pre>
<p>So how to use it properly what is the mistake in above?</p>
<p><strong>UPDATE2</strong><br>
I tried </p>
<blockquote>
<p>wmctrl -r 0x05000072 -t 2</p>
</blockquote>
<p>but the windows had no effect and they remained in same work space.</p>
| 12580 | 12580 | 2011-03-21T18:41:37.653 | 2014-04-06T04:59:53.347 | how to shift applications from workspace 1 to 2 using command | [
"command-line",
"workspaces"
] | 7 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T22:01:28.470",
"id": "35217",
"postId": "31240",
"score": "0",
"text": "I've updated my answer with better information about the use of -r and -i. The argument to -r should be enclosed in \"quotation marks\" if it contains spaces. If the argument to -r is the window... | null | [
{
"accepted": null,
"body": "<p>If you are using compiz, then look here at the <a href=\"http://wiki.compiz.org/Plugins/Dbus\" rel=\"nofollow\">compiz wiki</a>. There you find several examples. Look at the \"put\" plugin.</p>\n\n<p>Example</p>\n\n<pre><code>./compiz-dbus-send.py put put_viewport_right_key\n... | null | null | null | null | Registered User |
31244 | 1 | null | 2011-03-20T20:49:44.850 | 1 | 3455 | <p>I have some troubles installing python2.7 on ubuntu 10.10
I ran <code>sudo apt-get install python2.7</code>(*) but when I try to run an example program
I get the </p>
<pre><code> ~/Downloads% python2.7 clockwindow.py
Traceback (most recent call last):
File "clockwindow.py", line 1, in
<module>
import pygtk ImportError: No module named pygtk
</code></pre>
<p>error messages, so what's the best way to install python and its modules?</p>
| 3246 | 235 | 2011-03-21T00:08:04.163 | 2011-03-21T00:08:04.163 | How to install python 2.7? | [
"10.10",
"installation",
"python"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>It looks like there are a few broken or missing things regarding pygtk with Python2.7 under Maverick (pygobject-dev maybe).</p>\n\n<p>Unless you really need Python2.7, you will save yourself a lot of stress using the Python2.6 version of pygtk included in Maverick.</p>\n",
... | null | null | null | null | null |
31250 | 1 | 31270 | 2011-03-20T22:35:23.053 | 8 | 3086 | <p>I have scanned some family albums on my flatbed scanner. The scanner glass has room for three photos, so I ended up with nearly 500 <code>JPEG</code>s that needs to be cropped to three images each.</p>
<p><a href="http://www.gimp.org/">GIMP</a> seems to be a little slow for this kind of job. Is there any other photo editing tool that would easily let me draw three rectangles, and crop them, and save each selection in a different file?</p>
| 622 | 527764 | 2020-08-10T04:03:21.520 | 2020-08-10T04:03:21.520 | What application can I use for cropping quickly (selecting multiple areas of an image)? | [
"software-recommendation",
"image-processing",
"image-editor"
] | 2 | 1 | CC BY-SA 4.0 | [
{
"creationDate": "2011-03-21T00:30:55.497",
"id": "35045",
"postId": "31250",
"score": "0",
"text": "What *I* would do is quickly write a PHP script that did this (using the GD graphics library), but I don't know if that's an option in this case.",
"userDisplayName": null,
"userId": "5"... | {
"accepted": true,
"body": "<p>Looks like you may find a solution on the Ubuntu forums here; <a href=\"http://ubuntuforums.org/showthread.php?t=1429439\" rel=\"noreferrer\">http://ubuntuforums.org/showthread.php?t=1429439</a> download the python script install the pre requisites, </p>\n\n<pre><code>sudo apt-get install python-tk python-imaging python-imaging-tk \n</code></pre>\n\n<p>run the application, load file, select areas to crop with mouse and click go, pictures of the areas will be saved to file in the folder with the photo. see below:</p>\n\n<p><img src=\"https://i.stack.imgur.com/CS2io.png\" alt=\"enter image description here\"></p>\n\n<p>View of files in nautilus</p>\n\n<p><img src=\"https://i.stack.imgur.com/YGdce.png\" alt=\"enter image description here\"></p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-21T06:49:46.387",
"id": "35100",
"postId": "31270",
"score": "3",
"text": "+1, +100 if I could. This rocks. And it's only 240 lines in Python!",
"userDisplayName": null,
"userId": "622"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T01:08:09.833",
"id": "31270",
"lastActivityDate": "2011-03-21T01:08:09.833",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "4923",
"parentId": "31250",
"postTypeId": "2",
"score": "8"
} | [
{
"accepted": null,
"body": "<p>Take a look at gThumb it has good basic editing capabilities including cropping. I use gThumb for my default viewer.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T00:4... | null | null | null | null | null |
31252 | 1 | null | 2011-03-20T23:05:51.103 | 0 | 4220 | <p>I am trying to modify the clock frequencies in nvidia-settings. I have added the Option Coolbits 1 in my <code>/etc/X11/xorg.conf</code> file and restarted gdm, and even my computer.</p>
<p>The options are now available in nvidia-settings, and I can slide the slider up and down, but when I choose "Apply" it simply reverts them back to default. I even tried to run nvidia-settings by way of sudo, and I got the same result.</p>
<p>I also installed nvclock and I am trying to modify clock and fan settings through that command-line utility, but with no avail there either. The fan speed says it is increased to 100% for example, but the fan does not change and nvidia-settings stays stable at 35% fan speed.</p>
<p>I am running 10.10 x86 and Nvidia driver 260.19.06 with a 9600 GT. </p>
| 12727 | 235 | 2011-06-10T18:43:41.727 | 2012-08-28T18:22:17.377 | How to enable nvidia-settings and nvclock to set clock frequencies | [
"10.10",
"drivers",
"nvidia"
] | 2 | 0 | CC BY-SA 3.0 | [] | null | [
{
"accepted": null,
"body": "<p>Option \"Coolbits\" \"1\" </p>\n\n<p>Should look like this, not sure whether quotes do it any good but seems to be working in my system with 9500gt.</p>\n\n<p>Also be sure you added it in Section \"Screen\".</p>\n",
"commentCount": "0",
"comments": [],
"communityO... | null | null | null | null | null |
31253 | 1 | null | 2011-03-20T23:13:04.180 | 1 | 185 | <p>I have messed up my partitions so now grub doesn't work correctly, and I end up with a <code>grub></code> prompt. I used the LiveCD to open up <code>gparted</code>, and found the following: <img src="https://i.stack.imgur.com/BpLsS.png" alt="image from gparted running off of the livecd"></p>
<p>Can someone help me with fixing up the partitions or let me know how to fix them up so that I can boot my netbook with Ubuntu 10.04?</p>
<p>Thanks.</p>
| 12684 | 10616 | 2011-03-21T03:01:05.100 | 2011-04-20T16:41:01.313 | Grub: Fixing Partitions So Ubuntu Is Bootable | [
"10.04",
"partitioning",
"grub2"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T07:57:16.817",
"id": "35106",
"postId": "31253",
"score": "0",
"text": "Did you install Ubuntu within Windows (using wubi)?",
"userDisplayName": null,
"userId": "6618"
}
] | null | [
{
"accepted": null,
"body": "<p>(NOTE: I edited the question, so I'm going to answer based off my edits)</p>\n\n<p>I believe that when you were working with the partitions, you ended up formatting the 10.04 partition (which should be ext4) as an NTFS partition, because as you can see in gparted, everything ... | null | null | null | null | null |
31255 | 1 | null | 2011-03-20T23:34:54.250 | 0 | 279 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://askubuntu.com/questions/1488/is-there-a-way-to-stream-netflix">Is there a way to stream Netflix?</a> </p>
</blockquote>
<p>I've tried Boxxe and Moonlight but nothing works.</p>
| null | -1 | 2017-04-13T12:24:29.360 | 2011-04-20T11:41:01.390 | Is it Possible to View Netflix Instant Movies on Ubuntu? | [
"boxee",
"moonlight",
"netflix"
] | 0 | 0 | CC BY-SA 2.5 | [] | null | [] | null | 0 | 2011-04-20T14:32:28.367 | null | user12731 |
31257 | 1 | null | 2011-03-20T23:46:59.233 | 4 | 7024 | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="https://askubuntu.com/questions/27141/nothing-happens-when-i-connect-my-iphone-3g-to-my-laptop">Nothing happens when I connect my Iphone 3G to my laptop</a> </p>
</blockquote>
<p>I get the following error each time I plug in my Iphone 3gs to usb.</p>
<pre><code>Unable to mount (name) iPhone: DBus error org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
</code></pre>
<p>Anyone else have this error and know of a fix? I'm using Ubuntu 10.10.</p>
| 12732 | -1 | 2017-04-13T12:25:03.423 | 2013-01-29T08:50:39.750 | Unable to mount Iphone | [
"10.10",
"mount",
"iphone"
] | 1 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-21T00:29:36.280",
"id": "35044",
"postId": "31257",
"score": "0",
"text": "Perhaps [this](http://askubuntu.com/questions/27141/nothing-happens-when-i-connect-my-iphone-3g-to-my-laptop/27163#27163) will help.",
"userDisplayName": null,
"userId": "5"
},
{
... | null | [
{
"accepted": null,
"body": "<p>I suggest using ifuse, once installed your iphone will mount when connected:</p>\n\n<pre><code>sudo add-apt-repository ppa:pmcenery/ppa\nsudo apt-get update\nsudo apt-get install ifuse\n</code></pre>\n\n<p>then update using update manager under System menu</p>\n\n<p>Now Your ... | null | null | 2013-01-29T19:28:28.937 | null | null |
31258 | 1 | 31283 | 2011-03-20T23:51:10.663 | 170 | 99031 | <p>The title pretty much says it all: how can I type Unicode characters - specifically the em-dash —?</p>
| 11843 | 158442 | 2016-05-27T13:13:20.860 | 2022-09-03T03:23:08.770 | How can I type a Unicode character (for example, em-dash —?) | [
"unicode-entry"
] | 9 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2019-12-09T14:38:33.330",
"id": "2001135",
"postId": "31258",
"score": "0",
"text": "Not a general solution, but indeed the em-dash can be had with `altGr`+`-` (under Ubuntu-MATE at least, for a couple of years now). There are quite a few more around `altGr+something` (ellipsi... | {
"accepted": true,
"body": "<ul>\n<li><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>U</kbd>, then <kbd>2</kbd> <kbd>0</kbd> <kbd>1</kbd> <kbd>4</kbd> and <kbd>Enter</kbd></li>\n</ul>\n<p>or</p>\n<ul>\n<li><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>U</kbd>+<kbd>2014</kbd></li>\n</ul>\n<hr />\n<p>Control-capital-u means <em>Unicode</em>, and code point (a four-digit hexadecimanl number, though leading zeros are optional with some versions) for em dash (or any other Unicode character) can be found via the <strong>Character Map</strong> in Ubuntu (<code>gucharmap</code>).</p>\n<p>The first option allows you to separately type the correct digits for your character, which appears upon hitting <kbd>Enter</kbd> or <kbd>Space</kbd>. You can also edit the numbers you typed using backspace before pressing <kbd>Enter</kbd>.</p>\n<p>If this shortcut doesn't work <a href=\"https://askubuntu.com/a/1050341/349837\">check if your input method is iBus</a>.</p>\n",
"commentCount": "12",
"comments": [
{
"creationDate": "2011-03-21T03:25:18.750",
"id": "35070",
"postId": "31283",
"score": "7",
"text": "Works for me. Didn't need to press enter though, the — appears as soon as i release ctrl and shift.",
"userDisplayName": null,
"userId": "12435"
},
{
"creationDate": "2011-03-21T03:29:38.560",
"id": "35071",
"postId": "31283",
"score": "15",
"text": "Yes, if you keep **Ctrl+Shift** held the whole time while typing the numbers, then it will appear immediately. If you release them *before* typing the numbers (which allows you to also use backspace) then a **Space** or **Enter** is required to show the end of the Unicode number input process.",
"userDisplayName": null,
"userId": "7702"
},
{
"creationDate": "2011-03-21T12:51:34.720",
"id": "35129",
"postId": "31283",
"score": "0",
"text": "Yowza, that's nice: type any Unicode character on codepoint. If only it had a character search capability.",
"userDisplayName": null,
"userId": "11843"
},
{
"creationDate": "2011-04-04T20:14:36.767",
"id": "37387",
"postId": "31283",
"score": "0",
"text": "@Beau, use the Character Map to search.",
"userDisplayName": null,
"userId": "814"
},
{
"creationDate": "2014-09-05T06:31:20.867",
"id": "707265",
"postId": "31283",
"score": "6",
"text": "Note that this only works for GTK applications. It won't it any Qt-based one, for example (thus the whole KDE and many individual apps like Skype).",
"userDisplayName": null,
"userId": "113421"
},
{
"creationDate": "2014-09-05T13:28:20.340",
"id": "707438",
"postId": "31283",
"score": "0",
"text": "@Ruslan: [ISO 14755](http://www.cl.cam.ac.uk/~mgk25/volatile/ISO-14755.pdf) is the standard. There appears to be some dispute between [QT #8](https://bugreports.qt-project.org/browse/QTBUG-8) verses [KDE #103788](https://bugs.kde.org/show_bug.cgi?id=103788) verses [X#26747](https://bugs.freedesktop.org/show_bug.cgi?id=26747) regarding how best to get it fixed for Qt applications. A (sub-optimal) workaround would be to entry the character(s) into the `Firefox` URL bar or `Gedit` and copy-and-paste it them.",
"userDisplayName": null,
"userId": "7702"
},
{
"creationDate": "2014-09-05T14:17:59.143",
"id": "707478",
"postId": "31283",
"score": "0",
"text": "@sladen surely it _is_ the standard. But this unfortunately doesn't make it _implemented_ at the right level (i.e. XIM).",
"userDisplayName": null,
"userId": "113421"
},
{
"creationDate": "2015-11-08T01:58:48.303",
"id": "1016755",
"postId": "31283",
"score": "4",
"text": "Mmm... This does not work on Ubuntu 14.04 as `Ctrl+Shift+U` does not seem to work. Do I need to configure something in keyboard settings? I am testing it with gedit 3.10.4 and `Ctrl+Shift+U` then `2`,`0`, `1`, `4` and `Enter` displays `2014`, and `Ctrl+Shift+U+2014` displays `)!$`",
"userDisplayName": null,
"userId": "373927"
},
{
"creationDate": "2016-05-05T22:00:13.250",
"id": "1147424",
"postId": "31283",
"score": "1",
"text": "This does not work in Ubuntu 16.04 now that Mir has replaced X11. Help? https://askubuntu.com/questions/768191/how-does-one-enter-unicode-characters-into-systems-with-mir",
"userDisplayName": null,
"userId": "329227"
},
{
"creationDate": "2016-09-15T17:42:27.773",
"id": "1254544",
"postId": "31283",
"score": "5",
"text": "Note that once you type **Ctrl+Shift+U** an underlined u character appears. I thought this meant I had typed that, instead of the character I wanted. But this is actually a prompt to enter the unicode digits. Once you do that it will be replaced by the character you want.",
"userDisplayName": null,
"userId": "104091"
},
{
"creationDate": "2017-02-24T21:58:12.343",
"id": "1385340",
"postId": "31283",
"score": "1",
"text": "@nephewtom If you use the numpad, you can hold hold `Ctrl+Shift` and release when you're done. If you use the number row, you need to release `Shift` and/or `Ctrl` before typing in the numbers. If you release both you need to press `Enter` or `Space` to confirm. If you release `Shift` first, then you can confirm by releasing `Ctrl` when you're done.",
"userDisplayName": null,
"userId": "602050"
},
{
"creationDate": "2023-05-17T11:55:28.953",
"id": "2573049",
"postId": "31283",
"score": "0",
"text": "I need three hands to do that.",
"userDisplayName": null,
"userId": "188615"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2011-03-21T03:08:48.377",
"id": "31283",
"lastActivityDate": "2022-09-03T03:23:08.770",
"lastEditDate": "2022-09-03T03:23:08.770",
"lastEditorDisplayName": null,
"lastEditorUserId": "29073",
"ownerDisplayName": null,
"ownerUserId": "7702",
"parentId": "31258",
"postTypeId": "2",
"score": "186"
} | [
{
"accepted": null,
"body": "<ol>\n<li><p>Go <strong>Character Map</strong> app (<a href=\"https://wiki.gnome.org/Apps/Gucharmap\" rel=\"nofollow noreferrer\"><code>gucharmap</code></a>, on <a href=\"https://i.stack.imgur.com/fxpw3.jpg\" rel=\"nofollow noreferrer\">Applications → Accessories</a>).</p>\n</li... | null | null | null | null | null |
31259 | 1 | null | 2011-03-20T23:51:46.340 | 1 | 791 | <p>I just installed <a href="http://www.ultrapico.com/ExpressoDownload.htm" rel="nofollow">Expresso</a> via Wine Windows Program Loader. The installation seemed to be fine.</p>
<p>But when I click the program item from Applications -> Wine -> Programs -> Expresso -> Expresso, the cursor rotated a few seconds and then nothing happened.</p>
<p>Later I checked back on the Expresso website, where there is a paragraph describing the installation process:</p>
<blockquote>
<p>You may be prompted to install the
.NET Framework. If you are not taken
there automatically, download and
install the 2.0 or later version of
the framework from the Microsoft web
site. Restart the Expresso install
file after installing the framework.</p>
</blockquote>
<p>I was wondering if I have installed Expresso successfully? If not, how shall I do? Do I have to install .NET Framework, and how to?</p>
<p>I also would like to know if it worth to install .NET Framework? My intention to install Expresso is just to have a nice editor for using Regex.</p>
<p>Thanks and regards!</p>
<p>PS: My Wine version is 1.2.2-0ubuntu2~maverick2, and my OS is Ubuntu 10.10.</p>
| 1471 | 10616 | 2011-03-21T05:35:37.410 | 2017-03-09T16:32:26.240 | Has this Windows application been successfully installed via Wine? | [
"10.10",
"wine",
"mono",
"regex"
] | 2 | 8 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T05:01:03.693",
"id": "35083",
"postId": "31259",
"score": "0",
"text": "NOTE: I've installed this with wine and mono-runtime active, and after installing the .NET 2.0 framework using Winetricks, there is ONE glitch with the program: the menu bar (with menus such as ... | null | [
{
"accepted": null,
"body": "<p>If Expresso is just a .Net application, you'd probably have more success running it with <a href=\"https://mono-project.com\" rel=\"nofollow noreferrer\">Mono</a> <a href=\"http://apt.ubuntu.com/p/mono-runtime\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/softwa... | null | null | null | null | null |
31260 | 1 | 31261 | 2011-03-21T00:01:44.660 | 17 | 22418 | <p>I asked for <a href="https://stackoverflow.com/questions/5312301/is-there-some-good-visual-regular-expression-editor/5314830#5314830">recommendations for Regex editors</a> on stackoverflow a while ago.
Following is <a href="https://stackoverflow.com/questions/5312301/is-there-some-good-visual-regular-expression-editor/5314830#5314830">one of the replies</a>:</p>
<blockquote>
<p>What is "good" depends on what is most
useful to you. For me, though, these
are the key features for a good regex
editor (besides the ability to test
and create regular expressions, of
course, which is a prerequisite to be
called a "regex editor" :-) :</p>
<ol>
<li>Displays matches hierarchically with captured groups.</li>
<li>Explains/analyzes an entered regex in plain English, showing a
hierarchical tree.</li>
<li>Translates your regex into code for a language of your choice.</li>
</ol>
<p>RegexBuddy, as @Max mentioned, does
all these but there is also a free
alternative, Expresso that also does
them very well. These two utilities
are the only ones I have found with
the crucial ability to explain a
regex.</p>
</blockquote>
<p>The features sound very attractive to me. But later I found the two are for Windows. I tried to install Expresso, the free one, via Wine, but met some trouble, about which I asked in <a href="https://askubuntu.com/questions/31259/has-this-windows-application-been-successfully-installed-via-wine">another post.</a></p>
<ol>
<li>So I was wondering if in Ubuntu
there are some applications
comparable to RegexBuddy and
Expresso?</li>
<li>If it is required to install .NET
Framework in order to install
Expresso, is it still worth to
install Expresso on Ubuntu?</li>
</ol>
<p>Thanks and regards!</p>
| 1471 | -1 | 2017-05-23T12:39:45.983 | 2020-03-08T21:27:34.667 | Recommendation for Regex editor? | [
"software-recommendation",
"editor",
"regex"
] | 8 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>By far, the best tool for the job is <a href=\"http://gskinner.com/RegExr/\" rel=\"noreferrer\">RegExr</a>.</p>\n\n<p>The link above will take you to the online version, which is awesome and definitely the best RegEx tool I've ever used.</p>\n\n<p>If you're looking for something you can install in Ubuntu, then try the <a href=\"http://www.gskinner.com/RegExr/desktop/\" rel=\"noreferrer\">desktop version</a>, which is an Adobe Air application:</p>\n\n<p><img src=\"https://i.stack.imgur.com/jQwMT.jpg\" alt=\"enter image description here\"></p>\n",
"commentCount": "4",
"comments": [
{
"creationDate": "2011-03-21T01:00:46.817",
"id": "35051",
"postId": "31261",
"score": "0",
"text": "Just to support this answer, i plugged in a crazy complex regex pattern in, along with a load of dummy text and it was able to correctly validate and use the regex (it also found everything it was supposed to match and outlined that match).",
"userDisplayName": null,
"userId": "10616"
},
{
"creationDate": "2011-03-21T02:41:06.503",
"id": "35060",
"postId": "31261",
"score": "0",
"text": "Thanks! (1) Does Regex desktop version require connection to the Internet? (2) What types of Regex does it support, basic one, Python, Perl, awk, sed, ...?",
"userDisplayName": null,
"userId": "1471"
},
{
"creationDate": "2011-03-21T02:47:27.557",
"id": "35063",
"postId": "31261",
"score": "0",
"text": "@Tim: (1) No. (2) I think it uses AS3's internal RegEx library. That being said, I've found that it is pretty close to PCRE.",
"userDisplayName": null,
"userId": "5"
},
{
"creationDate": "2014-08-06T10:02:54.160",
"id": "684932",
"postId": "31261",
"score": "0",
"text": "The link in your answer to the desktop version redirects to http://www.regexr.com/. Instructions to install RegExr are located on https://github.com/gskinner/regexr/.",
"userDisplayName": null,
"userId": "312862"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T00:11:24.787",
"id": "31261",
"lastActivityDate": "2011-03-21T00:11:24.787",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "5",
"parentId": "31260",
"postTypeId": "2",
"score": "13"
} | [
{
"accepted": true,
"body": "<p>By far, the best tool for the job is <a href=\"http://gskinner.com/RegExr/\" rel=\"noreferrer\">RegExr</a>.</p>\n\n<p>The link above will take you to the online version, which is awesome and definitely the best RegEx tool I've ever used.</p>\n\n<p>If you're looking for someth... | null | null | null | null | null |
31268 | 1 | 36054 | 2011-03-21T01:04:17.967 | 5 | 2335 | <p>I have home server (Ubuntu Server 10.04) which boots from single 80Gb HDD drive, now I want to make it boot from 2x500Gb RAID-1. I've already successfully created it through MDADM.</p>
<p>But how can I move system to this array so that it can boot?</p>
<p>I've seen some guides in the internet about adding second hdd and making RAID1, but this is not my case...</p>
| 8085 | 8085 | 2011-03-21T01:53:08.783 | 2011-04-20T23:55:39.110 | How to migrate installed system to RAID1? | [
"boot",
"raid",
"mdadm"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T01:14:44.663",
"id": "35054",
"postId": "31268",
"score": "0",
"text": "Awesome question!! It would be really good to know how to move a system to a RAID-1 array.",
"userDisplayName": null,
"userId": "5185"
}
] | {
"accepted": true,
"body": "<p>Briefly:</p>\n\n<ol>\n<li><p>make a backup of anything important </p></li>\n<li><p>make a boot cd or usb stick and test it</p></li>\n<li><p>make the mirror pair and a partition on it</p></li>\n<li><p>(optional) make an lvm pv on the partition, then a logical volume on that</p></li>\n<li><p>dd your existing root filesystem onto that new lv</p></li>\n<li><p><code>resize2fs</code> it to grow it to use the new space</p></li>\n<li><p>reboot, interrupt grub, and set the <code>root=</code> parameter to point to one of your new disks</p></li>\n<li><p>you should now be up using the new disk; now reinstall grub onto the boot sector of one of the mirrored disks, pointing at the new system</p></li>\n<li><p>change the machine's bios to boot from one of the mirrored disks</p></li>\n</ol>\n\n<p>There is some risk these rearrangements will leave your system temporarily unbootable so you should only start on this if you're reasonably confident doing low-level rearrangements and/or you have a second machine you can use to ask for help.</p>\n\n<p>Ask if you need more help on any of these points. If none of them make any sense, you should probably just do a fresh install onto the new disks, unless you have a big appetite for adventure. ;-)</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-04-20T07:41:26.480",
"id": "36054",
"lastActivityDate": "2011-04-20T23:55:39.110",
"lastEditDate": "2011-04-20T23:55:39.110",
"lastEditorDisplayName": null,
"lastEditorUserId": "1116",
"ownerDisplayName": null,
"ownerUserId": "1116",
"parentId": "31268",
"postTypeId": "2",
"score": "3"
} | [
{
"accepted": null,
"body": "<p>Clone the first disk with <code>dd</code> and then restore it on the raid solution.</p>\n\n<p><a href=\"http://www.backuphowto.info/linux-backup-hard-disk-clone-dd\" rel=\"nofollow\">http://www.backuphowto.info/linux-backup-hard-disk-clone-dd</a></p>\n",
"commentCount": "... | null | null | null | null | null |
31271 | 1 | null | 2011-03-21T01:22:27.260 | 1 | 251 | <p>I used to play videos from MP4, wma files, as well as form DVDs, but for some reason, I can no more. The file gets loaded and the player starts, but it is always a black screen. No display at all.</p>
<p>What could go wrong ?</p>
| 1464 | null | null | 2011-03-22T10:25:25.307 | how can I reinstall the codecs so I can play my videos back | [
"video",
"display",
"vlc",
"codecs"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T01:23:23.687",
"id": "35055",
"postId": "31271",
"score": "0",
"text": "Note: I also get no error message. The player simply starts, but black screen.",
"userDisplayName": null,
"userId": "1464"
}
] | null | [
{
"accepted": null,
"body": "<ol>\n<li>Open <strong>Gnome Terminal</strong> to give you a command-line</li>\n<li>Manully run <code>vlc yourmovie.mpg</code> from the terminal.</li>\n<li>What debugging/error messages appear?</li>\n</ol>\n\n<p>On the specific point of which packages the codecs live in. The co... | null | null | null | null | null |
31272 | 1 | null | 2011-03-21T01:22:44.640 | 1 | 978 | <p>I would like to include a zenity progress bar for this part of my script:</p>
<pre><code>zenity --question --title "GUI" --text "Sync Music to iPad?"
if [[ $? == 0 ]] ; then
scp -r "$FOLDER" root@192.168.0.188:/var/mobile/Media/Music
ssh root@192.168.0.188 'rm /var/mobile/Media/Music/"All Songs"/*'
ssh root@192.168.0.188 'find /var/mobile/Media/Music/ -name "*.mp3" -exec ln -s {} /var/mobile/Media/Music/"All
</code></pre>
| 11902 | null | null | 2022-03-21T08:35:58.530 | Add Progress Bar | [
"command-line",
"bash",
"scripts",
"zenity"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>According to <a href=\"http://library.gnome.org/users/zenity/stable/zenity-progress-options.html.en\" rel=\"nofollow\" title=\"GNOME documentation\">GNOME Documentation</a>, it looks like <code>--progress</code> should get you what you're looking for.</p>\n",
"commentCoun... | null | null | null | null | null |
31273 | 1 | 31279 | 2011-03-21T01:43:27.997 | 37 | 32471 | <p>As far as I know, both Wine and Mono are used to run Windows applications under Ubuntu.</p>
<p>So I was wondering </p>
<ol>
<li>what their differences are? Are they both virtual machines? Or does each belong to some other category?</li>
<li>It is better When to use which for what kinds of Windows applications? For example, those applications that may or may not require .net Framework.</li>
<li>Do they depend on each other? Are
they required to install together?
Or does each work independently
without existence of the other?</li>
</ol>
<p>Thanks and regards!</p>
| 1471 | 1471 | 2011-03-21T02:04:33.010 | 2014-06-20T22:19:52.893 | Difference between Wine and Mono | [
"wine",
"mono"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Successfully running a program requires that three things match:</p>\n\n<ul>\n<li><strong>CPU instruction set</strong> (Eg. <strong>x86</strong> in your PC, <strong>ARM</strong> in your mobile phone, <strong>PowerPC</strong> in some Apple Macs, <strong>Java bytecode</strong> for Java Applets, <strong>CLI</strong> for \".Net\"/Mono applications)</li>\n<li><strong>Binary File Format</strong> (Eg. <strong>PE/COFF</strong> \".exe\" for Microsoft Windows, <strong>.jar</strong> for Java Applets, <strong>PE32</strong> \".exe\", <strong>ELF</strong> on Unix/Linux)</li>\n<li><strong>Application Programming Interface</strong>; (Eg. <strong>POSIX</strong> on Linux/Unix, <strong>Cocoa</strong> for Mac OSX, <strong>Win32</strong> on Microsoft Windows, <strong>Base Class Library</strong> for \".Net\"/Mono applications).</li>\n</ul>\n\n<p>You can increase the chance of matching all three by having emulators/interpreters (for other CPU instruction sets), by having extra file loaders (for foreign file-formats), and having additional programming libraries providing more APIs.</p>\n\n<p>Note also, that some processors can natively execute more than one instruction set; a PC quite often has <strong>x86</strong> and <strong>amd64</strong> instruction sets; an <strong>ARM</strong> processor can execute four: <strong>ARM32/Thumb/Java bytecode/ThumbEE</strong>. Some operating systems can provide more than one API natively too (Microsoft Windows provides <strong>Win32</strong> and <strong>POSIX</strong>).</p>\n\n<p>For everything else you need extra software. For running Java programs you need the three parts listed above to make it work: a Java Virtual Machine program to <em>run</em> the bytecode; a way of launching Java programs, and a Java Classlibrary for the programs to call. \"Java\" is a brandname here for several separate technologies originally developed by Sun, but to a user they are often downloaded as one.</p>\n\n<p>The same applies for \".Net\", which is a marketing brandname for several different technologies originally developed by Microsoft: The <strong>Common Language Run-time/Base Class Library</strong> (CLR) are the API; <strong>VES</strong> is the loader and <strong>Common Language Interface</strong> (CLI) is the instruction set.</p>\n\n<p>You don't have to download those technologies from Microsoft, from Sun, or from Intel just because they originally invented something. AMD make processors compatible with Intel's standards; both Apache (\"Harmony\") and Google (\"Android Dalvik\") both make a Java-like suite; and Mono provides a CLR/CLI/VES suite. The important thing is that everyone uses the same standards, making them compatible. A DVD disc will play on any DVD player that meets the standard, and an HTML webpage will rendering in any Web Browser meeting the HTML standards.</p>\n\n<ul>\n<li><strong>Mono</strong> is a CLR/CLI/VES suite that can run on Mac OSX, MS Windows and Linux.</li>\n<li><strong>Wine</strong> is a Win32 API implementation that can run on Mac OSX, MS Windows and Linux.</li>\n<li>You can run <strong>Mono</strong> on top of <strong>Wine</strong>, on top of any operating system.</li>\n<li>You can run <strong>Wine</strong> on top of <strong>Qemu</strong>, on top of any CPU architecture.</li>\n</ul>\n\n<p>So <strong>Mono</strong> makes CLR .exe applications run, and <strong>Wine</strong> makes Win32 .exe applications run. The only thing in common is that the filenames end in \".exe\"; the contents are completely different and incompatible, so you need the <em>right</em> one.</p>\n\n<p>Just like a Python interpreter will error when presented with Perl (and vis versa), a CLR interpreter will error when presented with x86+Win32, or JVM+Java bytecode. If you can post a link to the particular program that you're wanting to run, myself or somebody else should be able to tell you the exact instruction set, file format and API it was designed for, and what you need to install on Linux to run it. Hope that helps!</p>\n\n<p><em>(Sometimes you might even need both. For example, the <strong>Openbve</strong> train simulator is C# and compiled to PE/COFF+CLI+CLR, but can optionally use C binary plugins compiled for PE/COFF+Win32+x86. In this case, you need a Win32 version of Mono under Wine. If the CPU architecture is also, different that would need emulating; so Mono under Wine under Qemu).</em></p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-21T02:34:19.287",
"id": "31279",
"lastActivityDate": "2014-06-20T22:19:52.893",
"lastEditDate": "2014-06-20T22:19:52.893",
"lastEditorDisplayName": null,
"lastEditorUserId": "62483",
"ownerDisplayName": null,
"ownerUserId": "7702",
"parentId": "31273",
"postTypeId": "2",
"score": "40"
} | [
{
"accepted": null,
"body": "<p>The short answer: </p>\n\n<p>.NET is Microsoft's answer to Java, and Mono is an open source implementation of it. Wine is for native exes and has nothing to do with Mono except that you can maybe run the .NET runtime with it, like any other native Windows software.</p>\n\n<hr... | null | null | null | null | null |
31286 | 1 | 31293 | 2011-03-21T03:38:42.030 | 22 | 32313 | <p>I'm creating a package that will automatically install some repositories to all hosts in the LAN. The package will be accessible from the central repository.</p>
<p>I've discovered that repo lists can be dropped in '/etc/apt/sources.list.d/*.list'. Now I need to import their keys, for instance, <a href="http://deb.opera.com/archive.key">this one</a>. However, when I drop it into '/etc/apt/trusted.gpg.d/Opera.gpg', <code>apt-get update</code> gives me a plenty of <code>NO_PUBKEY</code> errors for <strong>all</strong> repos I have, including Opera!</p>
<p>What's wrong? :)</p>
| 12738 | 12738 | 2011-03-21T03:59:52.247 | 2023-08-02T12:32:50.687 | Additional keyrings for APT in trusted.gpg.d | [
"apt",
"repository"
] | 4 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Keys downloaded from repositories should be joint into a new GPG keyring so you can drop them into '/etc/apt/trusted.gpg.d/*.gpg', like this:</p>\n\n<pre><code>gpg --no-default-keyring --keyring ./Opera.gpg --import Opera.key\nsudo cp Opera.gpg /etc/apt/trusted.gpg.d/Opera.gpg\n</code></pre>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2018-04-15T20:43:05.380",
"id": "1665943",
"postId": "31293",
"score": "4",
"text": "Doesn't work, neither with version gpg 1.4.x nor 2.1: `gpg: keyblock resource './Opera.gpg': file open error` and `gpg: no writable keyring found: eof`. To make it work, you need to **do first: `touch Opera.gpg`**",
"userDisplayName": null,
"userId": "164798"
},
{
"creationDate": "2023-08-02T11:47:39.360",
"id": "2592622",
"postId": "31293",
"score": "0",
"text": "I think this answer is completely misleading or at least outdated. The current ubuntu does not support `GPG keybox database` file format as keyring fragment. The file generated by command suggested in this answer actually generate the keybox database instead of key file.",
"userDisplayName": null,
"userId": "862165"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-03-21T04:08:03.847",
"id": "31293",
"lastActivityDate": "2011-04-22T19:05:26.043",
"lastEditDate": "2011-04-22T19:05:26.043",
"lastEditorDisplayName": null,
"lastEditorUserId": "235",
"ownerDisplayName": null,
"ownerUserId": "12738",
"parentId": "31286",
"postTypeId": "2",
"score": "23"
} | [
{
"accepted": true,
"body": "<p>Keys downloaded from repositories should be joint into a new GPG keyring so you can drop them into '/etc/apt/trusted.gpg.d/*.gpg', like this:</p>\n\n<pre><code>gpg --no-default-keyring --keyring ./Opera.gpg --import Opera.key\nsudo cp Opera.gpg /etc/apt/trusted.gpg.d/Opera.gp... | null | null | null | null | null |
31289 | 1 | null | 2011-03-21T03:53:20.833 | 3 | 10802 | <p>I have windows XP professional installed on 1 hard drive and Ubuntu 10.10 on my second hard drive.
On start up the computer completely skips the grub menu and boots straight into 10.10.</p>
<p>I have tried running os-prober with the windows hard drive mounted and then updating grub but it didnt work.</p>
<p>Any ideas?</p>
<p>I have changed the boot order so that the HDD with xp on it is first however the computer still booted into linux.</p>
<p>I tried running grub-install /dev/sda and got this </p>
<pre><code>/usr/sbin/grub-setup: warn: Sector 32 is already in use by FlexNet; avoiding it. This software may cause boot or other problems in future. Please ask its authors not to store data in the boot track..
/usr/sbin/grub-setup: warn: Sector 33 is already in use by FlexNet; avoiding it. This software may cause boot or other problems in future. Please ask its authors not to store data in the boot track..
Installation finished. No error reported
</code></pre>
<p>I checked using disk utility and the code for my xp hard drive is sdb so i ran the camand grub-install /dev/sdb shich gave me this </p>
<pre><code>Installation finished. No error reported.
</code></pre>
<p>So i rebooted but it still didnt work.</p>
<p>Any other ideas?</p>
<h2>Additional info</h2>
<h3>gedit /boot/grub/grub.cfg:</h3>
<pre><code>#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
insmod vbe
insmod vga
}
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ "${recordfail}" = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.35-28-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux /boot/vmlinuz-2.6.35-28-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro quiet splash
initrd /boot/initrd.img-2.6.35-28-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-28-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
echo 'Loading Linux 2.6.35-28-generic ...'
linux /boot/vmlinuz-2.6.35-28-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-28-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro quiet splash
initrd /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
echo 'Loading Linux 2.6.35-22-generic ...'
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-22-generic
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
if [ "x${timeout}" != "x-1" ]; then
if keystatus; then
if keystatus --shift; then
set timeout=-1
else
set timeout=0
fi
else
if sleep --interruptible 3 ; then
set timeout=0
fi
fi
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
</code></pre>
<h3>sudo fdisk -l:</h3>
<pre><code>Disk /dev/sda: 80.1 GB, 80060424192 bytes
255 heads, 63 sectors/track, 9733 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0008a483
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9352 75112448 83 Linux
/dev/sda2 9352 9734 3068929 5 Extended
/dev/sda5 9352 9734 3068928 82 Linux swap / Solaris
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xc5d6c5d6
Device Boot Start End Blocks Id System
/dev/sdb1 1 60800 488375968+ 7 HPFS/NTFS
</code></pre>
<h3>sudo blkid</h3>
<pre><code>/dev/sda1: UUID="d682c9bd-dd89-4827-9802-a1f921ebe21c" TYPE="ext4"
/dev/sda5: UUID="09e9c2cb-d903-4f0b-a181-536951845231" TYPE="swap"
/dev/sdb1: UUID="B21844EB1844AFE1" TYPE="ntfs"
</code></pre>
<h3>sudo os-prober</h3>
<p>(nothing)</p>
<pre><code> Boot Info Script 0.55 dated February 15th, 2010
============================= Boot Info Summary: ==============================
=> Grub 2 is installed in the MBR of /dev/sda and looks on the same drive in
partition #1 for (,msdos1)/boot/grub.
=> Grub 2 is installed in the MBR of /dev/sdb and looks on the same drive in
partition #1 for (,msdos1)/boot/grub.
sda1: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.10
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sda2: _________________________________________________________________________
File system: Extended Partition
Boot sector type: Unknown
Boot sector info:
sda5: _________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sdb1: _________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows XP
Boot files/dirs:
=========================== Drive/Partition Info: =============================
Drive: sda ___________________ _____________________________________________________
Disk /dev/sda: 80.1 GB, 80060424192 bytes
255 heads, 63 sectors/track, 9733 cylinders, total 156368016 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start End Size Id System
/dev/sda1 * 2,048 150,226,943 150,224,896 83 Linux
/dev/sda2 150,228,990 156,366,847 6,137,858 5 Extended
/dev/sda5 150,228,992 156,366,847 6,137,856 82 Linux swap / Solaris
Drive: sdb ___________________ _____________________________________________________
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start End Size Id System
/dev/sdb1 * 63 976,751,999 976,751,937 7 HPFS/NTFS
blkid -c /dev/null: ____________________________________________________________
Device UUID TYPE LABEL
/dev/sda1 d682c9bd-dd89-4827-9802-a1f921ebe21c ext4
/dev/sda2: PTTYPE="dos"
/dev/sda5 09e9c2cb-d903-4f0b-a181-536951845231 swap
/dev/sda: PTTYPE="dos"
/dev/sdb1 B21844EB1844AFE1 ntfs
/dev/sdb: PTTYPE="dos"
============================ "mount | grep ^/dev output: ===========================
Device Mount_Point Type Options
/dev/sda1 / ext4 (rw,errors=remount-ro,commit=0)
=========================== sda1/boot/grub/grub.cfg: ===========================
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
insmod vbe
insmod vga
}
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ "${recordfail}" = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.35-28-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux /boot/vmlinuz-2.6.35-28-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro quiet splash
initrd /boot/initrd.img-2.6.35-28-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-28-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
echo 'Loading Linux 2.6.35-28-generic ...'
linux /boot/vmlinuz-2.6.35-28-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-28-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro quiet splash
initrd /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
echo 'Loading Linux 2.6.35-22-generic ...'
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=d682c9bd-dd89-4827-9802-a1f921ebe21c ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-22-generic
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set d682c9bd-dd89-4827-9802-a1f921ebe21c
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
if [ "x${timeout}" != "x-1" ]; then
if keystatus; then
if keystatus --shift; then
set timeout=-1
else
set timeout=0
fi
else
if sleep --interruptible 3 ; then
set timeout=0
fi
fi
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "Windows XP" {
set root=(hd1,1)
chainloader (hd1,1)+1
}
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
=============================== sda1/etc/fstab: ===============================
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
/dev/sda1 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=09e9c2cb-d903-4f0b-a181-536951845231 none swap sw 0 0
=================== sda1: Location of files loaded by Grub: ===================
51.7GB: boot/grub/core.img
58.5GB: boot/grub/grub.cfg
1.2GB: boot/initrd.img-2.6.35-22-generic
1.3GB: boot/initrd.img-2.6.35-28-generic
58.2GB: boot/vmlinuz-2.6.35-22-generic
51.7GB: boot/vmlinuz-2.6.35-28-generic
1.3GB: initrd.img
1.2GB: initrd.img.old
51.7GB: vmlinuz
58.2GB: vmlinuz.old
=========================== Unknown MBRs/Boot Sectors/etc =======================
Unknown BootLoader on sda2
00000000 d9 ed 13 ab ff a8 33 8c 01 b2 47 99 e1 4a b1 f1 |......3...G..J..|
00000010 69 5f a7 29 a4 1a 03 9e 31 b9 45 02 71 e6 58 78 |i_.)....1.E.q.Xx|
00000020 3d f6 ee 7b 3e 33 1b 82 c6 7d cf 1a c8 e7 bc 2f |=..{>3...}...../|
00000030 b9 e1 70 75 cf 18 aa e7 d5 7e 3c f1 b4 e7 9e 3a |..pu.....~<....:|
00000040 55 38 f1 b4 ee 78 59 0b 5e f7 3c 4c 57 73 9c 2a |U8...xY.^.<LWs.*|
00000050 28 f1 19 ed 11 9c b2 19 e2 80 92 1c 7b 84 ee 0b |(...........{...|
00000060 e2 c0 ac af 0a 50 42 b9 cf 0c dc 2c 20 77 85 dc |.....PB...., w..|
00000070 8f 70 5f 7b 84 9b a1 f7 8c 2d ee 70 5c ae f7 39 |.p_{.....-.p\..9|
00000080 63 f7 09 8a ec 79 4c ed 9f cc ad 3c f8 1b 47 7d |c....yL....<..G}|
00000090 3f 97 d5 16 cb 29 45 38 25 61 36 08 de 10 93 0f |?....)E8%a6.....|
000000a0 95 4f ea 54 f9 89 ff f1 bf 9a cc bb fd b6 22 b1 |.O.T..........".|
000000b0 65 08 05 21 78 19 46 b0 24 7e fb de d4 b3 ba d6 |e..!x.F.$~......|
000000c0 ec 11 65 82 ee 10 1d 12 04 91 da 6d 67 47 ea 9b |..e........mgG..|
000000d0 6f b0 aa fb cb 67 10 64 86 e8 26 85 fb f9 50 77 |o....g.d..&...Pw|
000000e0 9d 13 9b 9e d9 11 f3 a1 50 1b 11 b7 93 79 9f ab |........P....y..|
000000f0 c1 b6 86 0f 35 ed d4 9f dc f8 db bd ed 45 3a 68 |....5........E:h|
00000100 54 68 4a 1d d1 fc b8 c9 72 b4 d7 7b 60 e7 39 2f |ThJ.....r..{`.9/|
00000110 2a 0a 4e 52 72 52 c6 e2 2a 55 6a 2a e1 82 40 71 |*.NRrR..*Uj*..@q|
00000120 11 11 e0 53 d6 ff 1b a9 c6 65 df 1e b7 15 6f a2 |...S.....e....o.|
00000130 15 02 a4 6d 19 b7 78 57 a6 ee 9e 36 08 7d 6f 7c |...m..xW...6.}o||
00000140 fd f7 7c d5 40 ff 0f c7 97 dc aa 00 ce 8b bb dc |..|.@...........|
00000150 e2 eb 1c 50 74 d8 14 cc 9a d6 5c a2 ab f2 67 f9 |...Pt.....\...g.|
00000160 58 ed 43 79 0e 78 7a 5c a6 f8 7b e8 05 4e 62 8a |X.Cy.xz\..{..Nb.|
00000170 0a 5f 22 ee a6 38 b9 e1 32 45 97 08 cc 75 66 c6 |._"..8..2E...uf.|
00000180 b3 a2 2d 89 a1 e9 95 21 28 53 fd dd be b1 b2 a2 |..-....!(S......|
00000190 78 3f a3 c9 3d e3 31 54 88 cf 78 0d e1 21 a8 74 |x?..=.1T..x..!.t|
000001a0 06 60 9d 21 c6 7a 24 e1 cc 28 f8 98 e0 99 e3 fc |.`.!.z$..(......|
000001b0 fa 8b eb d5 56 03 20 b8 54 ba c6 ee 9f 57 00 fe |....V. .T....W..|
000001c0 ff ff 82 fe ff ff 02 00 00 00 00 a8 5d 00 00 00 |............]...|
000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200
</code></pre>
| 7217 | 7217 | 2011-03-23T04:22:15.797 | 2011-11-19T07:34:59.497 | Dual booting on separate hard drives | [
"10.10",
"dual-boot",
"grub2"
] | 3 | 9 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T07:48:05.607",
"id": "35104",
"postId": "31289",
"score": "0",
"text": "Please run boot info script as explained here: http://ubuntuforums.org/showthread.php?t=1291280 and post the RESULTS.txt along with the output of `sudo os-prober`.",
"userDisplayName": null,... | null | [
{
"accepted": null,
"body": "<p>Grub must be installed in the hard drive that the computer <em>boots</em>, regardless of which OS you want to run. That means the hard drive that is set as 1st boot device in BIOS.</p>\n\n<p>You BIOS is probably set up to boot your \"2nd\" hand drive, where Ubuntu might be th... | null | null | null | null | null |
31292 | 1 | null | 2011-03-21T04:02:20.747 | 2 | 215 | <p>trying to sync about 80 gigs of data. It has been several days.
This is my syncd log
<a href="http://paste.ubuntu.com/583164/" rel="nofollow">Log</a></p>
<p>exceptions log
<a href="http://paste.ubuntu.com/583165/" rel="nofollow">Ex Log</a></p>
| 12740 | null | null | 2013-02-10T15:34:04.460 | Ubuntu one stuck in rescan | [
"ubuntu-one"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>Your case seem this FAQ <a href=\"https://wiki.ubuntu.com/UbuntuOne/FAQ/WhyIsItTakingSoLongForMyFilesToSync\" rel=\"nofollow\">https://wiki.ubuntu.com/UbuntuOne/FAQ/WhyIsItTakingSoLongForMyFilesToSync</a></p>\n",
"commentCount": "1",
"comments": [
{
"cre... | null | null | null | null | null |
31298 | 1 | 161157 | 2011-03-21T04:43:42.843 | 36 | 184896 | <p>I have these three files: <code>1.zip</code>, <code>1.z01</code> and <code>1.z02</code>. I would like to extract and join them into a single file, by right clicking <code>1.zip</code> and selecting <em>Extract Here</em>. But then there comes an error:</p>
<pre><code>7-Zip 9.04 beta Copyright (c) 1999-2009 Igor Pavlov 2009-05-30
p7zip Version 9.04 (locale=en_US.utf8,Utf16=on,HugeFiles=on,2 CPUs)
Error: /home/tim/Desktop/1.zip:
Can not open file as archive
Errors: 1
</code></pre>
<p>I was wondering what the problem is and how I can solve it?</p>
<hr />
<p><strong>ADDED:</strong></p>
<p>Is my usage of <code>unzip -FF</code> wrong? It seems not working:</p>
<pre><code>$ unzip -FF 1.zip
Archive: 1.zip
warning [1.zip]: zipfile claims to be last disk of a multi-part archive;
attempting to process anyway, assuming all parts have been concatenated
together in order. Expect "errors" and warnings...true multi-part support
doesn't exist yet (coming soon).
file #1: bad zipfile offset (local header sig): 0
</code></pre>
<p><strong>2nd ADDED:</strong></p>
<p>Still ain't right:</p>
<pre><code>$ cat 1.z01 1.z02 1.zip > combined.zip && unzip -FF combined.zip
Archive: combined.zip
warning [combined.zip]: zipfile claims to be last disk of a multi-part archive;
attempting to process anyway, assuming all parts have been concatenated
together in order. Expect "errors" and warnings...true multi-part support
doesn't exist yet (coming soon).
warning [combined.zip]: 209829313 extra bytes at beginning or within zipfile
(attempting to process anyway)
file #1: bad zipfile offset (local header sig): 209829313
(attempting to re-compensate)
extracting: 1.wmv bad CRC ee181eef (should be f3c61875)
</code></pre>
<p>It generated <code>1.wmv</code>, which can play well only until midway in GNOME MPlayer.</p>
<p><strong>3rd ADDED:</strong></p>
<p>Am I using <code>7z</code> wrongly?</p>
<pre><code>$ 7z e 1.z01
7-Zip 9.04 beta Copyright (c) 1999-2009 Igor Pavlov 2009-05-30
p7zip Version 9.04 (locale=en_US.utf8,Utf16=on,HugeFiles=on,2 CPUs)
Processing archive: 1.z01
Error: Can not open file as archive
$ 7z e 1.zip
7-Zip 9.04 beta Copyright (c) 1999-2009 Igor Pavlov 2009-05-30
p7zip Version 9.04 (locale=en_US.utf8,Utf16=on,HugeFiles=on,2 CPUs)
Processing archive: 1.zip
Error: Can not open file as archive
</code></pre>
| 1471 | 618353 | 2021-11-03T12:07:01.060 | 2021-11-03T12:07:01.060 | How to extract and join files xxx.zip, xxx.z01 and xxx.z02 | [
"files",
"extract",
"join"
] | 9 | 1 | CC BY-SA 4.0 | [
{
"creationDate": "2024-01-09T03:42:38.023",
"id": "2627072",
"postId": "31298",
"score": "0",
"text": "Supplemental advice -- use \"file x.z01\" to possibly get critical information about the relevant compression algorithm. For instance, the zip utility wouldn't work on my multi-part zip, but o... | {
"accepted": true,
"body": "<p>I have the same issue today with Mass Effect 3. Someone broke the installation of Mass Effect 3 in new version of origin on windows and my wine of course too (installation hangs on 99%). I have to make manually installation:</p>\n\n<pre><code>cp /mnt/cdrom1/Mass\\ Effect\\ 3.z01 ~/temp/Mass\\ Effect\\ 3.z01\ncp /mnt/cdrom2/Mass\\ Effect\\ 3.zip ~/temp/Mass\\ Effect\\ 3.zip\nzip -FF Mass\\ Effect\\ 3.zip --out Mass\\ Effect\\ 3.zip.fixed\nmkdir Mass\\ Effect\\ 3\nunzip -d Mass\\ Effect\\ 3/ Mass\\ Effect\\ 3.zip.fixed\ndu --total Mass\\ Effect\\ 3\n>> 10466048 (~10.5 GB => success)\n</code></pre>\n\n<p><code>zip -FF</code> should be applied to last part of archive, it will automatically check for all parts</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2012-07-08T12:57:38.503",
"id": "161157",
"lastActivityDate": "2020-05-02T12:31:59.850",
"lastEditDate": "2020-05-02T12:31:59.850",
"lastEditorDisplayName": null,
"lastEditorUserId": "75763",
"ownerDisplayName": null,
"ownerUserId": "75763",
"parentId": "31298",
"postTypeId": "2",
"score": "15"
} | [
{
"accepted": null,
"body": "<p>According to reading <a href=\"http://manpages.ubuntu.com/manpages/man1/unzip.1.html\" rel=\"nofollow\"><code>man zip</code></a>, \"<strong>Split .zip</strong>\" archives can be recombined and unpacked using <code>unzip -FF</code>.</p>\n",
"commentCount": "5",
"commen... | null | null | null | null | null |
31303 | 1 | 41082 | 2011-03-21T05:39:25.207 | 23 | 55711 | <p>I started using LibreOffice and when I had laid out the formulas I pressed F9 like I normally did in Excel and nothing happened. </p>
<p>I couldn't figure out the keyboard shortcut to refresh and neither could I find it in the application menu.</p>
<p>How do I do it?</p>
| 11697 | 527764 | 2017-02-02T05:16:36.407 | 2020-03-02T15:53:34.137 | How do you refresh formulas in OpenOffice/LibreOffice Calc? | [
"libreoffice",
"openoffice.org"
] | 6 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p><strong>Simple Recalculation:</strong></p>\n\n<p>Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</p>\n\n<p>Choose <strong>Data - Calculate - Recalculate</strong></p>\n\n<p>F9</p>\n\n<p>Press <kbd>F9</kbd> to recalculate. Press <kbd>Shift</kbd>+<kbd>Ctrl</kbd>+<kbd>F9</kbd> to recalculate all formulas in the document. </p>\n\n<p>After the document has been recalculated, the display is refreshed. All charts are also refreshed.</p>\n\n<p>The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or <kbd>F9</kbd>. Press <kbd>Shift</kbd>+<kbd>Ctrl</kbd>+<kbd>F9</kbd> to recalculate all formulas, including the Add-In functions.</p>\n\n<p><em>Source: <a href=\"http://help.libreoffice.org/Calc/Recalculate\" rel=\"noreferrer\">http://help.libreoffice.org/Calc/Recalculate</a></em></p>\n\n<p><strong>References to Other Sheets and Referencing URLs or other external data</strong></p>\n\n<p>See source: <a href=\"http://help.libreoffice.org/Calc/References_to_Other_Sheets_and_Referencing_URLs\" rel=\"noreferrer\">http://help.libreoffice.org/Calc/References_to_Other_Sheets_and_Referencing_URLs</a>*</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2016-03-02T09:19:57.957",
"id": "1102283",
"postId": "41082",
"score": "0",
"text": "When I wrote my custom function, use it in one cell and update it's formula in Macro editor, I need to recalculate (CTRL + SHIFT + F9) cells to see effects. Even if I edit cell (F2 button) and I hit ENTER, I do not see updated formula (as long as I will not use CTRL + SHIFT + F9). I think that this \"feature\" might be a source of confusion.",
"userDisplayName": null,
"userId": "110343"
},
{
"creationDate": "2017-10-11T15:45:47.153",
"id": "1542268",
"postId": "41082",
"score": "0",
"text": "This works, but the root cause for me was under use of memory. If you go to Tools-Options-LibreOffice-Memory I raised the amount for Libreoffice to use up higher (I used 2 GB) and the Memory per object (100 MB worked well). This made the entire program run smoother and recalculate on it's own.",
"userDisplayName": null,
"userId": "523756"
},
{
"creationDate": "2021-11-10T11:59:19.790",
"id": "2366223",
"postId": "41082",
"score": "0",
"text": "not working for me - I'm really wondered that a simple concatenation is not updated. and I'm wondering how reliable is calc when it does not even update calculations when I reoppen a document",
"userDisplayName": null,
"userId": "108734"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-05-07T21:17:42.423",
"id": "41082",
"lastActivityDate": "2017-11-22T06:19:36.090",
"lastEditDate": "2017-11-22T06:19:36.090",
"lastEditorDisplayName": null,
"lastEditorUserId": "116961",
"ownerDisplayName": null,
"ownerUserId": "13464",
"parentId": "31303",
"postTypeId": "2",
"score": "41"
} | [
{
"accepted": true,
"body": "<p><strong>Simple Recalculation:</strong></p>\n\n<p>Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</p>\n\n<p>Choose <strong>Data - Calculate - Recalculate</strong></p>\n\n<p>F9</p>\n\n<p>Press <k... | null | null | null | null | null |
31307 | 1 | 33595 | 2011-03-21T07:51:27.070 | 11 | 10899 | <blockquote>
<h2>Final Update:</h2>
<p>So it turns out that the drive was indeed defective and I was able to get it replaced - the replacement works great!</p>
</blockquote>
<p><strong>What happens:</strong></p>
<ol>
<li>I insert the flash drive.</li>
<li>I try to copy 2GB of files.</li>
<li>About 600MB (but not always the same amount) in to the transfer, it aborts and forcefully dismounts the drive.</li>
<li>Plugging it in again mounts it as read only due to filesystem errors.</li>
</ol>
<hr>
<p>Information in <code>/var/log/syslog</code>:</p>
<pre>
Apr 4 20:19:09 my-laptop kernel: [10720.130076] usb 1-4: new high speed USB device using ehci_hcd and address 2
Apr 4 20:19:09 my-laptop kernel: [10720.284655] scsi6 : usb-storage 1-4:1.0
Apr 4 20:19:10 my-laptop kernel: [10721.280796] scsi 6:0:0:0: Direct-Access Corsair Survivor GTR 0.00 PQ: 0 ANSI: 2
Apr 4 20:19:10 my-laptop kernel: [10721.281920] sd 6:0:0:0: Attached scsi generic sg3 type 0
Apr 4 20:19:10 my-laptop kernel: [10721.284361] sd 6:0:0:0: [sdc] 63438848 512-byte logical blocks: (32.4 GB/30.2 GiB)
Apr 4 20:19:10 my-laptop kernel: [10721.284863] sd 6:0:0:0: [sdc] Write Protect is off
Apr 4 20:19:10 my-laptop kernel: [10721.284870] sd 6:0:0:0: [sdc] Mode Sense: 00 00 00 00
Apr 4 20:19:10 my-laptop kernel: [10721.284876] sd 6:0:0:0: [sdc] Assuming drive cache: write through
Apr 4 20:19:10 my-laptop kernel: [10721.287862] sd 6:0:0:0: [sdc] Assuming drive cache: write through
Apr 4 20:19:10 my-laptop kernel: [10721.287873] sdc: sdc1
Apr 4 20:19:10 my-laptop kernel: [10721.301238] sd 6:0:0:0: [sdc] Assuming drive cache: write through
Apr 4 20:19:10 my-laptop kernel: [10721.301243] sd 6:0:0:0: [sdc] Attached SCSI removable disk
Apr 4 20:20:03 my-laptop kernel: [10774.494709] FAT: Filesystem error (dev sdc1)
Apr 4 20:20:03 my-laptop kernel: [10774.494714] fat_free_clusters: deleting FAT entry beyond EOF
Apr 4 20:20:03 my-laptop kernel: [10774.494718] FAT: Filesystem has been set read-only
Apr 4 20:22:04 my-laptop kernel: [10895.160070] usb 1-4: reset high speed USB device using ehci_hcd and address 2
Apr 4 20:22:04 my-laptop kernel: [10895.700029] usb 1-4: device not accepting address 2, error -71
Apr 4 20:22:04 my-laptop kernel: [10895.820047] usb 1-4: reset high speed USB device using ehci_hcd and address 2
Apr 4 20:22:04 my-laptop kernel: [10895.950038] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:05 my-laptop kernel: [10896.191050] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:05 my-laptop kernel: [10896.420054] usb 1-4: reset high speed USB device using ehci_hcd and address 2
Apr 4 20:22:05 my-laptop kernel: [10896.840042] usb 1-4: device not accepting address 2, error -71
Apr 4 20:22:05 my-laptop kernel: [10896.962678] usb 1-4: reset high speed USB device using ehci_hcd and address 2
Apr 4 20:22:06 my-laptop kernel: [10897.380047] usb 1-4: device not accepting address 2, error -71
Apr 4 20:22:06 my-laptop kernel: [10897.380095] usb 1-4: USB disconnect, address 2
Apr 4 20:22:06 my-laptop kernel: [10897.380122] sd 6:0:0:0: [sdc] Unhandled error code
Apr 4 20:22:06 my-laptop kernel: [10897.380125] sd 6:0:0:0: [sdc] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
Apr 4 20:22:06 my-laptop kernel: [10897.380130] sd 6:0:0:0: [sdc] CDB: Write(10): 2a 00 00 12 9e 00 00 00 f0 00
Apr 4 20:22:06 my-laptop kernel: [10897.380141] end_request: I/O error, dev sdc, sector 1220096
Apr 4 20:22:06 my-laptop kernel: [10897.382530] sd 6:0:0:0: [sdc] Unhandled error code
Apr 4 20:22:06 my-laptop kernel: [10897.382534] sd 6:0:0:0: [sdc] Result: hostbyte=DID_NO_CONNECT driverbyte=DRIVER_OK
Apr 4 20:22:06 my-laptop kernel: [10897.382539] sd 6:0:0:0: [sdc] CDB: Write(10): 2a 00 00 12 9e f0 00 00 f0 00
Apr 4 20:22:06 my-laptop kernel: [10897.382549] end_request: I/O error, dev sdc, sector 1220336
Apr 4 20:22:06 my-laptop kernel: [10897.385121] FAT: FAT read failed (blocknr 329)
Apr 4 20:22:06 my-laptop kernel: [10897.385150] FAT: FAT read failed (blocknr 322)
Apr 4 20:22:06 my-laptop kernel: [10897.385173] FAT: FAT read failed (blocknr 329)
Apr 4 20:22:06 my-laptop kernel: [10897.385188] FAT: FAT read failed (blocknr 322)
Apr 4 20:22:06 my-laptop kernel: [10897.390581] FAT: unable to read inode block for updating (i_pos 496133)
Apr 4 20:22:06 my-laptop kernel: [10897.830055] usb 1-4: new high speed USB device using ehci_hcd and address 3
Apr 4 20:22:06 my-laptop kernel: [10897.962671] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:07 my-laptop kernel: [10898.200060] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:07 my-laptop kernel: [10898.432548] usb 1-4: new high speed USB device using ehci_hcd and address 4
Apr 4 20:22:07 my-laptop kernel: [10898.560068] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:07 my-laptop kernel: [10898.802603] usb 1-4: device descriptor read/64, error -71
Apr 4 20:22:07 my-laptop kernel: [10899.030075] usb 1-4: new high speed USB device using ehci_hcd and address 5
Apr 4 20:22:08 my-laptop kernel: [10899.460032] usb 1-4: device not accepting address 5, error -71
Apr 4 20:22:08 my-laptop kernel: [10899.580064] usb 1-4: new high speed USB device using ehci_hcd and address 6
Apr 4 20:22:08 my-laptop kernel: [10900.000071] usb 1-4: device not accepting address 6, error -71
Apr 4 20:22:08 my-laptop kernel: [10900.000101] hub 1-0:1.0: unable to enumerate USB device on port 4
Apr 4 20:22:09 my-laptop kernel: [10900.322588] usb 4-2: new full speed USB device using uhci_hcd and address 2
Apr 4 20:22:09 my-laptop kernel: [10900.466510] usb 4-2: not running at top speed; connect to a high speed hub
Apr 4 20:22:19 my-laptop kernel: [10910.471597] usb 4-2: string descriptor 0 read error: -110
Apr 4 20:22:24 my-laptop kernel: [10915.471643] usb 4-2: can't set config #1, error -110
</pre>
<hr>
<p><strong>Other steps taken:</strong></p>
<ul>
<li>I tried plugging it into different USB ports.</li>
<li>I tried plugging it into one of the root ports on the PC.</li>
<li>I ran <code>badblocks</code> on the device and it came up clean.</li>
<li>I tried wiping the partition table before formatting - no difference.</li>
<li>I have an external USB 2.0 1TB hard drive that runs fine and can perform large transfers without incident.</li>
<li><code>smartctl -T normal /dev/sdX</code> fails, saying "Terminate command early due to bad response to IEC mode page. A mandatory SMART command failed: exiting."</li>
</ul>
<p><i><strong>Note:</strong> thanks to <a href="https://askubuntu.com/users/8515/djeikyb">djeikyb</a> for helping me with some of the steps.</i></p>
| 5 | -1 | 2017-04-13T12:23:59.520 | 2017-07-13T06:35:19.077 | Why can't I copy a large number of files to my USB flash drive? | [
"mount",
"usb-drive"
] | 7 | 11 | CC BY-SA 3.0 | [
{
"creationDate": "2011-03-21T08:22:53.847",
"id": "35107",
"postId": "31307",
"score": "6",
"text": "Some drives are fake. If you got it \"new\" for a price that was too good to be true, it was. A lot of \"new\" cheap large USB drives on \"that auction site\" have had problems. The fake drives... | {
"accepted": true,
"body": "<p>Pretty sure the drive is broken.</p>\n\n<ol>\n<li><p>Is this a file system problem? <strong><em>No.</em></strong></p>\n\n<ul>\n<li><a href=\"http://chat.stackexchange.com/transcript/message/782544#782544\">Badblocks comes up clean</a>.</li>\n<li>I had George try wiping the FAT partition table, then try <a href=\"http://chat.stackexchange.com/transcript/message/782609#782609\">formatting with ext2</a>. He used Gnome's Disk Utility. Formats failed.</li>\n</ul></li>\n<li><p>Is this a usb port/bus problem? <strong><em>No.</em></strong></p>\n\n<ul>\n<li>George <a href=\"http://chat.stackexchange.com/transcript/message/782627#782627\">tried multiple ports</a> with this drive, and said his motherboard has multiple buses, which he also took into account.</li>\n<li>George <a href=\"http://chat.stackexchange.com/transcript/message/782632#782632\">tried a known good 1 TB usb hard disk</a> (moving parts style) on these same ports/buses and sucessfully copied large amounts of data.</li>\n</ul></li>\n<li><p>Is this a usb driver problem? <strong><em>No.</em></strong></p>\n\n<ul>\n<li>Same problems in Windows Vista.</li>\n<li>!!! It would be helpful to know from the driver's perspective if there is a difference between a usb flash disk and a usb sata disk.</li>\n</ul></li>\n<li><p>Is the flash drive broken? <strong><em>Likely.</em></strong></p>\n\n<p>Evidence in favour:</p>\n\n<ul>\n<li>I/O errors in <code>/var/log/syslog</code></li>\n<li>I/O errors happen at a consistent location.</li>\n<li>The above steps.</li>\n</ul></li>\n</ol>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2011-04-05T07:33:12.263",
"id": "37466",
"postId": "33595",
"score": "0",
"text": "That information should be part of the question. ;)",
"userDisplayName": null,
"userId": "3037"
},
{
"creationDate": "2011-04-05T17:42:59.267",
"id": "37590",
"postId": "33595",
"score": "0",
"text": "@hto: It is now.",
"userDisplayName": null,
"userId": "5"
},
{
"creationDate": "2011-04-05T18:36:32.517",
"id": "37599",
"postId": "33595",
"score": "0",
"text": "Based on the IO error in the syslog, it sure looks like the drive is busted. Double check that you are using badblocks properly; it should get the same error. Smartctl does not work on flash sticks either.",
"userDisplayName": null,
"userId": "8500"
},
{
"creationDate": "2011-04-06T03:02:00.613",
"id": "37666",
"postId": "33595",
"score": "0",
"text": "@psusi: I was just running `'badblocks /dev/sdc'`... do I need to pass other parameters?",
"userDisplayName": null,
"userId": "5"
},
{
"creationDate": "2011-04-06T14:03:46.753",
"id": "37727",
"postId": "33595",
"score": "0",
"text": "@George Edison try dd if=/dev/sdc of=/dev/null bs=512 iflag=direct",
"userDisplayName": null,
"userId": "8500"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2011-04-05T06:41:05.980",
"id": "33595",
"lastActivityDate": "2017-07-13T03:01:02.633",
"lastEditDate": "2017-07-13T03:01:02.633",
"lastEditorDisplayName": null,
"lastEditorUserId": "8515",
"ownerDisplayName": null,
"ownerUserId": "8515",
"parentId": "31307",
"postTypeId": "2",
"score": "13"
} | [
{
"accepted": null,
"body": "<p>If the file system of your USB is fat 32 or 16 Maximum file size of 4 GB (minus 1 byte) for fat32 for fat 16 less. try to format your USB to NTFS file system.</p>\n\n<p><a href=\"http://forum.notebookreview.com/hardware-components-aftermarket-upgrades/332023-guide-fat16-fat3... | null | null | null | null | null |
31309 | 1 | null | 2011-03-21T08:14:36.883 | 8 | 1659 | <p>I run Ubuntu on my laptop. Roughly 75% of the time, I'm at work with a second monitor attached. The rest of the time I'm running with just the laptop screen. I can configure my panels (and a few misc things like Conky) fine with dual monitors, but then when I run with my laptop only things look messed up (multiple top and bottom panels, etc). If I set things up for a single monitor, then things aren't set up when I'm using dual monitors.</p>
<p>What I want to do is be able to define things like my gnome panels in a user choosable (or automatically selected) to get around this. </p>
<p>Is this possible, and if so, where do I start?</p>
| 10669 | 25863 | 2012-11-21T21:35:55.197 | 2012-11-21T21:35:55.197 | How to customise one session for dual monitors, and another for single monitors? | [
"gnome",
"dualhead"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>Someone may wish to embellish this answer but I hope its useful as a starting point and might involve a bit of learning.</p>\n\n<ol>\n<li><p>Your panel settings are stored somewhere in your GNOME settings in your /home/user/ directory. Probably .gconf/ or .gnome2/, you can se... | null | null | null | null | null |
31314 | 1 | 31636 | 2011-03-21T10:13:50.473 | 0 | 1594 | <p>I wanted to auto-mount my ntfs drives on boot time, so I went through this article to do so using <strong><em>pysdm</em></strong>. </p>
<p>I followed this article <a href="http://maketecheasier.com/auto-mount-your-ntfs-partition-in-ubuntu/2009/04/14" rel="nofollow">auto-mount-your-ntfs-partition-in-ubuntu</a>. </p>
<ol>
<li><p>But when I tried to uncheck the box Mount file system in read only mode, It didn't work. It was checked again, on its own. The drives were also mounted not by the user names, but by the names sda3, sda5 etc.</p></li>
<li><p>In the option for the specifying the name for the ntfs drives, i specified my own names, the names by which the drives were usually mounted.</p></li>
</ol>
<p>I didn't try to uninstall the package, as I thought that might be harmful and could be fatal. </p>
<p><strong>Now, when I restarted my Ubuntu, it just doesn't restart.</strong><br>
It stays in an infinite loop, i guess and even the login screen doesn't showup. </p>
<p>Please help me, and if something is not clear in the question, let me know. Suggest any possible way, I can get my Ubuntu (10.04) back and running, with my packages as they were configured.</p>
<p><strong>EDITED:</strong> I ran Ubuntu in the recovery mode, and it showed the following output on the console twice and then went off to the same ubuntu logo as earlier on. </p>
<pre><code>fcsk from util-linux-ng 2.17.2
/dev/sda8: clean, 635759/1152816 files, 2954346/4605952 blocks
mount: unknown filesystem type 'Spoon'
mountall: mount /media/Silver[782] terminated with status 32
mountall: Filesystem could not be mounted: /media/Silver
init: ureadahead-other main process (893) terminated with status 4
init: ureadahead-other main process (906) terminated with status 4
init: ureadahead-other main process (917) terminated with status 4
</code></pre>
<p>The error that I can see is that I incidently typed the mount location of a drive to <strong>/sda/Silver Spoon</strong> and that is causing trouble.</p>
| 12752 | 12752 | 2011-03-21T12:32:34.850 | 2011-03-23T11:27:59.947 | Problem after auto-mount using pysdm | [
"boot",
"automount",
"reboot"
] | 1 | 8 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T10:38:44.680",
"id": "35116",
"postId": "31314",
"score": "0",
"text": "You might want to boot into recovery mode (not that I know how to bring up the GRUB menu). And in future, I recommend manually editing the `fstab` file to mount partitions.",
"userDisplayNam... | {
"accepted": true,
"body": "<p>Solved. With help from <code>@sagarchalise</code> and from this question<br>\n<a href=\"https://superuser.com/q/260273/70791\">problem-after-auto-mount-ntfs-drives-using-pysdm</a>.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-23T11:27:59.947",
"id": "31636",
"lastActivityDate": "2011-03-23T11:27:59.947",
"lastEditDate": "2017-03-20T10:04:50.303",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "12752",
"parentId": "31314",
"postTypeId": "2",
"score": "0"
} | [
{
"accepted": true,
"body": "<p>Solved. With help from <code>@sagarchalise</code> and from this question<br>\n<a href=\"https://superuser.com/q/260273/70791\">problem-after-auto-mount-ntfs-drives-using-pysdm</a>.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"conte... | null | null | null | null | null |
31316 | 1 | null | 2011-03-21T11:42:07.937 | 1 | 751 | <p>Can the shell (command line) display GUI generated commands?</p>
<p>Example:</p>
<ol>
<li><p>Go to: <code>Applications => Programming => Netbeans</code></p></li>
<li><p>When Netbeans starts I want to see in shell <code>$ netbeans / gksu netbeans</code> </p></li>
<li><p>(Edit) When I doing with netbeans svn update I want to see this in shell</p></li>
</ol>
<p>Edit:
Netbeans only example</p>
<p>Thanks</p>
| 12139 | 12139 | 2011-03-21T16:50:38.200 | 2011-03-21T16:50:38.200 | Can shell (command line) display GUI generated commands? | [
"command-line",
"gui"
] | 2 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T12:53:25.317",
"id": "35130",
"postId": "31316",
"score": "0",
"text": "What would you like to do? Run a script when an application is started?",
"userDisplayName": null,
"userId": "6969"
}
] | null | [
{
"accepted": null,
"body": "<p>You can also use <strong>top</strong> or <strong>htop</strong> to display running services.\nYou can do a search for netbeans in there?</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate... | null | null | null | null | null |
31317 | 1 | 32288 | 2011-03-21T11:47:15.363 | 5 | 12175 | <p>I have Ubuntu 10.10 installed on my Asus G50VTX5. Sound works for the speakers but there's no sound from the headphones. Headphones are working fine in other devices. </p>
| 12639 | 235 | 2012-01-25T23:21:38.210 | 2012-04-10T10:17:20.420 | Why are my speakers working but not my headphones? | [
"sound",
"pulseaudio",
"headphones"
] | 5 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T12:45:03.743",
"id": "35128",
"postId": "31317",
"score": "0",
"text": "Headphone: Make and model? USB or plugged into sound card?",
"userDisplayName": "user4815",
"userId": null
}
] | {
"accepted": true,
"body": "<p>its an issue! I've opened a bug about this issue but canonical didnt give much attention. athough I've managed to put Headphones working</p>\n\n<p>I've explained how to solve on page's bug report\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/660715\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/660715</a></p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-27T19:06:35.550",
"id": "32288",
"lastActivityDate": "2011-03-27T19:06:35.550",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": "user13090",
"ownerUserId": null,
"parentId": "31317",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": null,
"body": "<p>Your headphone output is probably muted. Open the sound control panel and check that you don't have any outputs muted.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-28T06:01:48.503",
"id": "36255",
"postId": "31321... | null | null | null | null | null |
31325 | 1 | 31342 | 2011-03-21T12:46:35.613 | 0 | 852 | <p>Ubuntu 10.04 64bit on a Dell Latitude E6400 laptop.</p>
<p>I want "None" under Visual Effects (on the Appearance Preferences), but when I reboot it reverts to Normal. I've tried uninstalling Compiz but that clearly upsets the gods because then I lose my title bars. Googling for help on this produces answers involving the Visual Effects option, which is all ghosted out once I've uninstall compiz. Not only that, but the keyboard is ignored in all windows unless only one window is open (actually, it might be just the window the mouse is currently over). So if I google for help and the answer it is to type something into Terminal, I cannot do this until I quit the browser. </p>
<p>I installed another instance of Ubuntu from the same CD, which is working fine.</p>
<p>It seems to me that something else is perhaps trying to load/use compiz it when I reboot, and if it's not there it has this title bar problem. There's nothing obvious in my "Startup Applications" list.</p>
<p>Edit: I just created another user, and for this user the desired setting sticks, suggesting it's a per-user setting/problem, not a system wide one.</p>
| null | null | 2011-03-21T15:18:00.043 | 2011-03-23T21:32:30.240 | I want 'None' for Visual Effects but they keep reverting back | [
"compiz"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Compiz Fusion Icon may be helpful.</p>\n\n<p>Take a look at this: <a href=\"https://askubuntu.com/questions/27461/emerald-window-decorator-fails-to-start-sometimes/27468#27468\">Emerald window decorator fails to start... sometimes</a>, posted here for your convenience.</p>\n\n<blockquote>\n <p>You can use Compiz Fusion Icon which\n can be easily installed by dropping\n <code>sudo apt-get install fusion-icon</code> in\n a terminal. After that, find the\n fusion-icon in the System Tools menu\n and you will have several choices in\n the panel's fusion icon, which\n includes but not limits to: <em>Select\n Window Decorator</em>.</p>\n \n <p>Right click the fusion icon and choose\n your prefered window decorator, window\n manager and a few other features. Then\n select \"Reload Window Manager\" and\n your monitor or windows may flicker. </p>\n \n <p>Don't worry, it will take just a\n moment to reload your options and\n after that you can close the fusion\n Icon. The options should persist this\n time.</p>\n \n <p>A screenshot is placed here to\n illustrate.</p>\n \n <p>Good luck!</p>\n</blockquote>\n\n<p><img src=\"https://i.stack.imgur.com/R5ySf.png\" alt=\"enter image description here\"></p>\n\n<h2>Edit</h2>\n\n<p>Take a look at this: <a href=\"http://en.gentoo-wiki.com/wiki/Compiz-Fusion\" rel=\"nofollow noreferrer\">http://en.gentoo-wiki.com/wiki/Compiz-Fusion</a></p>\n\n<p>If you are using Gnome, go to the Gnome's section, which is placed here for your convenience.\n<img src=\"https://i.stack.imgur.com/Pjpct.png\" alt=\"enter image description here\"></p>\n\n<p>With this logic in mind, just </p>\n\n<blockquote>\n <p>To change the default window manager\n in gnome run gconf-editor, and set\n /desktop/gnome/session/required_components/windowmanager\n to \"metacity\"</p>\n</blockquote>\n\n<p>The majority of the times, running <code>metacity --replace</code> is enough for the changes you wish, but if needed, run <code>sudo metacity --replace</code> and let's see what happens. </p>\n\n<p>I hope this help.</p>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-03-21T20:17:18.303",
"id": "35202",
"postId": "31342",
"score": "0",
"text": "Yeah, by doing and and sort of playing around I've got the windows minimizing/maximizing quickly, even if I can't actually select \"none\". I have to load that icon at each boot time, however, otherwise I can't alt-tab, ctrl-alt-left etc. I can't just revert back to whatever \"window manager\" I was using before I experimented with Compiz? Or is that Metacity? In which case why have I lost the shortcuts? There's nothing in the short-cut editor which tells me they're going to be ignored!",
"userDisplayName": "user12753",
"userId": null
},
{
"creationDate": "2011-03-21T22:06:16.807",
"id": "35218",
"postId": "31342",
"score": "0",
"text": "I edited my answer in order to give you a suggestion, I can't say why this happened to your system but I hope you find a solution.",
"userDisplayName": null,
"userId": "9598"
},
{
"creationDate": "2011-03-22T09:34:18.270",
"id": "35278",
"postId": "31342",
"score": "0",
"text": "No, that's been great. What I learned from it was that you have to use fusion to \"reload window manager\" (without actually selecting a different one) then I can alt-tab etc. Or typing \"metacity --replace\" does the same thing, so I simply added that to my \"startup applications\" list and it's done the trick.",
"userDisplayName": "user12753",
"userId": null
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T15:37:55.857",
"id": "31342",
"lastActivityDate": "2011-03-23T21:32:30.240",
"lastEditDate": "2017-04-13T12:23:52.840",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "9598",
"parentId": "31325",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": null,
"body": "<p>Try this:</p>\n\n<ol>\n<li>Press <kbd>ALT</kbd> + <kbd>F2</kbd></li>\n<li>Type: <code>metacity --replace</code> (It will give compiz the blue pill)</li>\n<li>Go to System -> Preferences-> Appearance</li>\n<li>Go to Visual Effects tab and Select NONE.</li>\n</ol>\n\n<p>The pro... | null | null | null | user12753 | user12753 |
31327 | 1 | null | 2011-03-21T13:09:49.103 | 3 | 2481 | <p>I have a dualboot Ubuntu and Windows XP on my PC.</p>
<p>Does Ubuntu require drivers for the onboard Ethernet card? If not, how can I make an Internet conection using an ADSL modem?</p>
| null | 169736 | 2014-04-07T22:46:56.010 | 2014-04-07T22:46:56.010 | How can I connect to the Internet using an ADSL modem? | [
"networking"
] | 3 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T13:21:37.973",
"id": "35132",
"postId": "31327",
"score": "1",
"text": "What modem do you have? USB? Who is the manufacturer?",
"userDisplayName": null,
"userId": "6969"
},
{
"creationDate": "2011-03-21T13:25:27.860",
"id": "35135",
"postId":... | null | [
{
"accepted": null,
"body": "<p>I think the command line tool to turn on the DSL connection is called \"pon\" and to disconnect you type \"poff\" . The command is </p>\n\n<pre><code>sudo pon dsl-provider \n</code></pre>\n\n<p>(but I think you can define arbitrary dsl connection names (\"dsl-provider\" is ju... | null | null | null | null | user12755 |
31330 | 1 | 31333 | 2011-03-21T14:16:30.220 | 0 | 1881 | <p>I am creating a script that backups a mysql db using the mysqldump utility. I am writing this script in the shell "sh". I would like to capture the output status of mysqldump in the script (i.e. if the mysqldump command failed or succeeded) so I can report if the script was successful or not. </p>
<ul>
<li>Does mysqldump return an output status? </li>
<li>Can someone please give me instructions on how to do this?</li>
</ul>
| 12526 | 3550 | 2011-03-21T14:19:12.903 | 2011-03-21T14:33:53.057 | Does mysqldump return a status? | [
"mysql",
"ruby",
"rails"
] | 1 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T14:34:58.593",
"id": "35141",
"postId": "31330",
"score": "0",
"text": "`$ mysqldump .......... && echo \"Yes\"` Replace the `...` part with the parameters. If the command is successful it will show `Yes` otherwise nothing will be shown",
"userDisplayName": null... | {
"accepted": true,
"body": "<p>You could use bash exit codes.</p>\n\n<p>Pseudocode</p>\n\n<pre><code>if $? == 0 then successful else ....\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T14:33:53.057",
"id": "31333",
"lastActivityDate": "2011-03-21T14:33:53.057",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "128793",
"parentId": "31330",
"postTypeId": "2",
"score": "1"
} | [
{
"accepted": true,
"body": "<p>You could use bash exit codes.</p>\n\n<p>Pseudocode</p>\n\n<pre><code>if $? == 0 then successful else ....\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T14:... | null | null | null | null | null |
31338 | 1 | 31351 | 2011-03-21T15:14:50.840 | 22 | 7923 | <p>As you can see in the <a href="http://changelogs.ubuntu.com/changelogs/pool/main/l/linux-meta/linux-meta_2.6.35.28.36/changelog">changelog for the Linux kernel</a>, there are update messages like "Bump ABI - Maverick ABI 28".</p>
<p>According to the <a href="https://wiki.ubuntu.com/KernelTeam/BuildSystem/ABI">Ubuntu Wiki</a>, ABI is something like a bridge between the kernel space and the other modules (my interpretation).</p>
<p>Does such an update adds extra features and / or bugfixes? Should I upgrade my kernel to the next version?</p>
| 6969 | null | null | 2015-02-05T17:46:46.567 | What is an kernel update with "Bump ABI"? | [
"kernel",
"updates"
] | 3 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p><strong>NB:</strong> <em>I'm no kernel expert - so this is based on collected knowledge and experience.</em></p>\n\n<p>An ABI \"bump\" should not bring new features, even though it may \"fix\" bugs in some modules/applications that are looking for a higher version of the ABI. You should still install these updates, since generally keeping all components in sync will ensure stability and security.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T16:41:16.177",
"id": "31351",
"lastActivityDate": "2011-03-21T16:41:16.177",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "1992",
"parentId": "31338",
"postTypeId": "2",
"score": "13"
} | [
{
"accepted": true,
"body": "<p><strong>NB:</strong> <em>I'm no kernel expert - so this is based on collected knowledge and experience.</em></p>\n\n<p>An ABI \"bump\" should not bring new features, even though it may \"fix\" bugs in some modules/applications that are looking for a higher version of the ABI.... | null | null | null | null | null |
31343 | 1 | null | 2011-03-21T15:37:56.387 | 1 | 270 | <p>Google always helps to find solution, but most of the time i just copy paste all the codes that are suggested. Sometimes it works like charm, sometimes i screw up my Ubuntu. Not anymore. I really want to know whats under the hood and how these things work. So, please suggest me how to get started from the very basic of Ubuntu, perhaps more generally linux.</p>
| 12405 | null | null | 2011-03-21T16:20:13.977 | One year of Ubuntu experience, still not an expert? | [
"10.04"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>You mentioned the problem.You just copy and paste the commands.You search and find your answers so the command you're finding are needed.Search for them and learn about them.</p>\n\n<p>An alternative solution is <code>man</code>.For sure you know about it.<code>man command</c... | null | null | 2011-03-21T16:20:58.780 | null | null |
31350 | 1 | null | 2011-03-21T16:35:36.190 | 1 | 12047 | <p>Can some one give me an example scenario where this package can be used?
<a href="http://packages.ubuntu.com/dapper/simpleproxy" rel="nofollow">http://packages.ubuntu.com/dapper/simpleproxy</a></p>
| 12580 | 235 | 2011-04-20T21:01:59.180 | 2018-01-31T17:38:29.387 | How do I use simpleproxy? | [
"server",
"networking",
"proxy"
] | 2 | 0 | CC BY-SA 3.0 | [] | null | [
{
"accepted": null,
"body": "<p>The <a href=\"http://manpages.ubuntu.com/manpages/dapper/en/man1/simpleproxy.1.html\" rel=\"nofollow\">manual page</a> is very descriptive:</p>\n\n<blockquote>\n <p>The simpleproxy program acts as a simple tcp proxy. It opens listening socket on local machine and forwards a... | null | null | null | null | null |
31353 | 1 | 31437 | 2011-03-21T17:01:41.607 | 4 | 358 | <p>I am dual booting Ubuntu 10.10 Maverick Meerkat and Windows 7 on my Dell Inspiron 1525 laptop. And I have installed the latest Firefox 4.0 on both the operating system. However when I click the organize tab button on windows, I can see the firefox personna theme applied in the background as shown in the screenshot below.</p>
<p><img src="https://i.stack.imgur.com/gik7W.png" alt="Firefox 4.0 - Windows 7"></p>
<p>And here is it installed in ubuntu 10.10</p>
<p><img src="https://i.stack.imgur.com/qL098.png" alt="Firefox 4.0 - Ubuntu 10.10"></p>
<p>As you can see from both the screenshots, the firefox 4.0 theme in ubuntu cannot be seen under the organize tabs page. Also the firefox button is missing in the ubuntu 10.10 system. Although the theme can be seen in ubuntu when browsing the web. It is only in the tab organization page that I dont see the firefox personna theme applied but just a dull grey background.</p>
<p><strong>Update</strong>: I am running firefox 4.0 final version in windows 7 and firefox 4.0 RC in ubuntu 10.10 installed using the firefox-next ppa. </p>
<p><strong>Update</strong>: I have submitted a feedback as suggested by ændrük. :)</p>
<p><strong>Update</strong>: I tried it on the latest stable release of firefox 4.0 (downloaded from their website) and still have this problem.</p>
<p>Why is this so?</p>
| 5855 | 5855 | 2011-03-22T15:33:09.957 | 2011-09-16T06:55:44.363 | Firefox 4.0 Theming | [
"10.10",
"firefox",
"themes"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>It might have something to do with the fact that the actual window decoration is not themed by the persona. It would look out of place and it would probably be by design that it isn't themed?</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-22T09:19:08.587",
"id": "31437",
"lastActivityDate": "2011-03-22T09:19:08.587",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": "user12801",
"ownerUserId": null,
"parentId": "31353",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": true,
"body": "<p>It might have something to do with the fact that the actual window decoration is not themed by the persona. It would look out of place and it would probably be by design that it isn't themed?</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,... | null | null | null | null | null |
31355 | 1 | 31359 | 2011-03-21T17:08:32.417 | 0 | 659 | <p>The default Python version on Ubuntu 10.04 server edition is 2.6.5. The latest version of the Python 2.6 series is 2.6.6. Does Ubuntu support 2.6.6 or should I leave it at the default version. If I can upgrade the version, what's the corresponding apt-get command to upgrade the Python?</p>
| 10777 | null | null | 2011-03-21T17:30:12.923 | On 10.04, should I upgrade from Python 2.6.5 to 2.6.6? | [
"upgrade",
"python"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>if Ubuntu will support to Python 2.6.6 when you run:</p>\n\n<pre><code>apt-get update\n</code></pre>\n\n<p>and then:</p>\n\n<pre><code>apt-get upgrade\n</code></pre>\n\n<p>automatically youll see the new version of python to upgrade, meanwhile you can keep the version 2.6.5...</p>\n\n<p>cheers!! </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T17:30:12.923",
"id": "31359",
"lastActivityDate": "2011-03-21T17:30:12.923",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "12568",
"parentId": "31355",
"postTypeId": "2",
"score": "0"
} | [
{
"accepted": true,
"body": "<p>if Ubuntu will support to Python 2.6.6 when you run:</p>\n\n<pre><code>apt-get update\n</code></pre>\n\n<p>and then:</p>\n\n<pre><code>apt-get upgrade\n</code></pre>\n\n<p>automatically youll see the new version of python to upgrade, meanwhile you can keep the version 2.6.5..... | null | null | null | null | null |
31360 | 1 | 31366 | 2011-03-21T17:37:31.373 | 2 | 334 | <p>I installed Google Earth as per <a href="http://ubuntuforums.org/showthread.php?p=10583845" rel="nofollow">this walkthrough</a> and now I can't open or use Skype.</p>
<p>I had to use a sudo prefix on some of the steps to edit files and do things without "permission denied" errors.</p>
<p>I desperately need Skype back. Any thoughts on what went wrong or how to uninstall Google Earth and fix my problem?</p>
<p>Thanks in advance.</p>
| 12772 | null | null | 2011-03-21T18:04:54.487 | Installed Google Earth now can't open Skype | [
"skype",
"google-earth"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>The only step that looks like can cause a problem in that walk-through is the dynamic linker configuration changes. I'd try this steps:</p>\n\n<ul>\n<li>Delete the <code>/etc/ld.so.conf.d/googleearth.conf</code> file.</li>\n<li>run, as root, <code>ldconfig</code> again.</li>\n</ul>\n\n<p>You can use the following commands to do it:</p>\n\n<pre><code>sudo rm /etc/ld.so.conf.d/googleearth.conf\nsudo ldconfig\n</code></pre>\n\n<p>I have not tested it, but it can be easily reversed following those two points in the tutorial again. Hope this helps.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-21T18:13:10.500",
"id": "35188",
"postId": "31366",
"score": "0",
"text": "This solved my issue - thanks so much for your help! :D",
"userDisplayName": null,
"userId": "12772"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T17:53:55.960",
"id": "31366",
"lastActivityDate": "2011-03-21T18:04:54.487",
"lastEditDate": "2011-03-21T18:04:54.487",
"lastEditorDisplayName": null,
"lastEditorUserId": "814",
"ownerDisplayName": null,
"ownerUserId": "211",
"parentId": "31360",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": null,
"body": "<p>From one (relative) n00b to another, the quickest way to fix this is probably to reinstall skype. My guess is that the google earth install messed with some shared component.</p>\n\n<p>After I installed adobe air google chrome would no longer play flash. I reinstalled chrome ... | null | null | null | null | null |
31362 | 1 | 32285 | 2011-03-21T17:48:16.417 | 2 | 322 | <p>I am running 10.10 Desktop version and it has been working for a month or so. All of a sudden, I am getting "random" freezes from 5-15 minutes after startup. The system never comes back and I have to reboot. I am an Ubuntu/Linux newbie, so I don't know how to begin to diagnose the problem. Another thing to mention is that I am running Linux inside of VirtualBox 4.0.4.</p>
<p>Are there logs I can checkout? Anything else I can consider? I can provide more level of detail if needed - I just don't know what else is relevant. Thanks!</p>
| 11708 | null | null | 2011-03-27T18:48:01.440 | Random 10.10 Freeze Diagnosis | [
"10.10",
"freeze"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>The problem was caused by VirtualBox and the fact that I had 4 virtual processors set for the virtual machine. After changing this back to 1, everything worked correctly.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-27T18:48:01.440",
"id": "32285",
"lastActivityDate": "2011-03-27T18:48:01.440",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "11708",
"parentId": "31362",
"postTypeId": "2",
"score": "0"
} | [
{
"accepted": true,
"body": "<p>The problem was caused by VirtualBox and the fact that I had 4 virtual processors set for the virtual machine. After changing this back to 1, everything worked correctly.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicens... | null | null | 2016-02-07T11:57:50.710 | null | null |
31368 | 1 | null | 2011-03-21T18:16:00.873 | 0 | 205 | <p>I'm using Dell Inspiron 5010. Recently, I installed 10.10 Ubuntu Netbook Edition within Windows 7, but there's no extra graphical effects. Once I try to activate them, why does it say graphic effects could not be changed? My laptop has laptop uses 1 GB VGA as well.</p>
| 12775 | 814 | 2011-03-22T10:24:03.607 | 2012-01-24T13:17:27.557 | Extra effects does not appear on Dell Inspiron 5010 | [
"ubuntu-netbook",
"compiz",
"graphics"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>In a regular Desktop Edition install, the graphic effects you are looking for are done by a program called <strong>Compiz</strong>.</p>\n\n<p>The Unity interface you see in Ubuntu Netbook Edition uses <strong>Mutter</strong>, a new program that also generates graphical effect... | null | null | null | null | null |
31369 | 1 | null | 2011-03-21T18:21:17.060 | 7 | 1813 | <p>Is there a way to configure nautilus to use vim keybdings. </p>
<p>By vim keybindings I am not saying just <kbd>h</kbd> <kbd>j</kbd> <kbd>k</kbd> <kbd>l</kbd> but other things like regex search on filenames too.</p>
<p>I know I can simply use a command line, but sometimes I have to use this crap file browser for browsing the directories.</p>
<p>Or is there any other GUI file browser which has customizability?</p>
| 52 | null | null | 2011-10-16T18:41:18.190 | Vim keybindings for nautilus | [
"nautilus",
"vim",
"nautilus-elementary",
"shortcut-keys"
] | 2 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>There's an old manager called rox-filer wich have some keyboard friendly features. </p>\n\n<p>'.' opens an input textbox to select files by a wildcard</p>\n\n<p>'/' opens an input textbox to navigate filesystem using directory names and featuring tab text completion.</p>\n\n<... | null | null | null | null | null |
31374 | 1 | null | 2011-03-21T18:53:23.933 | 1 | 708 | <p><a href="https://answers.launchpad.net/ubuntu/+source/gnome-nettool/+question/149292" rel="nofollow">Link to original launchpad discussion</a></p>
<p>Basically for a few weeks my wireless hasn't been working properly. I could see wireless networks, but not connect to them. Asked launchpad on how to help, and when I did what they said to do, it only made my problem worse, now I cant see ANY wireless networks.</p>
<p><a href="https://answers.launchpad.net/ubuntu/+question/149931" rel="nofollow">Link to re-opened question. Same thing as original</a> I just created a new question with the same stuff so new people could see it.</p>
<pre><code> *-network
description: Wireless interface
product: PRO/Wireless 3945ABG [Golan] Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: wlan0
version: 02
serial: 00:1c:bf:a4:ae:11
width: 32 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwl3945 driverversion=2.6.35-28-generic firmware=15.32.2.9 latency=0 link=no multicast=yes wireless=IEEE 802.11abg
resources: irq:45 memory:f8100000-f8100fff
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
</code></pre>
| 12776 | 235 | 2011-03-22T05:46:20.200 | 2011-03-22T05:46:20.200 | Intel 3945ABG wireless not working at all | [
"networking",
"drivers",
"intel-wireless"
] | 1 | 2 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-22T09:22:54.223",
"id": "35275",
"postId": "31374",
"score": "0",
"text": "Can you try to connect / list the network list and post the output of `grep -E 'Network|wlan|wpa' /var/log/syslog | grep \"$(LANG=C date +'%b %d')\"`?",
"userDisplayName": null,
"userId... | null | [
{
"accepted": null,
"body": "<p>You can undo those changes, remove <code>/etc/modprobe.d/iwl3945.conf</code> by running:</p>\n\n<pre><code>sudo rm /etc/modprobe.d/iwl3945.conf\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5"... | null | null | null | null | null |
31377 | 1 | 31385 | 2011-03-21T19:41:04.793 | 3 | 1117 | <p>I have more than 60 ubuntu systems in my network. I want to copy files from one system to other ubuntu systems. All IP addresses are listed in a text file.</p>
<p>So what command can I use to complete the task? Any bash programs?</p>
| 5691 | 6969 | 2011-03-21T19:53:18.417 | 2011-03-22T01:59:41.670 | How can I distribute a file across multiple systems in a network? | [
"command-line"
] | 3 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T19:50:30.370",
"id": "35198",
"postId": "31377",
"score": "0",
"text": "You sound frustrated. Please do not use that many question marks. What kind of file is it? Can't you setup a server from which the other computers download files from?",
"userDisplayName": n... | {
"accepted": true,
"body": "<p>suppose that you have your IP addresses in a file named ips.txt, each IP in a line. create a file named, for example *scp_all.sh* and copy the following text bellow in it:</p>\n\n<pre><code>#!/bin/bash\n\nwhile read LINE ; do\n scp $1 root@$LINE:$1\ndone < ips.txt\n</code></pre>\n\n<p>then execute it in this way:</p>\n\n<pre><code>./scp_all.sh /home/yaroo/Desktop/1.jpg\n</code></pre>\n\n<p>this is a really simple script, while it supposes that your username in all computers is root, it doesn't store password and you have to enter it each time, and it doesn't have any exception handler. \nif you want to change the destination address, change the second <em>$1</em> in scp command with $2 and use the script in this way:</p>\n\n<pre><code>./scp_all.sh /home/yaroo/Desktop/1.jpg /home/yaroo/Downloads/just_copied.jpg\n</code></pre>\n\n<p>I've said that you have to enter your password for each computer, but if you have decided to use this script regularly, you can solve this problem by this simple 6-step solution described <a href=\"http://www.linuxjournal.com/article/8600\" rel=\"nofollow\">here</a>.\ngood luck ;-)</p>\n",
"commentCount": "6",
"comments": [
{
"creationDate": "2011-03-21T20:24:03.307",
"id": "35204",
"postId": "31385",
"score": "0",
"text": "just to mention that I haven't test this script! hope for best ;-)",
"userDisplayName": null,
"userId": "12594"
},
{
"creationDate": "2011-03-24T10:29:20.777",
"id": "35623",
"postId": "31385",
"score": "0",
"text": "Nice answer. I'll just add that I would change the first line to `#! /bin/bash -e` so that it will stop if any of the commands fail.",
"userDisplayName": null,
"userId": "1116"
},
{
"creationDate": "2011-03-27T06:04:55.060",
"id": "36047",
"postId": "31385",
"score": "0",
"text": "Can you explain this line `scp $1 root@$LINE:$1` ?",
"userDisplayName": null,
"userId": "5691"
},
{
"creationDate": "2011-03-27T13:11:57.463",
"id": "36087",
"postId": "31385",
"score": "0",
"text": "@karthick87 yeah, we store the address of source file in a variable named $1 (we get it from command line) and the IP address of destination machine in a variable named $LINE; so we copy file $1 to machine $LINE in the same address of $1. also root@$LINE means login at machine with IP address $LINE with username `root`. OK? ;-)",
"userDisplayName": null,
"userId": "12594"
},
{
"creationDate": "2011-03-27T14:29:18.613",
"id": "36103",
"postId": "31385",
"score": "0",
"text": "Yeah thankyou..But suppose if one of the system is down..Will it skip and go to the other system??",
"userDisplayName": null,
"userId": "5691"
},
{
"creationDate": "2011-03-27T23:57:56.893",
"id": "36219",
"postId": "31385",
"score": "0",
"text": "@karthick sorry, dunno ;-)",
"userDisplayName": null,
"userId": "12594"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T20:22:20.233",
"id": "31385",
"lastActivityDate": "2011-03-21T20:22:20.233",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "12594",
"parentId": "31377",
"postTypeId": "2",
"score": "3"
} | [
{
"accepted": null,
"body": "<p>Lekensteyn is correct -- you should probably be pulling the files from the server, rather than pushing them to the clients from the server.</p>\n\n<p>If you're going to be doing this regularly (especially with a large number of files), I would set up <a href=\"http://en.wikip... | null | null | null | null | null |
31378 | 1 | 31395 | 2011-03-21T19:49:43.413 | 0 | 4254 | <p>Is there a way to reset kubuntu to the initial state?
Under initial state, I mean the system and all settings are as kubuntu was installed on a clean disk, but to preserve installed packages.</p>
<p>If possible I would like to avoid making data backup and reinstalling kubuntu.</p>
| 6228 | null | null | 2021-07-29T03:35:31.077 | How to reset kubuntu to initial state? | [
"10.10",
"kubuntu",
"re-installation"
] | 1 | 3 | CC BY-SA 2.5 | [
{
"creationDate": "2011-03-21T19:58:08.070",
"id": "35199",
"postId": "31378",
"score": "0",
"text": "How do I close my answer? This is copy of this question : http://askubuntu.com/questions/5655/how-do-i-reinstall-ubuntu",
"userDisplayName": null,
"userId": "6228"
},
{
"creation... | {
"accepted": true,
"body": "<p>If the idea is to return KDE to the default state, if you rename your ~/.kde folder (hidden) to something like kde-bak, then when you log back in you'll see the desktop as it was when you first installed. That will do away with some configurations that you might miss though, like for your kmail e-mail account (including e-mails), but in that case you can copy the ~/.kde/share/apps/kmail back from the renamed (kde-bak) folder. You won't be able to rename the .kde directory while it's in use, because it will re-create itself, so the best way to do it is from the Recovery Mode or from a Live CD environment.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2011-03-22T07:18:41.810",
"id": "35268",
"postId": "31395",
"score": "0",
"text": "Ok, thanks. So, do I do it in combination with this : askubuntu.com/questions/5655/how-do-i-reinstall-ubuntu?",
"userDisplayName": null,
"userId": "6228"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T22:48:10.107",
"id": "31395",
"lastActivityDate": "2011-03-21T22:48:10.107",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "6359",
"parentId": "31378",
"postTypeId": "2",
"score": "2"
} | [
{
"accepted": true,
"body": "<p>If the idea is to return KDE to the default state, if you rename your ~/.kde folder (hidden) to something like kde-bak, then when you log back in you'll see the desktop as it was when you first installed. That will do away with some configurations that you might miss though,... | null | null | null | null | null |
31379 | 1 | null | 2011-03-21T19:55:21.670 | 2 | 5723 | <p>I get this black bar across the bottom of my screen when ever I boot up, tried reboot and no joy, keep getting messages from docky telling me to "enable composting". Was using dual monitors before this happened, take the monitor out and i'm stuck with this</p>
| null | 5938 | 2011-03-21T21:18:39.913 | 2011-03-21T21:18:39.913 | Docky "Enable Compositing" error and black bar visualized instead of it | [
"10.10",
"display"
] | 1 | 0 | CC BY-SA 2.5 | [] | null | [
{
"accepted": null,
"body": "<p>Docky requires a <a href=\"http://en.wikipedia.org/wiki/Compositing_window_manager\" rel=\"nofollow\">Compositing Window Manager</a> to function properly. The black bar you see across the bottom is the area where Docky would be showing up if it could run. The usual composit... | null | null | null | null | user12652 |
31381 | 1 | 31389 | 2011-03-21T20:01:38.497 | 4 | 9111 | <p>Ubuntu 10.10 here. On the command line, I'm trying to do:</p>
<pre><code>gem install railsless-deploy
</code></pre>
<p>I get this message:</p>
<blockquote>
<p>The program 'gem' can be found in the
following packages: * rubygems1.8 *
rubygems1.9.1 Try: sudo apt-get
install </p>
</blockquote>
<p>So I did: <code>sudo apt-get install rubygems1.9.1</code></p>
<p>I then try the command again: <code>gem install railsless-deploy</code></p>
<p>But the same quoted message appears again. Why? Any help to figure this out?</p>
<p>Thanks a lot.</p>
| 1446 | 235 | 2011-03-22T05:46:50.403 | 2011-03-22T05:46:50.403 | Can't get "gem" command to work - Why? | [
"10.10",
"ruby",
"gems"
] | 1 | 1 | CC BY-SA 2.5 | [
{
"creationDate": "2011-07-05T02:46:58.943",
"id": "57879",
"postId": "31381",
"score": "0",
"text": "This question applies to Natty (11.04) as well. The accepted answer from @Mikel also applies to 11.04",
"userDisplayName": null,
"userId": "21112"
}
] | {
"accepted": true,
"body": "<p>rubygems1.9.1 is a virtual package that seems to only exist for backwards compatibility.</p>\n\n<p>It installs ruby1.9.1.</p>\n\n<p>ruby1.9.1 provides <code>/usr/bin/gem1.9.1</code>.</p>\n\n<p>So, if you want Ruby 1.9.1, you should run <code>gem1.9.1</code> instead of <code>gem</code>.</p>\n\n<p>Or, if you want Ruby 1.8.x, you should run <code>gem</code>.</p>\n\n<p>(In theory, you should be able to run <code>update-alternatives --config gem</code> to make <code>/usr/bin/gem</code> point to the 1.9.1 version, but this doesn't seem to work.)</p>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2011-03-21T21:42:43.160",
"id": "35214",
"postId": "31389",
"score": "0",
"text": "Thanks a lot Mikel. I've used Ruby 1.8 package so that I can simply use gem. This is for Capistrano deployment so, no need to have the latest rail here. Thanks a lot. Really. :)",
"userDisplayName": null,
"userId": "1446"
},
{
"creationDate": "2011-03-24T11:53:54.973",
"id": "35629",
"postId": "31389",
"score": "0",
"text": "After all, I end up installing a new ruby version, and done it \"comme il faut\". In order to see the sequence of commands used to achieve this, please see question section below: http://stackoverflow.com/questions/5395183/it-seems-that-i-cant-install-capistrano-with-rails-less-why-is-this",
"userDisplayName": null,
"userId": "1446"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2011-03-21T20:46:29.877",
"id": "31389",
"lastActivityDate": "2011-03-21T20:53:06.170",
"lastEditDate": "2011-03-21T20:53:06.170",
"lastEditorDisplayName": null,
"lastEditorUserId": "1951",
"ownerDisplayName": null,
"ownerUserId": "1951",
"parentId": "31381",
"postTypeId": "2",
"score": "5"
} | [
{
"accepted": true,
"body": "<p>rubygems1.9.1 is a virtual package that seems to only exist for backwards compatibility.</p>\n\n<p>It installs ruby1.9.1.</p>\n\n<p>ruby1.9.1 provides <code>/usr/bin/gem1.9.1</code>.</p>\n\n<p>So, if you want Ruby 1.9.1, you should run <code>gem1.9.1</code> instead of <code>g... | null | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.