Ubuntu Servers :: Settings.json Won't Stay Changed?

May 23, 2011

I'm working on getting transmission-deamon working with remote access.

everything says edit

sudo nano /etc/transmission-daemon/settings.json

specifically "rpc-whitelist

however, as soon as I do. "sudo service transmission-daemon restart" the settings reset.

View 4 Replies


ADVERTISEMENT

Ubuntu :: Transmission Can't Find Settings.json

Oct 25, 2010

After upgrading a couple of months ago from Ubuntu server 9.04 to 10.04, transmission stopped working. I have since removed it and reinstalled. It is running as I can start and stop the daemon. However, I can't locate the settings.json file so I can get into it in the browser. The version running is 1.93. I tried searching in multiple directories and even searched using:

Code:
sudo find / -iname settings.json
Nothing came up.

I stopped the daemon and created the file in /etc/transmission-daemon/settings.json with the contents of my old file I had saved elsewhere. Restarted the daemon and I still get the 404 error.

I was suspicious the last step wouldn't work as I was of the opinion that transmission is supposed to generate its own default settings.json file.

View 1 Replies View Related

Hardware :: Gpointing-device-settings Settings Will Not Stay After Reboot?

Oct 18, 2009

I am running a debian squeeze machine on a ibm t40 laptop with window maker as my window manager. I am using gpointing-device-settings as a program to get the scroll bar on my touch pad working. unfortunately, I can't get the settings to stick after i shutdown and turn on. I have to go into the program and unclick then reclick the button. i'm using version 1.3.2 (ive tried both deb and source versions). does anyone have any ideas on how to fix this? and if there is any configure files that I could configure instead of having to use the gui program.

View 4 Replies View Related

Networking :: How To Get DNS Settings To Stay Either Cli Or Gui

Mar 14, 2010

I have a project with a small device which is running xubuntu. Running DHCP all works fine, but we are sending this out to a client who gave us some specific IP settings.There is nothing GUI wise, which is nothing tragic, so I updated the interfaces file with the static info as well as the /etc/resolv.conf file and rebooted. The static info worked but had no DNS, and all that was in that file was;#SETUP by Network Manager (or something close as I am not at the office).

You can run via cli NetworkManager but does nothing. I installed I think it was called KNetworkManager which is a GUI to the app, but when started it shows the eth0 device as in use so I am assuming something else is managing.So basically how can I get the DNS settings to stay either cli or gui..

View 1 Replies View Related

Ubuntu :: Keyboard Settings Won't Stay After Reboot?

Mar 19, 2010

I'm using Ubuntu Netbook Remix 9.04 in Acer Aspire One together with Windows XP (both on different partitions). The trouble since installing Ubuntu has been that my keyboard has scandinavic layout which includes "" and "" keys. When I assign the layout in Ubuntu's as "FI" instead of "USA" everything is fine. After reboot for some reason the changes made won't stay and I have to change the keyboard layout manually. If I remove "USA" from the list after reboot it'll appear to the list again!

I've tried to create /etc/X11/xorg.conf file with the keyboard configuration code, but it has no effect for the situation. I've tried also command:

Code:
sudo dpkg-reconfigure console-setup This has no effect also.

I'm starting to be frustrated for the situation. I really enjoy using Ubuntu instead of XP but this just doesn't make sense that the keyboard layout won't stay on.

View 2 Replies View Related

Ubuntu :: Upgraded From 9.10 To 10.04, Window Settings Are Changed?

May 4, 2010

Ubuntu from version 9.10 to 10.04 today, and now all of the window settings (maximize, minimize, restore, close) have been moved to the left side of the border. I can't seem to remember how I did it, so can somebody please tell me how to move it back to the right side? It's not serious but I like it on the right side

View 1 Replies View Related

Ubuntu :: Changed These BIOS Settings But Now Won't Boot?

Oct 16, 2010

Long story short, I changed these BIOS settings (and changed them back), but now Ubuntu won't boot: SATA RAID/AHCI Mode: from Disabled to AHCI

Onboard SATA/IDE Ctlr Mode: from IDE to AHCIThe last thing it says is "Init: ureadahead-other main process (nnn) terminated with status 4". Booting off an Ubuntu CD and entering Rescue mode gets me to a shell; the file systems are still there, but Reward for first solution (other than reload): $10 Starbucks card!

View 3 Replies View Related

Ubuntu :: Desktop Settings Have Been Changed Suddenly

