All of lore.kernel.org
 help / color / mirror / Atom feed
* Noob Question
@ 2012-12-21  1:07 awingnut
  2012-12-21  1:43 ` Andrew Ardill
  0 siblings, 1 reply; 15+ messages in thread
From: awingnut @ 2012-12-21  1:07 UTC (permalink / raw)
  To: git

I have not used git yet but am planning to. I am trying to get my head
around how it will work and the documentation I found so far is of
modest help. I currently have a Java application developed using Eclipse
on Windows. However, the project is located on a Linux shared drive
which is my Eclipse workspace. I do my builds using ANT on the Linux
host. My main questions center around the git repository and accessing it.

1) Should I install git on Linux or Windows or does it matter?
2) How will my build scripts access the source? Will it be the same as
now (my scripts 'cd' to the Eclipse project directory and run there) or
do I need to add a wrapper to my script to check out the entire source
for the builds?
3) How do I move my current Eclipse project into git after I create the
empty repository? I can only find info on how to import git into Eclipse
not the other way around.
4) Do I need to checkout the entire project from Eclipse to modify and
test it or only the classes I want to change? Does the plugin get the
others as needed when I run the app within Eclipse for testing?

Thanks for any help understanding how I need to configure all this.

^ permalink raw reply	[flat|nested] 15+ messages in thread
* noob question
@ 2014-01-06 22:11 Fitzgerald, Dan
  2014-01-06 22:43 ` Chris Murphy
  2014-01-07  1:58 ` Stan Hoeppner
  0 siblings, 2 replies; 15+ messages in thread
From: Fitzgerald, Dan @ 2014-01-06 22:11 UTC (permalink / raw)
  To: xfs@oss.sgi.com


[-- Attachment #1.1: Type: text/plain, Size: 3481 bytes --]

I had our VMWare admin extend the file system on which /space is mounted (/dev/sda8). I'm trying to expand the file system. In the short time I've been researching, it appears that I want to use xfs_growfs.

I'm both a debian and xfs noob, used to AIX. This is the first day of my second week here, and as I'm the closest thing here to a linux admin, I get the opportunity to learn. This is a box that is not yet in production, and the anticipation is that the /space directory will need to be twice its' current size once the real data starts showing up.

System specifics:

root@thisbox:/# xfs_repair -V
xfs_repair version 3.1.7

root@thisbox:/# uname -a
Linux vmdamims01apl 3.10-0.bpo.2-amd64 #1 SMP Debian 3.10.5-1~bpo70+1+ims1 (2013-08-19) x86_64 GNU/Linux

Here's what I get when I try to use xfs_growfs, both the -d and the -D option (the 25000000 size is an arbitrary number above 19323392):

root@vmdamims01apl:/# xfs_growfs -d /space
meta-data=/dev/sda8              isize=256    agcount=4, agsize=4830848 blks
         =                       sectsz=512   attr=2
data     =                       bsize=4096   blocks=19323392, imaxpct=25
         =                       sunit=0      swidth=0 blks
naming   =version 2              bsize=4096   ascii-ci=0
log      =internal               bsize=4096   blocks=9435, version=2
         =                       sectsz=512   sunit=0 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
data size 19323391 too small, old size is 19323392

root@vmdamims01apl:/# xfs_growfs -D 25000000 /space
meta-data=/dev/sda8              isize=256    agcount=4, agsize=4830848 blks
         =                       sectsz=512   attr=2
data     =                       bsize=4096   blocks=19323392, imaxpct=25
         =                       sunit=0      swidth=0 blks
naming   =version 2              bsize=4096   ascii-ci=0
log      =internal               bsize=4096   blocks=9435, version=2
         =                       sectsz=512   sunit=0 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
data size 25000000 too large, maximum is 19323391

df -k . says this:

/space# df -k .
Filesystem     1K-blocks     Used Available Use% Mounted on
/dev/sda8       77255828 15375660  61880168  20% /space

Any help in getting me on track appreciated: don't mind doing the work & the reading, quite willing to be self-sufficient, but a shove in the right direction would be a great help. One thing I'd like to do is see what space is actually available: I'm told that the presented disk was extended by 150Gb in VMWare. How can I verify that? Thanks!

Regards,

Dan




_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ This email is confidential and intended solely for the use of the individual to whom it is addressed. If you have received this email in error please contact the sender and be advised that any use, dissemination, forwarding, printing, or copying of this email is strictly prohibited. The terms for the purchase and sale of any property referenced in this email shall be solely determined by a ratified Purchase Agreement. Any information provided in this email, including but not limited to, pricing, financing, features of a property and/or community, is not to be construed as the basis of the bargain for the purchase and sale of any such property.

[-- Attachment #1.2: Type: text/html, Size: 9686 bytes --]

[-- Attachment #2: Type: text/plain, Size: 121 bytes --]

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 15+ messages in thread
* noob question
@ 2011-01-13 23:58 Harry Johnson
  2011-01-14 11:10 ` Thomas Rast
  0 siblings, 1 reply; 15+ messages in thread
From: Harry Johnson @ 2011-01-13 23:58 UTC (permalink / raw)
  To: git

I am completely new to git and have only read the tutorial as well as
some git for subversion users documentation. Our company is
considering switching from subversion to git and I have been doing
some experimenting and have run across a potential problem. Our
systems are kubuntu/linux.

I have used git-svn to create a git repo from our subversion repo. I
have done this as user foo which is just an account that is used for
doing central builds. I have then cloned this as repo as myself,
harry. My thought is that the repo owned by foo would be a central
repo that all of the developers, including myself, could clone and to
which  we could then 'git push' our changes. The nightly builds would
then simply build whatever was currently in the foo repo. This of
course completely ignores the complexity of branches at this point but
like I said, I am experimenting. I did a test of this and what I found
when checking the git log is that while the changes I made and checked
into my repo clearly showed me as the author, the same changes after
being pushed to foo's repo showed a different author.

So two things.. First should the author have been preserved? How can I
make sure that it is?

Second, and probably the better question. Am I too focused on the
subversion methodology? Is there a better way of managing a central
build scheme using git?

Thanks!
-Harry

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Re: Noob Question
@ 2003-10-31 17:03 Kevin Smith
  2003-11-01  3:26 ` Alistair Tonner
  0 siblings, 1 reply; 15+ messages in thread
From: Kevin Smith @ 2003-10-31 17:03 UTC (permalink / raw)
  To: Netfilter List

[-- Attachment #1: Type: text/plain, Size: 1619 bytes --]

Ok thanks, I think I had to but wasn't 100%. Now I can eliminate that is a
possibility (Iptables 1.2.8). 
I finished it late last night so I wasn't in the mood for Googling anything.
but tonight I shall. But I would turn away any tips. ;-)
Thanks


--__--__--

Message: 5
Subject: Re: Noob Question
From: Ray Leach <raymondl@knowledgefactory.co.za>
To: Netfilter Mailing List <netfilter@lists.netfilter.org>
Organization: Knowledge Factory
Date: Fri, 31 Oct 2003 16:25:39 +0200


--=-p9AU5830cWaY0P2ToPWv
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable

On Fri, 2003-10-31 at 16:13, Kevin Smith wrote:
> Does IPtables need to be recompiled every time you roll a new kernel?
> I just compiled 2.4.22 and when my firewall (Shorewall) started, it
> spit some "device busy" errors with ip_tables.o.=20
> Kev
No. The kernel source includes (at least as far as I recall) the
iptables kernel space drivers/programs/libraries.

The userspace tools (the iptables executables used to manage rules) are
separate, and do not get recompiled every time you recompile the kernel.

The exception would be if you have iptables v0.1.0 (for example)
userspace programs and in your kernel have iptables v1.2.8 source code,
then there would be a mismatch, and the userspace programs may be
incompatible with the kernel modules.

Best to keep them all the same.
--=20
--
Raymond Leach <raymondl@knowledgefactory.co.za>
Network Support Specialist
http://www.knowledgefactory.co.za
"lynx -source http://www.rchq.co.za/raymondl.asc | gpg --import"
Key fingerprint =3D 7209 A695 9EE0 E971 A9AD  00EE 8757 EE47 F06F FB28
--


[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 2600 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread
* Noob Question
@ 2003-10-31 14:13 Kevin Smith
  2003-10-31 14:25 ` Ray Leach
  0 siblings, 1 reply; 15+ messages in thread
From: Kevin Smith @ 2003-10-31 14:13 UTC (permalink / raw)
  To: Netfilter List

[-- Attachment #1: Type: text/plain, Size: 192 bytes --]

Does IPtables need to be recompiled every time you roll a new kernel?
I just compiled 2.4.22 and when my firewall (Shorewall) started, it spit
some "device busy" errors with ip_tables.o. 
Kev

[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 1500 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2014-01-07 15:22 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-21  1:07 Noob Question awingnut
2012-12-21  1:43 ` Andrew Ardill
2012-12-21 13:27   ` W T Riker
2012-12-21 22:38     ` Andrew Ardill
  -- strict thread matches above, loose matches on Subject: below --
2014-01-06 22:11 noob question Fitzgerald, Dan
2014-01-06 22:43 ` Chris Murphy
2014-01-07  1:58 ` Stan Hoeppner
2014-01-07 15:22   ` Fitzgerald, Dan
2011-01-13 23:58 Harry Johnson
2011-01-14 11:10 ` Thomas Rast
2011-01-14 21:32   ` Harry Johnson
2003-10-31 17:03 Noob Question Kevin Smith
2003-11-01  3:26 ` Alistair Tonner
2003-10-31 14:13 Kevin Smith
2003-10-31 14:25 ` Ray Leach

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.