Software :: Recommended CMS For A Web Configuration Tool ?

May 18, 2011

I have inherited a web configuration tool based on mojoportal (which uses C#). As the web server hosting this site is on a Linux machine (currently Ubuntu + mono), I would like to recreate it in a more Linux-natural environment.

The web application I inherited needs to allow creation of configuration profiles for other Linuxes(including setting their IP tables, QoS and many other network protocols). These profiles are downloaded by the Linux clients and a local parser does the configuration accordingly.

The main properties I need are:
* Receive and display a lot of structured data to the user (i.e. iptables chains or QoS hierarchies) and of course process it
* Manage several users with different permissions
* Use MySQL as the database
* Allow FTP access to receive configuration files created
* Display monitoring data and graphs (a low-level NMS)

I do not need forums, blogs or any other user input apart from entering data in the forms (possibly a text editor, but that's about it)

I used to be very proficient in Python and Perl (so am sure it would be easy to regain these abilities) and am versed in SQL. I know HTTP and CGI but never worked with PHP.

View 1 Replies


ADVERTISEMENT

Fedora Servers :: Recommended Postfix Configuration For SB?

Mar 27, 2009

I am building an email server in what I consider to be a 'small business'. I would say my Postfix mail server will house 300 mailboxes (Max). I have a decent server with enough RAM / disk space to run this email server however I don't know what the best way is to manage / configure the users mail boxes.

how to create a new user on the Linux server using 'adduser / useradd' and then setting their shell to /bin/nologin. This is because the mail user will never need to log into the shell of the mail server directly and can still populate email from their mailbox which is located in their /home/$user directory. Now many people I spoke with have advised me that this is a bad and cumbersome method of account administration.

I am running:

Postfix 2.5
Clamav v0.94.2
Amavisd-new 2.5.4
Dovecot 1.0.7
Spamassassin 3.2.5

View 3 Replies View Related

Debian Configuration :: Recommended To Upgrade From Etch To Squeeze?

Mar 2, 2011

I am running a server that has Etch on it. I have only recently been given this responsibility as I am the "IT-guy". I am running postifx, squid, shorewall, courier, samba and other things. The network has about 75 users with emails and data. I do not want to do anything that would risk their data and emails getting lost.

Is it still recommended that I upgrade to Lenny and then Squeeze?

View 4 Replies View Related

Fedora :: Compiz-Configuration-Tool Is Not Functionable

Feb 9, 2010

I noticed, that the "official" Compiz-Configuration-Tool is not functionable. I change the properties of some effects, and even after reboot, no change can be seen.Then there is the tiny Fedora-Compiz-Tool. The settings I'm setting here are applied immediately.Is that a normal behaviour? Could it be that the official Compiz-Config-Tool is not compatible with the Fedora-Compiz?

View 2 Replies View Related

Ubuntu :: NTFS Configuration Tool Not Running In 10.10

Oct 17, 2010

So I've installed Ubuntu 10.10 from fresh. I do dual run with Windows and i like to share the folder with Win, so I need ntfs-config tool to automount the Win-Data partition. Installed ntfs-configuration tool and wont launch, tried through console and got:

Traceback (most recent call last): File "/usr/bin/ntfs-config", line 102, in <module>
main(args, opts)
File "/usr/bin/ntfs-config", line 75, in main
app = NtfsConfig()
File "/usr/lib/pymodules/python2.6/NtfsConfig/NtfsConfig.py", line 56, in __init__
os.mkdir(HAL_CONFIG_DIR)
OSError: [Errno 2] No such file or directory: '/etc/hal/fdi/policy'

View 9 Replies View Related

Ubuntu :: NTFS Configuration Tool Will Not Work

Jan 1, 2011

I've installed and reinstalled the Tool several times and it doesn't do anything. I get the prompt to input my password, which I know I put in correctly. It then just disappears. If I try running the tool again, I see a window pop up at the bottom of my screen for a half a second then disappear. I'm running Maverick with Win7 dual-booting and trying to use the tool to auto-mount several partitions

View 3 Replies View Related

Debian Configuration :: Tool To Turn Off Hard Disks?

Dec 31, 2010

Is there a command line tool to shut off/spin down the hard disk either when not in use or when something is typed into the console? I'm trying to save power in a laptop I have..

View 2 Replies View Related

OpenSUSE Hardware :: No More Keyboard Or Mouse Configuration Tool?

Jan 26, 2010

I just upgraded (via backup and install) from 11.1 to 11.2. SaX2 was perfect for configuring my IBM SpaceSaver (Trackpoint) USB keyboard, and my Logitech Marble Mouse. Now that SaX2 doesn't have the keyboard or mouse, eh... modules?, I don't know how I can configure them the way I'd like.

What now? I'd rather not have to use the on-screen keyboard every time I start up openSUSE to turn off NumLock... Do I have to manually edit /etc/xorg.conf now?

View 5 Replies View Related

Fedora Security :: Find A Tool To Track Configuration Files Changes?

Mar 30, 2009

I am trying to find a best tool to track configuration files changes. I did find some information about osec and mactime, but, it seems, that they are not included in fedora/rpmfusion package databases. is there any tool that can be installed as a package?

View 8 Replies View Related

Ubuntu Installation :: NFTS Configuration Tool Doesn't Function?

Dec 31, 2010

I tried installing NFTS Configuration Tool to auto-mount several partitions at startup, but the Configuration Tool isn't working. I've entered the terminal line to update it, but it still won't even start.

What happens is when I click on NFTS Configuration Tool under System - Administration, I'll get the prompt to enter my Administrative password. I enter it and click Ok, but then it just disappears. If I try running the Tool again, I see a window come up at the bottom of my screen titled 'System Administrative' for about half a second then disappear. If I restart or suspend and try again, I still get the same nagging problem.

View 2 Replies View Related

General :: Can Find Configuration Tool Like 'Yast' That Works On Solaris 10 ?

Jan 27, 2011

does anyone knows if i can find a configuration tool like "Yast" that works on Solaris 10 ?

View 1 Replies View Related

Software :: General Tool To Manipulate Text Configuration Files

Mar 25, 2010

Is there any Linux tool to create new or modify exiting key/value pairs in text configuration files? For example, to change a setting in xorg.conf, or change something in etc/networking/interfaces? I know it could be done by sed or by perl scripts, but it could be easier to have a program for this purpose. There are many difficulties for this job that the program should consider, and I am facing nearly all of them:

- Some configuration files may have sections. Like in Windows-type INI files (for example: "[something]"), or like Section in xorg.conf. More sections with the same name can occur, like in xorg.conf.

- If the key/value pair originally does not exist, then the program should add it. But not to the end of the file, but tothe end of a predefined section.

- Config files can have remark lines. Remark text can be even at the same line than the key/value pair. After modifying the value, the original remark text should not change at the end of the line. The remark-starting symbol is not always.
- The values in configuration files are not always simple numbers or simple words, but in rare cases, they are composed by more words, for example: item=name address phone

And of course, we can have remark at the end, like this: item=name address phone # remark text

- The key-value separator depends on the file. Some files use "key=value" format, some other use "key value" format, or even "key1 key2 value", like xorg.conf. The as separator can also occur.

- Case sensitivity can also be an issue.

- Sometime to desired task is not to modify a value, but to add or remove a line beginning remark to a certain line.

I think that managing all these possible cases by a perl or sed program is nearly impossible. I begun to write a C program, but maybe there is already one?

View 6 Replies View Related

Debian Configuration :: Bluez Gatt Tool Not Connected To Hcix Device

Apr 19, 2016

Using jessie over 4.2.8 or 4.3.4 kernel.

Used both the default bluez package, 5.23 and building bluez 5.36 by hand.

hciconfig shows a good configuration,

hci0: Type: BR/EDR Bus: UART
BD Address: 78:A5:04:31:3C:4B ACL MTU: 1021:6 SCO MTU: 180:4
UP RUNNING
RX bytes:82105 acl:0 sco:0 events:1989 errors:0
TX bytes:516 acl:0 sco:0 commands:48 errors:0

hcidump -x does show Commands/Events received, beacons are being seen, and collected by our app.

> HCI Event: LE Meta Event (0x3e) plen 42
LE Advertising Report
ADV_IND - Connectable undirected advertising (0)
bdaddr F9:77:66:E8:F7:8B (Random)
Flags: 0x06

[Code] ....

However when the app tries to connect it always gets connection refused at gatt_connect.

gatttool behaves the same way, and hcidump does not show any connection attempts, implying no connection between gatttool and the device, although it is specified on the command line.

Finally although the bluetoothd is running bluetoothctl also shows no default controller found. I had edited /etc/bluetooth/uart.conf, adding an hciattach entry for the device but that changed nothing when restarting the bluetoothd. Entering a garbage entry into that file does not produce any errors, so I am not sure it is even being read.

Also systemctl|grep bluetooth shows :-

sys-devices-virtual-bluetooth-hci0-rfkill0.device loaded active plugged /sys/devices/virtual/bluetooth/hci0/rfkill0
sys-devices-virtual-bluetooth-hci0.device loaded active plugged /sys/devices/virtual/bluetooth/hci0
sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0
bluetooth.target loaded active active Bluetooth

/sys/devices/virtual/bluetooth/hci0/address shows the correct MAC, but /sys/subsystem/bluetooth/devices/hci0 does not exist, a post elsewhere indicated this was not a problem but that seems odd.

Is the uart.conf file still used([URL] .... would suggest yes) and if so is the format a full hciattach command or merely the hciattach parameters?

View 1 Replies View Related

CentOS 5 :: Get Kubuntu's Print Configuration Tool To See My Network CUPS Server?

Sep 27, 2009

I am demo'ing Kubuntu 9.04 workstation to a customer. He has a CentOS 5.3 server (my doing). On it is our CUPS Network file server. Everyone (65 of them) print to our network printer through it using LPR/LPD (and sometimes Samba).

Problem: when Kubuntu's Print Configuration Tool went looking for printers, it found every network printer's IP address, but missed my CUPS printer server. What did I do wrong on one or both ends (I have control over both).

View 7 Replies View Related

Debian Configuration :: Configure (start/stop/restart) Services (especially Apache2, MySQL And PHP) Using A Graphical Or Cli Tool?

Jul 23, 2010

I'm using debian 5 x64 with xfce.Is there a way to configure (start/stop/restart) services (especially Apache2, mySQL and PHP) using a graphical or cli tool? I tried to use sysv-rc, sysv-rc-conf, rcconf and rc-conf in the terminal but Bash didn't find them (Although Synaptic show that sysv-rc is installed).

View 9 Replies View Related

OpenSUSE Hardware :: Unable To Add USB Printer Via The YaST2 Printer Configuration Setup Tool In 11.3

Aug 26, 2010

I am unable to add my USB printer via the YaST2 Printer Configuration setup tool in openSUSE 11.3. The printer, a Dell Color Laser 1320c, was last used with openSUSE 11.2, and setup was entirely uneventful. No driver is provided by Dell, so I used the Fuji Xerox DocuPrint C525A Linux driver. The problem: To add a print queue in 11.3, a Connection must be specified (parallel, USB, network, etc). However, the configuration wizard fails to show the presence of the USB print device.

[Code]...

This printer was working just eight weeks ago under 11.2, and 11.3 is obviously able to detect its presence and identify it correctly. I feel certain the solution is simple, but I haven't found documentation that provides the answer.

View 7 Replies View Related

OpenSUSE Network :: Setup A LDAP Server Using The Yast-LDAP Server Configuration Tool

May 31, 2010

we have a weird problem with our opensuse 11.2 server installation.

We want to set up a LDAP Server using the Yast-LDAP Server configuriation tool.

This indeed already worked weeks ago until....this week.
Maybe some updates??!

I do not know what happend exactly. The server just does not want to start again and throws following error:

Starting ldap-serverstartproc: exit status of parent of /usr/lib/openldap/slapd: 1 failed

This happend after a little check of the configuration, but without a change, with Yast. Google delivered only "reinstall your box"-answers.

So.. i did that. And now the "mystical" part: The SAME ERROR occurs with a fresh vanilla system with a brand new and simple configuration (certificats, database, pw...the first Yast config dialog...). I did not change the way i set it up.

I remember, when i did this the first time with 11.2 on that machine, when no problems occured...everything was running out of the box (except the "use commen server certificate" option...).

View 4 Replies View Related

OpenSUSE :: Any Recommended Ark Alternative For KDE?

Feb 14, 2011

is there any recommended Ark alternative for KDE?I really don't like that program.

View 6 Replies View Related

Ubuntu :: 10.04 64 Bit - Not Recommended For Daily Use

May 26, 2010

So I'm getting a new laptop soon, and it ships with Windows 7 64-bit. So I assume I have to use 10.04 64-bit. I noticed that the download page says "not recommended for daily use". I was wondering why this is, and if there were any things I need to look out for when using Ubuntu and 64-bit. I read the older FAQ thread in the closed 64-bit forum, but I wanted to make sure I got more recent information.

View 5 Replies View Related

General :: Dont Use LVM Is Better Or LVM Not Recommended?

Feb 26, 2011

i have simple question where or when you dont recommend to use LVM? where or when we dont use LVM is better or LVM not recommended

View 9 Replies View Related

Debian :: Why Is E2fsck Recommended When It Is Not Needed

Feb 14, 2011

I have Squeeze (2.6.32-5-686) installed on sda and have an additional disk sdb.For some reason 'dmesg' gives me always this message for sda1 (after a reboot):

Feb 14 12:29:03 arkiv-x kernel: [ 448.349949] EXT3 FS on sda1, internal journal
Feb 14 12:29:03 arkiv-x kernel: [ 448.470411] loop: module loaded
Feb 14 12:29:03 arkiv-x kernel: [ 448.653327] kjournald starting. Commit interval 5 seconds

[code]....

View 2 Replies View Related

Fedora Installation :: Upgrade From F13 To F15 - Recommended?

May 24, 2011

I am running a very stable F13 on my little box and I was thinking to upgrade from F13 directly to F15 using the preupgrade-cli tool. Is this recommended, or should I go to F14 first? I would like to skip that step:

The F13 is my home server with a lot of services:
- IMAP (dovecot)
- Postfix
- Postgresql
- apache (tons of php)
- vmware workstation 7.1.4
- dhcpd
- named
- samba
- squid

I am worried that the upgrade will break something. I spent a lot of time setting these things up.

View 11 Replies View Related

Ubuntu :: Recommended Alternative For Xmarks?

Jan 30, 2010

I've been having some issues with the speed of firefox recently (on a netbook) and have been trying out other browsers such as chrome and midori. Currently I'm using xmarks, which fits my needs nicely however, I'm looking for an alternative that gives similar functionality and would allow me to access my bookmarks from several different computers (using both midori and chrome browsers).

xmarks has a development version for chrome, which is not working at the moment, and I cannot find any plans for xmarks in midori.

View 8 Replies View Related

Ubuntu :: How To Revert To Recommended Updates

Feb 15, 2010

I am running ubuntu 9.10. Is it possible to remove the pre-released updates and revert to recommended updates?

View 9 Replies View Related

Ubuntu :: Necessary To Update The Recommended Updates?

Aug 6, 2010

Is it really necessary to update the recommended updates?

View 8 Replies View Related

Ubuntu :: Can't Boot 10.10 After Recommended Updates?

Dec 25, 2010

I have Ubuntu 10.10 but I can only use Windows 7 now (I hate it). Here's why: when I go to the boot screen and I am given the choice of using Windows 7 or Ubuntu and I select Ubuntu, the screen goes black and says:

error: unknown command 'loadfont' error: file not found

Then I have to reset my laptop and use Windows 7. This happened when I was using Ubuntu like I usually did and I downloaded recommended updates from Ubuntu. I downloaded them and I was asked to reset my laptop for it to be effective. I did and when the boot screen came up it said what it says above. I can't even get to the login screen. I've been searching everywhere for an answer.

View 9 Replies View Related

Ubuntu :: Recommended Photo Slideshow App

May 25, 2011

I'm using 10.10. The FSpot and Shotwell programs that came with 10.10 don't seem to have any good controls for adjusting slide show display of photos. Could anyone recommend a good photo slide show display program that allows one to adjust pan, display time, smooth transitions, etc.

View 4 Replies View Related

Ubuntu :: Recommended Vm.swappiness Set Range?

Jun 26, 2011

Lately I have been reading up on vm.swappiness. What range would you recommend I look at, my system is:

- AMD 64 X2 6000
- 8 GB on-board memory
- plenty of HD space

Usually I have only one or two programs open at a time....

View 2 Replies View Related

Hardware :: Recommended USB Wifi Adapter?

Jan 1, 2011

I need to use a USB Wifi adapter to get online and was wondering if anyone had personel experience of one that works out of the box (Perferably on Arch Linux) or with litle configuration. Ive been to [URL] but want morer personal experience because ive gotten devices in the past that 'support linux' and dont work. Please include model numbers and links to documentation on configuration if posssible.

View 13 Replies View Related

Hardware :: Recommended Usb Bluetooth Dongles?

Jan 14, 2010

I have just bought a single board computer that has linux running on it and am trying to get bluetooth communications going between the SBC and my PC. The board can be found here [URL].. I was hoping i could buy two usb dongles, one to bluetooth enable my pc and the other to plug into the usb port on the SBC to setup 2 way comms. However I get the impression this sounds far simpler to implement than it will be in practice.

Could anyone offer some suggestions to dongles that are linux compatible and how to go about implementing them into my project?

View 4 Replies View Related







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