Apr 15, 2011

Got up to go to work and all of a sudden my settings have changed. My bottom panel for my tabs is gone and instead of my applications on the top they are now on the side. Whats up with this? And what the hell is Ubuntu One?

View 9 Replies View Related

Ubuntu Servers :: Squid Causing /var To Stay Busy During Shutdown?

Apr 3, 2011

i just wanted to check if its something silly ive overseen and if anyone else is having this problem...im running Ubuntu 10.04.2 LTS with latest version of squid 2.7.STABLE7-1ubuntu12.2. now when i shutdown or reboot the system, it says something along this lines of umount: /var is busy (check using lsof...). this is followed by text in red: [fail].when the system starts up again, i can see /var journal is recovering, so the /var partition was not cleanly unmounted during shutdown. obviously, there is a risk of filesystem corruption here. FYI, i have /var and other important mountpoints as separate partitions (LVM; ext4).

to confirm my suspicions of squid still running during shutdown, i checked /var/log/squid/cache.log and there is no indication that it received the signal to terminate. if i manually run "stop squid", then cache.log would show that squid has stopped successfully (or words to that effect).to confirm that /var is locked by squid during shutdown, ive added a script to run "lsof | grep var" before filesystems are unmounted. and voila! it indicates that various files used by squid in /var such as swap.state are still open. hence, the next system startup would result in /var recovering journal again.finally, i tried running "stop squid" before issuing the shutdown command and it successfully unmounts /var and i do not get /var recovering journal on the next system startup.

View 3 Replies View Related

Fedora :: Use Json In A Php Application?

Dec 4, 2010

Trying to use json in a php application. phpInfo says php was configured "--disable-json". Looked around and found json.ini in the /etc/php.d and json.so in /usr/lib/php/modules Trying to run a php application, e.g.php test_client.phpI get the error messages:

PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/json.so' - /usr/lib/php/modules/json.so: undefined symbol:

ZVAL_DELREF in Unknown on line 0Any why the undefined symbol is there and what to do about it?

View 1 Replies View Related

Programming :: Get And Process Stuff From JSON Encoded Serialized Data String?

Apr 2, 2010

I have this JSON encoded data, which I want to efficiently parse (i.e. fast, with minimal system resources). I don't want to use a/the shell any more than necessary.

Here's a snippet of what the raw serial data looks like:

