Debian :: Linking Remote Servers ?
Apr 1, 2011
We have one office with a simple samba server running on Lenny; not a PDC, just simple username/password authentication. It also acts as a DHCP server, NTP server, and DNS server. All clients are windows machines (mainly XP Pro, but also starting to get Win7 show up). For remote access, most users have chrooted WinSCP; OpenVPN was setup, but too slow for most AutoCAD uses (our primary application). It is still used by a few people, though.
I need to set up a similar system in another location, and need to provide access to both servers. People mainly access files stored in their own office, but will occasionally need to access files in the other office. In intend on having both run the same version, whether I stick with Lenny or put both on Squeeze.
I was thinking of setting up both servers, and then mounting the remote file system (the "other" server) over the internet, possibly via sshfs, but do not know if it is reliable enough. Or perhaps via OpenVPN connecting the servers, but then the overhead of the VPN may become an issue, adding lag time. The remote shares would then be accessible via the samba config.
Are there other options that may be easier to set up, more reliable, or more secure? We do not want a domain set up, just simple workgroups. Since many are using their personal laptops, joining them to the domain can cause some problems. It would also require more effort to add a new computer, and with the constant stream of outside consultants we use, that could get cumbersome.
My main issue: no budget beyond the low cost box for the second file server, so it has to be an open source solution from start to finish.
I'm not quite a newbie - I have quite a bit of experience setting up and maintaining basic Samba / DHCP / ssh servers - but not much beyond those. I certainly am open to learning new things and doing the research, but my head is swimming with all the options I have come across.
View 1 Replies
ADVERTISEMENT
Apr 18, 2010
I have written an OpenGL based program which uses i.a. libjpeg that I want to link statically so I can send it to someone who doesn't have all the libraries needed installed to allow for a dynamically linked executable to run. As such I tried with giving the [b]-static[b] parameter to gcc.
Code:
x86_1$ make
gcc -O3 -c jpegloader.c
gcc --std=c99 -O3 -c --std=c99 -I/usr/include -L/usr/X11R6/lib main.c
[code].....
Why would gcc claim that I'm missing GLUT? This works perfectly fine when I do dynamic linking -- i.e. omitting the -static argument.
View 13 Replies
View Related
Jul 14, 2009
I have a wide area network with 7 CentOS servers running Bind and 1 Windows 2003 server. All 8 of these servers handle DHCP and DNS at their respective locations. At each site I can ping computer.site.company I'd like to be able to resolve the dns names from site to site. So from site1 I would like to be able to ping computer.site2.company and get a response.
View 4 Replies
View Related
Sep 12, 2010
I am currently finalizing a SSH Tunnel (gSTM) via Ubuntu Server (see: [URL]). The gentleman who helped me there went above and beyond the call of duty as we used to say in the military. Accordingly, I wanted to start a new thread to explore options to the pending completion. So, several systems in play here. I will list two of the three with the presumption that the SSH situation is in play (testing it today from outside of my network).
Systems Currently in Play: Ubuntu 10.04 Desktop Edition with all updates as of today's post: Server: Acer Aspire AST180-400A. It is currently being accessed from Ubuntu 10.04 Desktop Edition with all updates as of today's post from a laptop: Toshiba Satellite A200. Router: Netgear N300 WNR 2000v2. Modem is Motorola Netopia 2210-02-1006. Proposed System To Add: eMachine ET1331G-05w running Windows 7. Why? Well, my girlfriend is terrified to ditch the Bill Hates way of things. It is running through the router currently as well.
What I would like to be able to do is access the Windows 7 desktop via my laptop on the road as well. Specifically, I need to be able to access and view documents and photos. Now, the docs are at least in OpenOffice; she switched to it finally. I would like to also be able to view my desktop to access docs and pictures on the server, but that may be a new thread as the Win7 situation is the priority right now.
View 3 Replies
View Related
Mar 28, 2011
A church I've been working with has a CCTV system that has a web interface for viewing the camera feeds. We need to see the page from the outside, but it is just an HTTP page, no encryption. The box itself does not accept any sort of SSL encryption. How I can get this on the net in a secure way? At worst I could set up a remote desktop type solution, but I was really hopping I could use some apache magic and just re transmit the page to https and ssl encrypted.
View 2 Replies
View Related
Oct 25, 2010
I want to prevent grub-pc from automatically creating links to other operating systems on my laptop. Whenever there is a kernel update, grub.cfg ends with links pointing at my Windows 7 installation - I want to get rid of those links. At the moment I am doing that by manually editing the grub.cfg file and it has always worked that way. I tried to force grub-pc to avoid creating links to Windows by renaming the relevant scripts in /etc/grub.d edbarx@edbarx-pc2:/etc/grub.d$ ls 00_header 05_debian_theme 10_linux 20_linux_xen _30_os-prober _30_otheros 40_custom 41_custom README As you can see I added an underscore to the files that I don't want to be executed.
I think this can be solved by changing the file permissions of the unwanted scripts making them impossible to execute.
edbarx@edbarx-pc2:/etc/grub.d$ ls -l
total 52
-rwxr-xr-x 1 root root 6433 Aug 7 18:10 00_header
-rwxr-xr-x 1 root root 1474 Jul 16 18:46 05_debian_theme
-rwxr-xr-x 1 root root 4252 Aug 7 18:10 10_linux
[Code]....
View 11 Replies
View Related
Jan 23, 2011
I'm trying to build a shared library, and am receiving several undefined reference linking errors. Specifically, ffmpeg linked with libx264. I'm aware that this is not an appropriate forum for questions specific to ffmpeg or libx264. In order for one library / application (ffmpeg) to reference another library (libx264), the linker has to know where the referenced library (libx264.so) is located in the file system.
I'm pretty sure the linker knows where libx264.so is, because I receive a different error message when I run ffmpeg's configure script if the linker can't find libx264.so. In general, should running the install target of a make file be preferred over specifying the appropriate paths in the CFLAGS and LDFLAGS environment variables? I've tried both, and it doesn't seem to make a difference in regard to my error which method I choose.
How exactly is a library referenced? My error messages are
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d26'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d22'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d2'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d20'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d24'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `d0'
/root/ffmpeg/libavcodec/libavcodec.so: undefined reference to `q1'
If I can find out what library 'd26', 'd22', etc. are declared in, I should be able to resolve the undefined references. What exactly are 'd26', 'd22', etc.? Are these functions, classes, or something else? How can I find out what functions / classes are defined in a particular library?
View 2 Replies
View Related
May 3, 2014
I would like to send files from my verizon env3 feature phone to my computer via bluetooth, but I can't find anyplace to input a pin. Both the computer and phone offer pins but they never give me a way to input a pin. I am cautious about linking without one because I don't want my computer hacked.
View 1 Replies
View Related
May 10, 2010
i found this video, and i really want to do the same. *newbie needs to learn [URL]...my question is, what need to be installed and how?
is there any specific configuration to make it works?
and will it work if i want to connect from Ubuntu to Fedora ?
View 1 Replies
View Related
Jul 2, 2010
I have 8.04 installed on virtual on a remote machine, also I installed apache2. I would like to istatall and configure other things, but I get this:
root@mobix:~# gedit /etc/vsftpd.conf
cannot open display:
Run 'gedit --help' to see a full list of available command line options.
View 5 Replies
View Related
Oct 5, 2010
Is it possible in dd to use it for the output file to be stored at some remote location.
I do not have free space on the LVM partition whose backup I want to have via dd.
View 3 Replies
View Related
Aug 7, 2011
If I wanted to SSH into my server from a remote destination, it seems I would have to take the following steps.
1) In lieu of getting a static IP from my ISP, sign up with Dynamic DNS and use it instead.
2) My home server is not at the gateway. So I would have to forward port 22 (at the router) to my server's LAN static address.
3) Access my server via SSH remotely by going to \xxx.xxx.xxx.xxx:22 where the "x's" stand for the static IP address given to me by DynDNS.
Does this sound correct? If not, I'm not asking for hand holding, but a point towards a tutorial or how-to would be helpful.
Edit: Or... am I going to have to set up a VPN to SSH into the server?
View 6 Replies
View Related
Nov 13, 2009
My university allows me to connect remotely to my storage space. In Windows, I can use: Code: \name.of.server.ca and after I type my userID and password I can map the folder to a drive letter (say, X:) In Fedora, I can connect remotely with Connect to Server using sftp/ssh (although I've not been able to store the userID and password temporarily). What I'd like is to mount or map the remote folder in a way that would allow me to access it from applications (for example, to call a files on the server from within LaTeX ).
View 1 Replies
View Related
Nov 10, 2010
I've been working on this since last night (a few hours) but can't seem to find what I am looking for. I'll spare you the details of what I've tried already.
Could someone guide me through connecting to my Ubuntu server using a remote X session? The "kicker" is that I want to do this from a Knoppix LIVE CD. So whatever method I am given will have to be something that is common to most Linux distros.
I imagine I will need help with two important steps:
1) verifying that I have an xserver of some kind running on my server.
2) command line statement for starting the Xserver from the remote machine.
View 9 Replies
View Related
Nov 14, 2010
I did a upgrade to 10.04 on my server. Then after a reboot I was unable to remotely get into server. Upon connecting the monitor I am greeted with the purple 10.04 boot screen with this text at the bottom:
Code:
The disk drive for /dev/mapper/cryptswap1 is not ready yet or not present
Continue to wait; or Press S to skip mounting or M for manual recovery
Now I did some googling and the results I came across involved a encrypted drive which I have never even tried to setup. Now if I choose a manual recovery I am dropped to cli which from there I can start networking then ssh into the system and run updates, ping other machines, etc. But again this is meant to be a remote access server so everytime I reboot I cant just hit the M key let alone run service networking start! So I commented out the swap entry's in both my /etc/crypttab and /etc/fstab...now I cannot even get to terminal as I could before...now it just loops with no errors!
View 2 Replies
View Related
Nov 24, 2010
I'm starting several VMs on a remote headless ubuntu server via ssh using:
Code:
VBoxHeadless -s <vmname>
The VM starts up okay, and I'm left with an occupied command terminal on my local ubuntu machine. So, if I want to start up several VMs on the remote server, I have to open up several command terminals and end up with as many occupied terminals once they're all running. When the local terminal is closed, the remote VM is also shutdown.
Is there a better way to do this without the remote VM being dependent on the local terminal? I'd like to remotely startup the VMs and be able to close the local terminals without shutting down the VMs. I'm sure this must be possible, I just don't know how to do it.
View 5 Replies
View Related
Jan 11, 2011
Does anyone know the best and simplest way to do this? I'd like the share to be mounted over the tunnel on boot with as little scripting as possible and be as secure as possible without exposing more than one port to the outside. I will be trying this method: [URL]... once the tunnel is established and 'always on' NFS would take care of the file system mount obviously. Lots of the information I have been reading is not up to date it seems. Does anyone have any experience with this?
View 1 Replies
View Related
Aug 13, 2011
I've tried FXP and rsync, none worked and I can't find much info on how to get them working, just alot of google results with people in the same situation as me!
I want to transfer files from 1 remote server to another remote server... a fairly easy task in which I'm sure there's an easy solution, I just can't find it.
View 4 Replies
View Related
Jun 7, 2011
I have limited access to several servers (key based auth) but cron facility is not available for me. Those servers getting filled up by large apache logs and I have to login to each node manually and clean them each and every day.
I tried to write a script to run from login box but when i try that it looks like it is looking for logs in the local server (login box).
So current situation is:
How can i modify this so that the script in server1 will look for files in that server and zip them?
Google showed another command called rsh but in my env it is also not avil.
View 5 Replies
View Related
Apr 21, 2010
I recently configured a server that I would like to access remotely. I want to start x through ssh and then log in through vnc, but I get prompted to type in my password in gnome before I have a change to login. Which is a problem because you need to be at the box to enter the password. Is there a way to authenticate this through ssh or give vnc automatic keychain access?
View 2 Replies
View Related
Jan 5, 2010
I have a compressed backup that I want to crypt and upload to a remote server through ssh once in a while. The problem is with the size, more than 4 GB. If the connection drops how does scp know to resume? This should be an automated process.
View 8 Replies
View Related
Jan 11, 2010
FTP from and from my home computers to 2 remote servers has become really slow over the past month. One of the remote servers I manage and the other one is taken care of by a hosting company, so I am thinking the problem is residing on my end. It doesn't matter if I am downloading 1 file or 10 files, they are all coming in at 9 kb/s which is really slow cause I have a 7 megabit connection. I've tried using multiple computers and still have the same problem. I am using proftp for the ftp server and filezilla for the client.
View 4 Replies
View Related
Mar 21, 2010
I am running a local webserver mainly for development. I have everything set up. The issue I currently have is that I cannot shut down the machine from the command line. I can issue the command but the machine remains on. I also cannot get to the desktop via VNC.The reason for this, is that there is no monitor attached so Ubuntu says that it is trying to run in Low Graphics Mode. I found this out as I plugged the monitor in to my server.So question is, how do I get around this? How can I set up Ubuntu to get past this, or do I need to install Ubuntu Server?
View 3 Replies
View Related
Apr 9, 2010
i have installed ubuntu 9.04 and desktop xubuntu. i want access the sever from my windows xp using either rdp or vnc. i am able to use the ssh but thats only command line. i need the gui desktop. i have installed x11vnc,tightvnc etc. but whenever i try to connect from my vnc manager,its giveout error.machine actively refused it. i havent configured any port or anything like that.
View 9 Replies
View Related
May 19, 2010
I am very new to Ubuntu (any Linux) evironment. And it has been a long long time since I have dealt with seting up servers. I have done alot of searching but haven't found exactly what I THINK I am looking for.
I want to create a file server (I have created my Ubuntu server cd) and add it to my home network (all windows pcs). I need to be able to access it when away from home ( I work away from home mostly). I will be accessing this with a Windows 7 laptop.
What do I need installed on the server? Samba for the file server part. What else for the remote access? I also would rather not access the data via FTP. I would like it to come up as a drive in my Windows Explorer. If not, I remember back in college (20 years ago) when I could open a little window (XWindow maybe) on the other server.
An issue I see that might not be an issue. I have a static IP from my ISP. It comes into my home via their modem. I attach to the modem with a router. All my laptops connect to it wireless and this server will be wired. How do I hit the server and not one of the laptops with only having the one IP address? Each of these plus my external harddrive and printer have their own internal IP address' that I have assigned.
View 3 Replies
View Related
May 28, 2010
I am wondering how to setup a remote disk on my server so that I can remotely access files on my Windows laptop through the "Map Network Drive" feature.
How do I go about doing something like this?
View 2 Replies
View Related
Jun 4, 2010
I manage a few Linux servers and I need a fast way to connect to these servers instead of having to enter the root password every time.
Is there anyway to save the passwords/keys and connect to the servers by simply typing: SSH user@ip
Or even something easier without typing the server IP like I had Putty in Windows. I know I can still use Putty but I want to use a better SSH client, like GNOME Terminal.
View 5 Replies
View Related
Jun 16, 2010
I want to set up a home computer as server. I've installed Ubuntu Server Edition 10.04, and can access it through SSH. However, I would like to have a browser based interface for managing things, such as installing a phpBB forum and stuff like that. Also, I want my friends to be able to share files on my home server as well. I know I can do it by using FTP, but I would rather not have them to install a FTP program.
View 9 Replies
View Related
Aug 14, 2010
Is it possible to use ssh to launch a program and it's gui on a remote computer? I've tried connecting with ssh -X computer@ipaddress but when I launch gedit it loads on the local computer
View 9 Replies
View Related
Sep 12, 2010
I set up a print server with a USB printer attached. I can remotely bring up CUPS and print a test page, but I would like to be able to add a printer in windows like I normally would. Add printer, network work printer and so on, but I am not sure how to implement this on Ubuntu server. Do I need to use IPP or do I have to share it out using Samba? Oh, my server does not have a graphical desktop, it is strictly console based.
View 1 Replies
View Related