General :: How To ReUse Ubuntu APT

Feb 1, 2010

When we use ubuntu apt-get,the first process is downloading the required files into a temporary folder/var/cache/apt/archives.Installation will be done only after thatCan we able to migrate these files into a different system so that we can install those applications without using internet.

View 3 Replies


ADVERTISEMENT

Ubuntu :: Reuse System Install CD?

Feb 8, 2010

I know this sounds like a noob question. But can you use a linux install cd multiple times? Like could I use one CD to install Linux on multiple computers? Also, is it better to burn the image at a slow rat, or does it not matter?

View 9 Replies View Related

Slackware :: How To Reuse A Kernel

Oct 13, 2010

I've just upgraded my slackware 13.1 box to the latest stable kernel. Really impressed by the improvement on boot time and graphic card driver for my old Intel chipset. So I intend to use this newly built kernel to another computer of mine, which is running slackware 13.1 too. I want to keep this computer as clean as possible by installing no build tools, experimenting stuff, etc..., just binary packages for a neat, minimal box. So I'm thinking of copy the new kernel files (System.map, vmlinuz, config) to /boot as directed here in the slackbook.

But as I also notice that there are new files installed under /lib/modules/linux-2.6.35.7 (the new kernel), I'm afraid that I'm missing some other files of the kernel installed somewhere in the system. So are these files all the components of the new kernel, or do I need to look at some other places to grab the whole cake?

View 3 Replies View Related

Ubuntu Installation :: Backup Apt Archive For Reuse After Clean Install?

Apr 13, 2010

I do several things, involving a lot of different software (coding, image manipulation, drawing, video editing, etc).And where I live, internet is utterly slow, so instead of actually benefiting of the quick Ubuntu install, I am doomed to spend countless days re-downloading my packages each time.Before my last format, having gained a slightly greater understanding of how Linux works, I saved all the content of apt archives, so synaptic would pick the packages already downloaded from there.But it does not! It re-downloads every package.What should I do to have synaptic recognize packages that are already there?

Note: I am NOT looking to create a mirror repository, aptOnCd and whatnot. I also DO NOT want to install packages by hand, one by one or all together.All these solutions are certainly valuable (and I've tried a good bunch of them), but then I have to update manually my mirrored repository and/or install updates manually. Furthermore, it leaves me with two directories with packages, apt archive and ~/my-repository, which is just messy (in my view at least).

View 2 Replies View Related

Software :: Reuse One Ssh Connection In A Shell Script?

Mar 4, 2010

I'm writing a shell script that does multiple scp's and ssh'es to the same host. I would like to know if there is a way to write the script such that in the beginning an ssh connection is established. Then scp transfers files over the already open ssh connection. After which, terminal commands are executed on the host. A final scp transfers files again over the ssh connection. Then the ssh connection is terminated.The whole point is *not* to have:

#!/bin/sh
scp the_file host
ssh host 'execute-some-command.sh'

[code]...

View 8 Replies View Related

Ubuntu :: WUBI - Reinstalled Windows - Partition Is Intact Can Reuse It Without Loss

Jun 10, 2010

I installed ubuntu under windows. i reinstalled windows, though the linux partition is intact. howcan i reuse them without losing data ?

View 1 Replies View Related

Server :: 522 SSL Connection Failed - Session Reuse Required

Jan 21, 2009

I have a problem with vsftpd (latest version available, 2.1.0pre3) SSL. I've configured it to a nonstandard port, 65440, disabled connect_from_port_20 and run it as a normal user, from home directory. I can't use the SSL feature, every time I connect, it only reaches the login process. After logging in, I get the following error (when data transfer would start for LIST command):

522 SSL connection failed; session reuse required
My vsftpd.conf looks like this

Code:
local_enable=NO
write_enable=YES
secure_email_list_enable=YES
email_password_file=/home/stringz/vsftpd/logins

# local_umask=022
dirmessage_enable=NO
vsftpd_log_file=/dev/null
xferlog_file=/dev/null
xferlog_enable=NO

connect_from_port_20=NO
idle_session_timeout=3600
data_connection_timeout=120
run_as_launching_user=YES

anonymous_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
anon_upload_enable=YES
anon_world_readable_only=NO

async_abor_enable=YES
ascii_upload_enable=YES
ascii_download_enable=YES
ftpd_banner=Welcome!

# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
# chroot_list_enable=YES
# (default follows)
# chroot_list_file=/etc/vsftpd.chroot_list

ls_recurse_enable=NO
listen=YES
listen_address=<myipaddress>
listen_port=65440
listen_ipv6=NO

pasv_enable=YES
pasv_min_port=65441
pasv_max_port=65480
# chroot_local_user=YES

ssl_enable=YES
allow_anon_ssl=YES
force_local_data_ssl=NO
force_local_logins_ssl=YES
ssl_tlsv1=YES
ssl_sslv2=NO
ssl_sslv3=NO
rsa_cert_file=/home/stringz/vsftpd/vsftpd.pem

The client side is a Total Commander 7.02, there hasn't been any problem with its SSL yet and this only occurs when trying to connect to my vsftpd.

View 8 Replies View Related

Fedora Installation :: Reuse The /home Partition On Multi-boot Systems?

May 5, 2009

Having already borked my system once while deciding to nstall Fedora 10 under the influence of a false sense of bravado, alcohol induced, I thought I should ask for a little insight before trying things again. Once I get my system fixed and before consuming alcohol that is.Short version:I thought Id be smart and mount the /home partition I use for openSUSE as /home for Fedora, I mean that why I made /home it own partition right? Well, thatwhen the alcohol took over and I thought I be rilliant(not so much) and just use my SUSE username for Fedora too, since, you know,e already got all my files and settings stored there.

Thus my request for the answer on how to correctly use the same /home partition across multiple OS installations; with the preferred goal of retaining access to email folders, various files, games (WINE) and such no matter what distro I�m using. Would it really be as simple as just not using the same user name for more than one distro? What addtional issues does that solve/create

View 3 Replies View Related

Debian Configuration :: Saving Configuration And Packagelist For Reuse?

Nov 14, 2010

I have problems with the system harddrive. I would like to install my Debian on to a new HDD with the same configuration and packages. How do I get the configuration to the new Debian. What files/directory do I need to copy? How do install the same packages?

View 4 Replies View Related

Programming :: Reuse Socket Fails "Address Already In Use" Or "Connection Refused"?

May 14, 2010

Problem: can't restart programs which use socket to communicate.

Symptom: Restart Listener dies "Address already in use".
Restart Caller dies "connection refused"
System: Ubuntu 10 (and 9)

[code]...

View 3 Replies View Related

General :: Ubuntu: Tool For Displaying Disk Activity In General And By Process?

Oct 12, 2010

My Ubuntu system is occasionally becoming very sluggish. I'm running many things simultaneously and it's very difficult to tell which program is the culprit.

I suspect that the sluggishness is due to disk activity since the CPU usage is consistently under 50% on each of the 4 cores of the CPU, and over 30% of the 6GB of RAM are free.

Is there a tool that can show me in real time the number of disk IO operations per second and the amount of data read/written per second? Can all this info be broken down and displayed per process?

View 2 Replies View Related

General :: Ubuntu / Suse Red Hat Are Developing General Update Tool

Jan 29, 2011

PackageKit is a system designed to make installing and updating software on your computer easier. The primary design goal is to unify all the software graphical tools used in different distributions, and use some of the latest technology like PolicyKit to make the process suck less.

View 1 Replies View Related

General :: Write A Script To Send General Mail To Users At 9AM Everyday In 4?

Mar 3, 2010

I want to write a shell script, so that at 9AM every morning a general will be sent automatically to my network users E-Mail ID. My users are as follows: akhtaruzzaman@a[URL], ariful.[URL] etc.

Below is my little effort:
# !/bin/bash
userlist=`cut -f 1 -d : /etc/passwd`
mail -s "mailbackup" << END

keep mailbackup in another drive daily for security purpose

View 3 Replies View Related

General :: Samba File Permissions For Multiple Groups In The Same General Path?

Nov 4, 2009

I'm using my Linux (SLES 10) server as a File Server at this point. I need to set File Permissions to nested folders differently to different groups. For example:

homesharedengineering* should be read only for groupA
homesharedengineeringadmin should be read & write for groupB Plus read only for groupA
homesharedengineeringautocad should be read & write for groupC Plus read only for groupA

I've been using Webmin and Putty to set permissions but Putty only allows me the Default Group, it won't allow me to set several groups on the same directory. Webmin seems to allow me to add multiple groups (Webmin --> Others --> File Manager --> Info & ACL tab will provide extended abilities) but when I add multiple groups, they don't seem to take effect? I'm wondering if my setup at the 'Share' level or at the hierarchy of my folder structure (unix based) needs to be set specifically?

View 1 Replies View Related

General :: Will Having A Dual-boot Windows On My Laptop Cause It To Slow Down In General Use

Jun 18, 2011

I have Windows 7 on my Dell Xps laptop, and I want to install Ubuntu or Fedora as a dual-boot. Will that cause my system to slow down?

View 2 Replies View Related

General :: Windows - Version For General Use + Interface Development?

Jun 6, 2011

II'm a front-end web developer, I've always developed on Windows with technologies like XHTML, CSS, Javascript and Flash, I've dabbled with PHP and MySQL. I am well used to Windows workflows and tools, from Photoshop to Notepad++, Filezilla and WAMP server stacks to After Effects, and a swathe more - but always on Windows.I'm at a point where I think I need to start seriously developing on a Linux box, specifically at the moment to create web apps based on Node.js, but compiling tools and programs has become a task I'm more frequently required to do.

My question? I need to get my hands on a user-friendly install of Linux, but which one? I need common interface developer tools (lists welcome) to replace... well as many tools I have on Windows as possible.I need to be readily connected to the internet, I need OS updates to not destroy my workflow by crashing the OS, as I've seen Ubuntu do to various friends. I want efficiency, I need to be able to customise what I need to in order to perform development tasks.I guess this could be a long list, but - I don't have practical working knowledge of the Linux OS, nor how it "compares" to Windows (excuse my faux pas). I'm obviously willing to learn, but I'm far, far more keen to just... continue interface development, just on Linux instead of Windows.

View 3 Replies View Related

General :: Access To Squirrel Main Without A KDE Or General Account?

Jun 27, 2010

A friend of mine helped me set up a server which includes Squirrel Mail.It?s CentOS 5.3.I have a person who would like to access Squirrel Mail at remote sites.My questions is, I can create an account on the server which has KDE and the usual general applications and he would have the remote access Squirrel Mail but he doesn?t need nor does he want to access KDE or anything else on my server. He just want an account so he can use Squirrel Mail.

View 1 Replies View Related

General :: Limitations Of GNU General Public Licenses?

Mar 23, 2010

I have the impression that not that many people understand the scope and limitations of GNU General Public License. This is somehow my basic understanding of it. If I take a program covered under the GNU license, first of all I have the right to get the source code. Second, I can modify it at will. Third, I can redistribute it as will too but the new code will necessarily will have the same GNU license. This made me wonder how people actually can charge for software derived from Linux, for instance, Red Hat. Well, my impression is that they really make profit only out of services. In this thread [URL] I think I found a lot of confusion, even from a moderator (not intended to offend). Red Hat is based on Linux and it is necessarily covered under GNU. Somebody probably bought the program from RHE and can make it available at no cost.

Nevertheless, the moderator decided to warn the user. In this article [URL] it says the following:"Our training is not designed to promote vendor lock-in. Though these courses are based on Red Hat Enterprise Linux, the source code for [RHEL] is available to the community via the GPL [GNU General Public License]," said Red Hat spokewoman Leigh Day. This thread [URL] shows yet more confused people. Is there is a glitch in this type of license that prevents programs like RHEL to be redistributed for free? Why their license page doesn't mention GNU license? Or the problem is just that people get overwhelmed by this license and are afraid to be penalized and get paralyzed? By the way, RHEL is just the example. The key question is about the license!!

View 14 Replies View Related

General :: Start A Daemon As General User?

Sep 9, 2010

I need to allow certain users (who do not have root access) to be able to stop and start specific daemons

View 2 Replies View Related

General :: General Impression Of Certain Distros?

Jul 16, 2010

What is the general opinion of the Mandriva and Debian distros? Mainly asking what kind of user you consider the distro to be for (beginners, advanced, total newb, whatever), and whether you think they offer as much to an extremely experienced user as they would to a newb.Those are my two favorite distros, and I really like Mandriva a lot. I'm trying to pick one to stick with throughout, but I'm not really sure if Mandriva is too automated and Windows-user oriented like Ubuntu (I haven't really delved into the deeper aspects of Linux so I have zero experience in this area now). This might sound a little elitist but I don't want to be using Mandriva and just be automatically dismissed as a newb on first impression just because I'm using Mandriva (although admittedly I am a bit of a newb at the moment, I don't plan on staying one).

View 4 Replies View Related

General :: Get A General Understanding Put Simply?

Apr 3, 2010

Im trying to get a general understanding put simply.

View 6 Replies View Related

General :: General Regarding Available Software?

Jan 9, 2011

Friends i am facing some issue with Linux i want to know how many kinds of file do we have in Linux and what are soft link and hard link mean and the difference. However i want to know also why do we use it in Linux

View 1 Replies View Related

General :: Set Up A VPN In Ubuntu 10.04?

Aug 24, 2010

I would like to set up my network/internet connection to connect to a VPN so added security while online. I am using Ubuntu Linux 10.04. I have tried itshidden but it will either not stay connected or fail to connect all together. How do I go about doing this in plain english?

View 2 Replies View Related

General :: Cannot Run Ubuntu 9.10 Off CD

Mar 13, 2010

When I try to run Ubuntu off a cd, all I get is page after page of errors. It is already running perfectly off my hard drive. I tried the cd, and it works on a different computer. It also showed no errors.

View 5 Replies View Related

General :: FPS Too Low - Ubuntu 10.04 ?

Nov 6, 2010

I have Ubuntu 10.10 and when I use the Compiz Benchmark it says I go between 18-20FPS at first eventually reaching 20-26FPS if I keep the computer still for a while.

Also could the low frame rate be the reason that when I run Wine on a game, MUGEN, the sound usually doesn't work? (I have to restart my comp. and make it the only thing I am running and even then it stops after a few minutes)

This is the output of glxinfo:

Code:

32 GLX Visuals:

48 GLXFBConfigs:

View 6 Replies View Related

General :: Use Web Cam In Ubuntu 1.04?

Aug 10, 2010

I'm new usung linux ubuntu an I liked I wan now how to install an use a web cam i try to use camcore but I cant

View 2 Replies View Related

General :: Get C To Run On Ubuntu?

Feb 15, 2010

i have an example c program.. which I have loaded with my text editor.. into my documents on ubuntu.. each time I try to run it, I get the message command not found.. must i make it first, or is it a path problem. ?

View 4 Replies View Related

General :: Run Grubinst.exe In 64 Bit Ubuntu?

Jan 26, 2010

grubinst.exe is a console mode program to install GRUB4DOS boot code to the MBR or partition boot sector.

I downloaded it from GRUB4DOS project page grubinst_1.0.1_bin_win.zip, and I think its for 32 bit windows.

But I can run it in 64 bit ubuntu

$ ./grubinst.exe --version
grubinst version : 1.0.1

View 3 Replies View Related

General :: Autobench In Ubuntu 8.10?

Mar 14, 2010

I'm using ubuntu 8.10. I want to do benchmarking using autobench. I could install httperf by the command sudo apt-get install httperf I thought I should be installing autobench in the same way using apt-get. But the package was not found. what should I be doing in order make this "autobench" command work for me in ubuntu?

View 2 Replies View Related

General :: Ubuntu 10.4 64 Bit OS - 8GB RAM Is Shown As 7.8GB?

Jun 19, 2010

screengrab: [URL]

Ubuntu 10.4 64 bit OS - 8GB RAM is shown as 7.8GB - why? where is the rest gone? or is it just my math?

View 1 Replies View Related







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