Code:
[{"num":1,"name":"1","visible":false,"focused":false,"rect":{"x":0,"y":0,"width":1680,"height":1050},...blah blah..
So that's fine. I currently have at least two ways of parsing it:

This Perl method (which I don't much care for because I'm not much into Perl, and because the output is not much more useful than the raw form, and imho even more cryptic):

Code:
sasha@reactor: <produce data> | perl -MData::Dumper -MJSON::XS -E 'say Dumper(decode_json <>)'
$VAR1 = [
{
code....

# Which means: at x=1680, draw a 20x20px grey block, then back up -10px and draw a "1" on the block.I figure that the two awk's I've used can be combined into one -- but I began having problems with removing the single quotes if I did it within the awk, which is why I stuck a `tr` in the middle.

I know this sucks. So, if someone has some ideas or thoughts on something else to do with this JSON data, that's less convoluted that where I'm currently going, I'll be happy to hear about it.

PS - I know this whole post is possibly hard to understand -- if you need more info (you mean you're interested in this mess?? )

View 13 Replies View Related

OpenSUSE :: Yast Won't Start After Changed Some Settings In "local Security"

Aug 20, 2010

1: I changed some settings in "local security", about file permits or something, and now I can't run Yast to fix it, not even see it. Neither can I add or remove any software. And the ugliest part is that I can't even shut down the pc. It pops up a shaking error message about authentication stuff. How do I fix this?

2: It also throws en exception whenever I try to install my monitor's driver, a HannsG, which is an .exe file. I was told I should run .exe files through Wine, but this wont work either. Is there another -and more appropriate- way to execute this files?

View 9 Replies View Related

CentOS 5 Networking :: Why Is Eth0 Unresponsive Until "save Changed Settings"

Nov 19, 2010

Whenever I boot up CentOS 5,eth0 provides no connection to the internet . Deactivating and reactivating it does nothing. However, when I go to edit its settings and change nothing, then save and reactivate, connectivity is established.Why can't I get connectivity at startup?

View 1 Replies View Related

OpenSUSE Network :: No Network Connection After Firwall Settings Changed / Get It To Work?

Nov 17, 2010

I deleted the firewall files "K09SuSEfirewall2_init", "K01SuSEfirewall2_setup", "S11SuSEfirewall2_setup" and "S01SuSEfirewall2_init" from "/etc/rc.d/rc5.d" in order to disable the firewall when rebooting.

As a consequence all network services are not working. I can't connect to any other machine nor to the internet.

I rebuilt the symbolic files based on the ones for runlevel 3, but still no network services are available.

Any suggestions how to make it work again? I'm using Suse 11.3.

View 9 Replies View Related

Ubuntu Servers :: Permissions For A Log File Being Changed?

Feb 23, 2010

I have a recently setup my first linux server (hardy) and am having problems with the permissions for a log file being changed. I believe this is caused by syslogd, but am not sure how to correct it. Bacula will report it is unable to start a backup because it is unable to open the log file (/var/lib/bacula/log) "permission denied". After changing the owner from syslog to bacula, the backup will resume. However, the following day I encounter the same problem because the owner of the log has been changed back to syslog.I see where the permissions for logs are altered in sysklogd, but I am not certain how to make bacula exempt or if this is the right approach.

View 1 Replies View Related

Ubuntu Servers :: Changed Group But Can't See The Difference

Jan 19, 2011

I have set up Ubuntu 10.04 and am running it on a VPS. I have everything the way I want it but I have encountered a problem. When I created my user, I did this:

adduser myname

that worked fine, it also assigned me to group called myname, which isn't what i wanted. so i tried to change my group to staff with the following:

sudo usermod -g staff myname

it works fine and i can verify my new group by:

groups myname

and get:

staff

but...now here come the bit I don't understand, when I make a new file/folder and then look at their ownership it is the old group (ie. myname). is this right? shouldn't the ownership of the file now be myname staff? not myname myname.

this is what i did to create a new file, while logged in under myname:

touch a
mkdir da
ls -al

View 5 Replies View Related

Fedora Servers :: SSH From Changed IP?

Jul 5, 2011

I run SSH daemon on my Fedora 15 (server). When I generate public/private key on my laptop (client) and put public key to authorized_keys on server it works excellent. But when I change IP address of laptop (change WLAN) I have problem to connect. I searched GOOGLE but I havent find any information. I also tried the same from other laptop with the same result.

View 11 Replies View Related

Ubuntu Servers :: Changed AllowOverride Still HTAccess Not Working

Apr 6, 2010

I have followed the tutorial from this site [URL]. I have changed this file /etc/apache2/sites-available/default and in this file I have changed AllowOverride None to AllowOverride All but still I get:
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. I have installed and reinstalled apache 2 time already.

View 8 Replies View Related

Ubuntu Servers :: Rsync - Backup Only Changed Blocks?

Aug 10, 2010

I'm going to make a nightly backup copy from one server to another, using rsync. If I have a sufficiently large file, say 4+ GB or so, I'm not interested in copying the whole file if only a small change has been made. Can rsync detect small changes on block level and backup only those if needed?

View 2 Replies View Related

Ubuntu Servers :: Samba Stopped Working After IP Changed

Sep 13, 2010

I run Samba version 3.4.7 as a Domain server for our company, and recently we reorganized our IP-addresses. And the Samba server also got a new IP-address. (192.168.1.60 -> 192.168.1.22). However, now new computers can not join the domain, and old ones can not connect to it correctly (they get a temp profile).

Windows XP gets a temp profile when connecting, and when trying to join a domain I get this error "A domain controller for the domain HAWAR3 could not be contacted. Ensure that the domain name is typed correctly. If the name is correct click Details for troubleshooting".

When trying to connect Windows2008R2 (already a member) it says:
"There are currently no logon servers available to service the logon request."
My guess is that is is some problem with WINS or something.

View 2 Replies View Related

Ubuntu Servers :: Cannot Get IP Changed For Home Shared Computers

Sep 27, 2010

Im wondering about proxy servers, see it is like this: I got banned from a samp server and i can't get my ip changed (it's not the local address it's the one all the computers in my house shares) I searched a little bit and discovered that a proxy server would be the best option. If I have it in some one else house I will get another ip right? Is it possible to install some software on my laptop and just use that? and how do I do that? Btw I found this: [URL]. But I didn't understand so much of it.

View 4 Replies View Related

Ubuntu Servers :: Apache 403 Error With Changed Www Root?

Feb 9, 2011

I don't know if this the right place to ask this question. If not excuse me.I installed apache server on my ubuntu and I've changed the www folder in etc/apache/.../default from /var/www to home/user/www but now i haveForbiddenYou don't have permission to access / on this server.

View 3 Replies View Related

Ubuntu Servers :: /tmp Permission Changed After Postfix Upgrade

Apr 19, 2011

Today, after postfix security upgrade, /tmp permissions changed from 777 to 755 on my Ubuntu Server 10.04.2

View 1 Replies View Related

Ubuntu Servers :: OS Drive /dev/sda Changed Labels With Raid5 Disk /dev/sdc?

Jun 25, 2011

My original config:

**Partition/Drive info**

/dev/sda Boot----------> 298.09 GB Hitachi HDT72503
20GB /
16GB /swap
50GB /var

[code]....

1. For some odd reason I tried connecting to a samba share as I had it setup and I could not.

2. Looked at webmin and it said my whole /dev/md0 RAID5 was being used..about 7.8TBs. decided to check my RAID5 setup and drives and noticed

**NEW Partition/Drive info**

/dev/sda Raid Array 1 1.82 TB SAMSUNG HD204UI
/dev/sdb Raid Array 1 1.82 TB SAMSUNG HD204UI
/dev/sdc1 /

[code]....

I didn't connect any new drives or anything. I had checked my "mdadm.conf" and "fstab" and everything looked the same?

View 3 Replies View Related

Fedora Servers :: DYNDNS Changed Public Key - Now Scp Doesn't Work

Apr 9, 2010

A week ago or so neither ssh nor scp were working when attempting to connect to my on-campus computer from home. ssh was complainig about the key not matching and I figured out I could just delete the config file it was reading the (now old) key from and let it create a new one with the updated key upon prompting me whether or not to trust the remote host.

However, even though ssh is now working, I can no longer use scp. I issued scp -v and discovered a bunch of errors. scp prompts me for the remote password and even prints the message of the day on the remote computer but then just hangs and doesn't seem to be copying any files. I'm sure the issue is with the whole key change issue but I can't quite figure out why ssh would be working just fine and scp would be failing.

View 1 Replies View Related

Fedora Servers :: Check In Dates Getting Changed / Updated To System Time

Jun 21, 2011

I am using the default CVS available in Fedora 9. I initiated the CVS server by
cvs -d /usr/local/cvsproj init
To check-in and check-out the following exports commands are used
export CVS_RSH=ssh
export CVSROOT=:ext:swathi@SERVER:/usr/local/cvsproj

I shall explain problem by taking an example. A project was checked in long before (for example the checkin date is 25 Feb 2010). And today (i.e. 21 June 2011) I checked out the project from the repository. After checkout, the date of the project in the repository is changed from 25 Feb 2010 to 21 June 2011. This date is set to all the subfolders in that project. But the files in the project retains the checking date i.e. 25 Feb 2010. Why the check-in dates are getting updated/changed to the system time after doing check-out.

View 2 Replies View Related

Fedora Servers :: Postfix - Something Changed In The Versions And It No Longer Works When Saved Main.cf File

Jun 22, 2009

I upgraded from Fedora 10 to Fedora 11, and it seems that when I saved my main.cf file, something changed in the versions and it no longer works. I've tried going through the file and tweaking it, but it's not working. Here is the postconf

[Code]...

View 7 Replies View Related

Ubuntu Servers :: Vsftpd And User Specific Settings?

Jan 24, 2010

I just set up my own server and basically my folder is on say /media/disk1/ and my girlfriends is on /media/patato/ is there a way i can set it so that if i log in it goes to my folder and if she does it goes to hers.... I've currently got it set up as /media/ that it goes to but i cant get it to change it for each user (we can also browse each others drive and we dont want that, we want to be tied into /media/ourdirectory and all of its subdirectories) problem is that it is running on a computer that use to be functional (same install because I cant find my disk drive) so it cant use home folders....

View 1 Replies View Related

Ubuntu Servers :: PPTPD Auto Disconnect Settings?

Mar 23, 2010

PPTPD Auto Disconnect Settings?

View 9 Replies View Related

Ubuntu Servers :: Retrieve The Apache Compilation Settings?

Apr 28, 2010

I've been mandated to reinstall a server at a new client.He doesn't have any documentation on it.the Apache seems to be compiled with a lot of modules.Is there a way of retrieving the ./configure options that was used?With PHP, it is possible with the php-info.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved