So how can i solve for example a problem 100 jobs and 10 machines using linear programming?
Generally, you can't. That isn't the sort of planning problem that Linear Programming (LP) is applicable to.
In an LP problem, you have a set of variables that you want to solve for. You have a set of linear inequalities that represent the constraints on those variables. And, you have a linear function of those variables (i.e., no exponents, no division, no "if-then-else", etc) that represents the cost (or benefit) of a given solution.
If you have a problem like that, you can use LP to efficiently generate an optimal solution. Shop floor scheduling, like what you are asking about, isn't that kind of problem.
LP tends to lend itself to "higher level" planning. Like, how much of each product should I make in each factory? In such a problem, you'll often be able to specify the constraints as linear inequalities and the cost (or benefit) as a linear function, as you must do in order to make use of LP. Notice, I said "how much of each product..." and not "how many...". Because that's another limitation of LP -- the variables must be able to take on real values. If you need your solution to give integer solutions, you're looking at an Integer Programming (or Mixed Integer Programming) problem.